[
  {
    "path": ".github/workflows/cpr-on-addition.yaml",
    "content": "name: Create a Pull Request in solana-com on PR merge\n\non:\n  push:\n    branches:\n      - master\n\njobs:\n  createPullRequest:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout ecosystem...\n        uses: actions/checkout@v2\n        with:\n          path: ecosystem\n\n      - name: Set PR variables of ecosystem\n        id: vars\n        run: |\n          cd ecosystem\n          echo ::set-output name=pr_title::\"$(git log --pretty=format:'%an' -1) wants to add: $(git log --pretty=format:'%s' -1)\"\n          echo ::set-output name=pr_body::\"This PR was auto-generated on $(date +%d-%m-%Y) \\\n            by [create-pull-request](https://github.com/peter-evans/create-pull-request).\"\n\n      - name: Checkout solana-com...\n        uses: actions/checkout@v2\n        with:\n          token: ${{ secrets.SOLANA_PAT }}\n          repository: solana-labs/solana-com\n          path: solana-com\n\n      - name: Add changes to solana-com\n        run: |\n          \\rm -f $GITHUB_WORKSPACE/solana-com/src/partners/*\n          \\rm -f $GITHUB_WORKSPACE/solana-com/static/img/*\n          cp $GITHUB_WORKSPACE/ecosystem/projects/* $GITHUB_WORKSPACE/solana-com/src/partners/\n          cp $GITHUB_WORKSPACE/ecosystem/img/* $GITHUB_WORKSPACE/solana-com/static/img/\n\n      - name: Create PR in solana-com...\n        uses: peter-evans/create-pull-request@v3\n        with:\n          token: ${{ secrets.SOLANA_PAT }}\n          base: master\n          path: solana-com\n          title: ${{ steps.vars.outputs.pr_title }}\n          body: ${{ steps.vars.outputs.pr_body }}\n"
  },
  {
    "path": ".github/workflows/file-lint.yaml",
    "content": "name: Lint PR\n\non:\n  pull_request_target:\n  push:\n    branches:\n      - master\n\njobs:\n  file-lint:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout PR\n        if: ${{ github.event.pull_request.number }}\n        uses: actions/checkout@v2\n        with:\n          fetch-depth: 0\n          ref: refs/pull/${{ github.event.pull_request.number }}/merge\n      - name: Checkout on main branch\n        if: ${{ !github.event.pull_request.number }}\n        uses: actions/checkout@v2\n        with:\n          fetch-depth: 0\n          ref: ${{ github.head_ref }}\n\n      # This will lint all files, see https://github.com/timhagn/lint-md-fm\n      - name: Lint Current PR\n        id: lint\n        uses: timhagn/lint-md-fm@v2.0.0\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          changed-files: \"\"\n          directories: |\n            projects\n            img\n          markdown-extensions: |\n            .md\n            .mdx\n          image-extensions: |\n            .png\n            .svg\n            .jpg\n            .jpeg\n\n      # Use the output from the `lint` step\n      - name: Display changed files\n        run: echo \"Changed files are ${{ steps.lint.outputs.changed }}\"\n"
  },
  {
    "path": ".github/workflows/merge.yaml",
    "content": "name: Continuous Integration\n\non:\n  pull_request:\n  push:\n    branches:\n    - master\n\njobs:\n  prettier:\n    runs-on: ubuntu-latest\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v2\n      with:\n        fetch-depth: 0\n        ref: ${{ github.head_ref }}\n\n    - name: Prettify code\n      uses: creyD/prettier_action@v3.3\n      with:\n        prettier_options: --write **/*.{md,mdx}\n        only_changed: True\n      env:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n.secrets\n\n.idea/"
  },
  {
    "path": "README.md",
    "content": "---\n# NOTE: This repository is deprecated. To submit your project info, please visit https://solana.com/ecosystem/submit-project.\n---\n\n# Solana Ecosystem\n\nThis repository is the data source for the Solana Ecosystem page,\nlocated at [solana.com/ecosystem](https://solana.com/ecosystem).\n\n# Contributing Guidelines\n\nA project is composed of two files: a Markdown file with headers, and an\nimage. To add a new project to the ecosystem page, create both a new Markdown\nfile in the `projects` directory and add a new image in the `img` directory.\n\n**!Important!**:\nShould your Project already exist within this repo, refrain from creating a new\nMarkdown file in the `projects` directory! Rather adapt your old one in a new PR.\nSame goes for changed images or Logos for your Project.\n\n### Example File\n\n```\n---\nslug: \"yourslug\"\ndate: \"2020-09-30\"\ntitle: \"Project Title\"\nlogline: \"Write a short description about your project.\"\ncta: \"https://yourwebsite.tld/call-to-action\"\nlogo: /img/yourimage.svg\ncategory: amm, app\nstatus: building\nwebsite: https://yourwebsite.tld/\ntwitter: https://twitter.com/yourproject\ntelegram: https://t.me/yourproject\ndiscord: https://discord.com/invite/12A3bcDE1f\n---\n\nThis project will look nicely on the ecosystem page and very much advance\nthe Solana Ecosystem. All while following the community rules, and the ones\nstated herein.\n```\n\nExample(!) Markdown headers are above. Below are guidelines for each field:\n\n- **(required)** `slug`: The page URL that follows after solana.com/ecosystem/\n- **(required)** `date`: The date of project addition\n- **(required)** `title`: The title of the project\n- **(required)** `logline`: The one line summary of the project and its integration to Solana\n- **(required)** `cta`: A URL to direct users to at the bottom of the page\n- **(required)** `logo`: A relative path to the corresponding image\n- **(enforced)** `category`: A comma separated list of categories describing the project from the ones below!\n- **(required)** `status`: The status of the project: `live`, `building`, or `closed`\n- **(optional)** `website`: URL to the website (optional)\n- **(required)** `twitter`: URL to Twitter page (required)\n- **(optional)** `telegram`: URL to Telegram channel (optional)\n- **(optional)** `discord`: URL to Discord invite (optional)\n\n### Categories\n\nAvailable classifications for projects are as follows:\n\n```\namm\napp\ndefi\ndex\nexchange\nexplorer\nfund\ngame\ngovernance\ninfra\ninvestmentfund\nmetaplex\nnft\noracle\nrpc\nsdk\nspl\nstablecoin\nstake-pool\ntools\nwallet\n```\n\nPlease only use existing ones and _watch out for typos_!  \nIf you think there is need for another one to be added, ask so in your PR.\n\n### Image Guidelines\n\nAll image files must be 100x100px / at an aspect ratio of ~1.  \nOnly .svg, .png, and .jpg and .jpeg files are accepted.\nPlease refrain from using SVGs with embedded PNG or JPG images!\n\n### Linting\n\n**Everything of the above gets linted against, see the created comments.**\n\n## Questions\n\nHave any questions? Email [ryan@solana.com](mailto:ryan@solana.com) or find me on [Discord](https://solana.com/discord)!\n"
  },
  {
    "path": "projects/01.md",
    "content": "---\nslug: \"01\"\ndate: \"2021-09-01\"\ntitle: \"01\"\nlogline: \"Decentralized derivatives protocol. Trade Everlasting options, Binary options, and more.\"\ncta: \"https://01protocol.com/\"\nlogo: /img/01.svg\ncategory: defi, dex, exchange\nstatus: building\nWebsite: https://01protocol.com/\nTwitter: https://twitter.com/01_protocol\nTelegram: https://t.me/onboard01\nDiscord: https://discord.gg/sCeNKSbAV8\n---\n\nDecentralized derivatives protocol. Trade Everlasting options, Binary options, and more.\n"
  },
  {
    "path": "projects/0GWeednft.md",
    "content": "---\nslug: \"0GWeednft\"\ndate: \"2021-11-22\"\ntitle: \"0GWeedNFT\"\nlogline: \"OGWeed is an NFT art leveraging SOLANA blockchain advantages for the weed-friendly community as a membership card.\"\ncta: \"https://ogweednft.com/\"\nlogo: /img/0GWeednft.png\ncategory: nft\nstatus: live\nwebsite: https://ogweednft.com/\ntwitter: https://twitter.com/OGWeedNFT\ndiscord: https://discord.gg/X2F2KEzjgy\n---\n\nOGWeed is an NFT art leveraging SOLANA blockchain advantages for the weed-friendly community as a membership card. Each NFT has a unique character, made over 100 unique traits 100% hand-drawn by our OG Artist, GZ.\nThese different characteristics have been put together algorithmically to obtain 10,420 unique pieces with a rarity that varies for each of them. Our fundamental goal is first and foremost that each NFT gives to the owner rewards and special privileges.\n"
  },
  {
    "path": "projects/0xBanana.md",
    "content": "---\nslug: \"0xBanana\"\ndate: \"2021-09-22\"\ntitle: \"0xBanana\"\nlogline: \"Private NFT art gallery by the artist called 0xBanana linked to Holaplex marketplace.\"\ncta: \"https://art.0xBanana.com/\"\nlogo: /img/0xBanana.png\ncategory: nft, metaplex\nstatus: live\nwebsite: https://art.0xBanana.com/\ntwitter: https://twitter.com/0xBanana\ndiscord: https://discord.gg/ZrNnNmytCy\n---\n\nJason Schorr, known as 0xBanana, is an algorithmic artist who explores the intersections and boundaries of technology and nature. While his professional career is in the world of cybersecurity and cloud engineering, his personal passions lean closer to firespinning, flow arts, photography, tinkering with electronics, international travel, and making art. He lives with his family in New York City.\nAlgorithmic art conceived using self-similar mathematical transforms to produce limitless shape variations, displaying a range of mathematical ideas in combination with the artist's ultimate vision.\n"
  },
  {
    "path": "projects/169pixel.md",
    "content": "---\nslug: \"169pix3l\"\ndate: \"2021-10-03\"\ntitle: \"196 Pixel\"\nlogline: \"169 Pixel Gang is an adult animated gangster sitcom 100% funded by fans.\"\ncta: \"https://169pixel.com/\"\nlogo: /img/169pixel.png\ncategory: nft, gaming\nstatus: live\nwebsite: https://169pixel.com/\ntwitter: https://twitter.com/169pixel\ndiscord: https://discord.com/invite/169pixel\n---\n\n169 Pixel Gang is an adult animated gangster sitcom 100% funded by fans.\nIt follows the small time crook Charlie, and his gang of misfts as they try and rise to the top of organised crime in the city.\nHolders of Season 1 NFTs will get daily token drops they will be able to use to buy items from the show shop like – tickets to meet the writers, live screenings, merch and more.\n"
  },
  {
    "path": "projects/169pixelgang.md",
    "content": "---\nslug: \"169pixelgang\"\ndate: \"2020-09-10\"\ntitle: \"169 Pixel Gang\"\nlogline: \"169 Pixel Gang is a streetwear in metaverse and real world\"\ncta: \"https://169pixel.com/\"\nlogo: /img/169pixelgang.svg\ncategory: nft\nstatus: live\nwebsite: https://169pixel.com/\ntwitter: https://twitter.com/169pixel\ndiscord: https://discord.gg/5gXmXPBpCv\n---\n\n169 Pixel Gang is a NFT launching 2nd October that will be launching streetwear clothing into the metaverse & real world, as well as facilitating launches for fashion brands into the metaverse.\n"
  },
  {
    "path": "projects/1sol.md",
    "content": "---\nslug: \"1sol\"\ndate: \"2021-09-21\"\ntitle: \"1Sol\"\nlogline: \"An innovative cross-chain DeFi aggregator on Solana.\"\ncta: \"https://1sol.io/\"\nlogo: /img/1sol.svg\ncategory: \"defi, dex, exchange, tools\"\nstatus: building\nwebsite: https://1sol.io/\ntwitter: https://twitter.com/1solProtocol\ntelegram: https://t.me/onesolcommunity\ndiscord: https://discord.gg/juvVBKnvkj\n---\n\n1Sol is a cross-chain DEX aggregator for decentralized protocols on Solana enabling seamless, efficient, and protected operations in DeFi. With DeFi infrastructures in rapid growth, aggregators in high demand, and cross-chain transactions being the future, 1Sol is born for Solana. 1Sol is aimed at aggregating swaps, integrating order books, and expanding to OTC markets.\n"
  },
  {
    "path": "projects/256VRJunky.md",
    "content": "---\nslug: \"256VRJunky\"\ndate: \"2021-11-06\"\ntitle: \"256 VRJunky\"\nlogline: \"256 VRJunky - a diversity of VR aficionados with the vision of connecting VR and the NFT community. A trading card for adults.\"\ncta: \"https://www.cybershoes.com/nft/\"\nlogo: /img/256VRJunky.png\ncategory: nft, game\nstatus: building\nwebsite: https://www.cybershoes.com/nft/\ntwitter: https://twitter.com/CybershoesVR\ndiscord: https://discord.gg/TWnkDnBuEz\n---\n\n256 VRJunky - a diversity of VR aficionados with the vision of connecting VR and the NFT community. Being gamers, we like to think of an NFT as a trading card for adults.\nThe first 128 NFTs to be minted on Nov6th. Other batches of 64, 32, 16, 8, 4, 2, and finally just 1 will NFT launch in the following weeks. The VRJunky-Collection is limited to 256 Non-Fungible-Tokens secured on the Solana blockchain.\nThe collection is issued by Cybershoes - world's first shoes for walking and running in VR. The Cybershoes Team (VR Shoemakers) has a background in art, media, architecture, and finance. They took the concept for a consumer hardware they envisioned from scratch to market and passed all stages. Prototype – Tradeshows – Kickstarter – Media Hype – Production – Bug Fixes – Game and Platform Integration – Influencer Marketing – Logistics – Listings on Amazons – Fulfillment through Multiple Warehouses – Customer Support. They have completed five crowdfunding campaigns totaling USD 800,000 on various platforms like Kickstarter, Indiegogo, and Conda.\nNow Cybershoes are back with VR’s first NFT project: The 256 VRJunky Collection.\n"
  },
  {
    "path": "projects/3dotsape.md",
    "content": "---\nslug: \"3dotsape\"\ndate: \"2021-11-04\"\ntitle: \"3dots Ape\"\nlogline: \"A small group of apes that will neva stop\"\ncta: \"https://twitter.com/3dots_vc\"\nlogo: /img/3dotsape.jpg\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/3dots_vc\n---\n\nA small group of apes that will neva stop\n"
  },
  {
    "path": "projects/8pay.md",
    "content": "---\nslug: \"8pay\"\ndate: \"2021-09-22\"\ntitle: \"8Pay\"\nlogline: \"8Pay is a DeFi platform for automatic trustless crypto payments.\"\ncta: \"https://8pay.network/\"\nlogo: /img/8pay.svg\ncategory: app, defi\nstatus: building\nwebsite: https://8pay.network\ntwitter: https://twitter.com/8Pay_network\ntelegram: https://t.me/official_8pay\n---\n\n8Pay is a DeFi platform for automatic, trustless crypto payments. 8Pay enables single, recurring, and on-demand payments in their app experience.\n"
  },
  {
    "path": "projects/8ternals.md",
    "content": "---\nslug: \"8ternals\"\ndate: \"2021-11-12\"\ntitle: \"8TERNALS\"\nlogline: \"Only 8888 8ternals will ever exist!\"\ncta: \"http://8ternals.art/\"\nlogo: /img/8ternals.jpg\ncategory: nft\nstatus: building\nwebsite: http://8ternals.art/\ntwitter: https://twitter.com/8ternals8\ndiscord: https://discord.gg/HykMn8ft8Y\n---\n\nOnly 8888 8ternals will ever exist!\n"
  },
  {
    "path": "projects/Abstratica.md",
    "content": "---\nslug: \"Abstratica\"\ndate: \"2021-07-01\"\ntitle: \"Abstratica\"\nlogline: \"Deep Neutral Networks generative arts.\"\ncta: \"https://abstratica.holaplex.com/#/\"\nlogo: /img/abstratica.svg\ncategory: metaplex, nft\nwebsite: https://www.abstratica.art/\ntwitter: https://twitter.com/abstraticanft\ndiscord: https://discord.com/invite/Jhc8hg7Fy3\nstatus: live\n---\n\nAbstratica is Deep Neural Networks generative art.\n"
  },
  {
    "path": "projects/Afflarium.md",
    "content": "---\nslug: \"afflarium\"\ndate: \"2021-08-31\"\ntitle: \"Afflarium\"\nlogline: \"Afflarium - is a special and realistic gaming world, combining virtual reality, cryptocurrency, NFT, digital property, the real economy, and a unique gaming experience.\"\ncta: \"https://afflarium.com/\"\nlogo: /img/Afflarium.png\ncategory: app, nft\nstatus: building\nwebsite: https://afflarium.com/\ntwitter: https://twitter.com/afflarium\ntelegram: https://t.me/afflarium_news\n---\n\nAfflarium is a massively multiplayer online metaverse, playable on VR, Desktop, and Mobile.\n\nAfflarium does not have a set story that the player must navigate through from start to finish. The\nplayer is the director of their own adventure navigating the world of opportunities.\nIt’s a place with plenty of large worlds made to fit anyone’s taste and needs where each world is\nunique and interconnected with one another. Afflarium is built with stunning graphics, made possible\nwith state-of-the-art technology that keeps improving.\nIn Afflarium you socialize, challenge yourself against other players and conduct various economic\nactivities. Afflarium is using a real economy powered by blockchain technology that brings a unique\ngaming experience.\nYou can own, manage and earn with your digital assets. Work or provide services, Find NFT, take\nthem away from other players, use them or trade with them.\n\nIn Afflarium the transactions, as well as the owner of any digital assets, are reliably protected by\nblockchain technology.\nAssets are virtually tangible through the VR experience, each having its own use and purpose ingame. In contrast to other games, assets are much more than a simple collectibles.\nEarn from gameplay or from trading, it’s where you start investing instead of spending – and have\nfun while doing it.\n"
  },
  {
    "path": "projects/Aiko.md",
    "content": "---\nslug: \"aiko\"\ndate: \"2021-09-29\"\ntitle: \"I'M AIKO\"\nlogline: \"I'M AIKO, I'm a new concept of NFT-ART based on AI. I'm a virtual companion developed by artificial intelligence.\"\ncta: \"https://aiko.io/\"\nlogo: /img/aiko.png\ncategory: nft, metaplex\nstatus: building\nWebsite: https://aiko.io/\nTwitter: https://twitter.com/aikonft\nTelegram: https://t.me/aikontf\nDiscord: https://discord.gg/xPggehqncs\n---\n\nI'M AIKO, I'm a new concept of NFT-ART based on AI. I'm a virtual companion developed by artificial intelligence.\n"
  },
  {
    "path": "projects/Almond.md",
    "content": "---\nslug: \"almond\"\ndate: \"2021-10-24\"\ntitle: \"Almond\"\nlogline: \"Fair and Nutritious. Powering yield farming and core DeFi primitives on Solana\"\ncta: \"https://twitter.com/almond_so\"\nlogo: /img/Almond.jpg\ncategory: defi\nstatus: live\nwebsite: https://almond.so/\ntwitter: https://twitter.com/almond_so\ndiscord: https://discord.gg/Cj78CfDcSu\n---\n\nFair and Nutritious. Powering yield farming and core DeFi primitives on Solana\n"
  },
  {
    "path": "projects/Anti_Artist_Club.md",
    "content": "---\nslug: \"antiartistclub\"\ndate: \"2021-10-22\"\ntitle: \"Anti Artist Club\"\nlogline: \"2222 Randomly Generated Artists powered by Solana\"\ncta: \"https://antiartist.club\"\nlogo: /img/Anti_Artist_Club.jpg\ncategory: nft\nstatus: building\nwebsite: https://antiartist.club\ntwitter: https://twitter.com/antiartistclub\ndiscord: https://discord.gg/C7Ru7G8Tv8\n---\n\nAnti artists have been crafted with a lot of thought with smooth animations for hair as well as bling and some other attributes.\nThis isnt just another crypto pixel character clone.\n"
  },
  {
    "path": "projects/Apeshit Social.md",
    "content": "---\nslug: \"apeshitsocial\"\ndate: \"2021-06-01\"\ntitle: \"Apeshit Social\"\nlogline: \"Apeshit is a charity social club.\"\ncta: \"https://apeshit.social/\"\nlogo: /img/apeshit.png\ncategory: metaplex, nft\nwebsite: https://apeshit.social/\ntwitter: https://twitter.com/apeshitsocial\ndiscord: https://discord.com/invite/apeshit\nstatus: live\n---\n\nApeshit is a charity social club built on Solana.\n"
  },
  {
    "path": "projects/AstraPad.md",
    "content": "---\nslug: \"astrapad\"\ndate: \"2021-11-07\"\ntitle: \"AstraPad\"\nlogline: \"Solana-based launchpad platform.\"\ncta: \"https://astrapad.io/\"\nlogo: /img/AstraPad.png\ncategory: nft, dex, fund\nstatus: building\nwebsite: https://astrapad.io/\ntwitter: https://twitter.com/astrapadio\ntelegram: https://t.me/AstraPadANN\n---\n\nAstraPad is a solana-based launchpad platform with a few defining characteristics.\nWe pair a launchpad with a decentralized incubator. Purely \"allocation\" based launchpads feel unreachable to a lot of crypto investors, as to get a decent allocation of tokens from a promising IDO project may cost a literal fortune. We feel like we can make it a little more fair for everybody. We put a lot of emphasis into Community Governance, giving our investors a chance to vote on the projects and other major or minor decisions. The AstraPad incubator makes it a lot more accessible for everyone to play a part in the process and get their share of IDO tokens without active involvement or a huge sum of money. AstraPad also provides an additional stream of revenue through the staking pools, where you stake your tokens and get rewarded with more AstraPad tokens.\n"
  },
  {
    "path": "projects/BRBB.md",
    "content": "---\nslug: \"brbb\"\ndate: \"2021-10-31\"\ntitle: \"Broken Robot Burger Bar\"\nlogline: \"Welcome to The Burger Bar. 6,000 algorithmically generated NFTs coming soon to Solana.\"\ncta: \"https://www.magiceden.io/marketplace/broken_robot_burger_bar\"\nlogo: /img/BRBB.png\ncategory: nft\nstatus: live\nwebsite: https://brokenrobotburgerbar.com/\ntwitter: https://twitter.com/BrokenRobotNFT\ndiscord: https://discord.com/invite/zKfTy88rvx\n---\n\nFailed A.I. experiments dumped on Planet Earth, working at a burger bar while secretly hatching a sneaky plan.\nBroken robots will be minted from salvaging scraps of metal from The Wastelands on the Solana blockchain.\n"
  },
  {
    "path": "projects/BSN.md",
    "content": "---\nslug: \"bsn\"\ndate: \"2021-09-27\"\ntitle: \"BSN\"\nlogline: \"The Blockchain Service Network partnered with Solana to provide convenient access for developers working with BSN’s infrastructure.\"\ncta: \"https://bsnbase.io\"\nlogo: /img/BSN.png\ncategory: infra\nstatus: building\nwebsite: https://bsnbase.io\ntwitter: https://twitter.com/bsnbase\ntelegram: https://t.me/bsnsupport\n---\n\nChina’s Blockchain-based Service Network, or BSN, is a cross-cloud, cross-portal, and cross-framework global public infrastructure network.\n\nThe long term vision for the network is to deploy and operate all types of blockchain-based distributed applications, or apps. This will help to lower the current costs of building and deploying all apps, and could ultimately lead to true interoperability among all permissioned and permissionless chains.\n"
  },
  {
    "path": "projects/BST.md",
    "content": "---\nslug: \"BST\"\ndate: \"2021-08-02\"\ntitle: \"Balisari\"\nlogline: \"Balisari is the first project in Solana which aims as a reward token, our token will ditributed for our costumer who using balisari trans service\"\ncta: \"https://www.balisaritrans.site/\"\nlogo: /img/BST.svg\ncategory: app\nstatus: building\n---\n\nBalisari is a customer reward token designed to allow BST customers to conveniently pay fees for travel expenses, daily tours, and airport transportation.\n"
  },
  {
    "path": "projects/BananaSwap.md",
    "content": "---\nslug: \"bananaswap\"\ndate: \"2021-06-04\"\ntitle: \"BananaSwap\"\nlogline: \"Banana Swap is a DEX running on Solana with AMM protocol.\"\ncta: \"http://bananaswap.net\"\nlogo: /img/bananaswap.jpeg\ncategory: amm, Defi\nstatus: building\nwebsite: http://bananaswap.net\ntwitter: https://twitter.com/BananaSwap_net\ntelegram: https://t.me/bananawap_net\ndiscord: https://discord.gg/5SUWdGZffN\nMedium: https://bananaswap-net.medium.com/\n---\n\nBananaSwap is a decentralized asset trading platform that runs on solana and adopts the AMM mechanism\n"
  },
  {
    "path": "projects/Bancambios.md",
    "content": "---\nslug: \"bancambios\"\ndate: \"2021-09-28\"\ntitle: \"Bancambios DeFi\"\nlogline: \"Bancambios is a first impact-driven DeFi Ecosystem built on Solana with automated contribution to Environmental projects.\"\ncta: \"https://bancambios.exchange\"\nlogo: /img/bancambios.png\ncategory: amm, defi, dex, governance, tools, nft, wallet\nstatus: building\nwebsite: https://bancambios.exchange/\ntwitter: https://twitter.com/bancambios\ntelegram: https://t.me/BancambiosX\ndiscord: https://discord.com/invite/J5Xxg4Py8h\n---\n\nBancambios is an impact-driven DeFi Ecosystem automatically contributing to projects protecting the Biodiversity of the Planet. Our mission is that every single transaction, from payments, money transfers, trades to data transfer, can have a little share designated to clean the mess that legacy systems have polluted in the last 200 years.\nWe want Bancambios to be the Crypto DeFi Ecosystem for Capital Markets and Traditional Traders. Bancambios Economic System is built with multiple emerging technologies, bringing together our passion for people to raise the global Social Economic standard.\n"
  },
  {
    "path": "projects/BeachBoyz.md",
    "content": "---\nslug: \"beachboyz\"\ndate: \"2021-10-22\"\ntitle: \"BeachBoyz\"\nlogline: \"A lifetime membership to the BeachBoyz Club and a key to unlock the BeachBoyz world, powered by Solana Blockchain!\"\ncta: \"https://BeachBoyz.studio/\"\nlogo: /img/BeachBoyz.png\ncategory: game, nft, metaplex\nstatus: building\nwebsite: https://BeachBoyz.studio/\ntwitter: https://twitter.com/SolBeachBoyz\ndiscord: https://discord.gg/BeachBoyz\n---\n\nBeachBoyz is a life-style, a cultural movement, a close-knit community that came together for the passion of living their lives to the fullest.\nProject aims to create an open-ended, social simulation, play-to-earn game on the BeachBoyz virtual island. The main objective is to simulate real life situations and activities in a fun and enjoyable manor. BeachBoyz will also be launching as a social ecosystem, dubbed BeachBoyz club, to connect likeminded individuals who shares common interests. Along with its play-to-earn game, allowing the experience sharing and interaction while acting as a membership to its BeachBoyz Resort and their guest free of charge. The funding of such undertaking will be from its NFT launch and continued operation costs be supported by the public, partnerships, as well as NFT royalties.\n"
  },
  {
    "path": "projects/BitBaddies.md",
    "content": "---\nslug: \"bitbaddies\"\ndate: \"2021-10-16\"\ntitle: \"Bit Baddies\"\nlogline: \"The first female NFT project on #Solana 25% of mint goes to charities.\"\ncta: \"https://baddies.pages.dev/\"\nlogo: /img/bitbaddies.png\ncategory: nft\nstatus: live\nwebsite: https://baddies.pages.dev/\ntwitter: https://twitter.com/BitBaddies\ndiscord: https://discord.com/invite/bitbaddies\n---\n\nThe first female NFT project on #Solana 25% of mint goes to charities.\n"
  },
  {
    "path": "projects/BlockAsset.md",
    "content": "---\nslug: \"Block Asset\"\ndate: \"2021-07-09\"\ntitle: \"BlockAsset\"\nlogline: \"Blockasset is an NFT platform bridging the gap between athletes and fans by providing real-world experiences, perks, and unique digital collectibles.\"\ncta: \"https://blockasset.co/#/\"\nlogo: /img/blockasset.svg\ncategory: metaplex, nft, defi, tools\nstatus: live\nwebsite: https://blockasset.co/#/\ntwitter: https://twitter.com/blockassetco\ntelegram: https://t.me/blockassetofficial/\ndiscord: https://discord.com/invite/9FZ3j6ZmsG\n---\n\nBlock Asset is a verified NFT ecosystem connecting fans to athletes. We leverage strategic relationships with athletes, agencies, and clubs and connect them to fans using our proprietary NFT marketplace, blockchain NFT ticketing, and blockchain NFT gaming.\n\nBlock Asset is building upon the Metaplex protocol to bring elite athletes into the ecosystem. By working directly with sports stars around the globe, we offer unrivaled real-life experiences and rewards, which are attached to collectible pieces officially verified by the athlete themselves. We will be releasing a token in the near future which will have staking, liquidity, and incentives. Further details to come.\n"
  },
  {
    "path": "projects/Blockbeats.md",
    "content": "---\nslug: \"blockbeats\"\ndate: \"2021-09-28\"\ntitle: \"Blockbeats\"\nlogline: \"Blockbeats is a music platform on Solana using NFTs to distribute unique licensing rights with expansive web3 capabilities.\"\ncta: \"https://blockbeats.app\"\nlogo: /img/blockbeats.png\ncategory: metaplex, nft\nstatus: live\nwebsite: https://anchorprotocol.com/\ntwitter: https://twitter.com/blockbeatsnft\ntelegram: https://t.me/blockbeatsclub\ndiscord: https://discord.com/invite/blockbeats\n---\n\nBlockbeats is a web3 music platform. Our goal is to build new opportunities for artists and for users to experience enhanced utility and entertainment across the Solana and Ethereum ecosystems.\n"
  },
  {
    "path": "projects/Blocto.md",
    "content": "---\nslug: \"blocto\"\ndate: \"2019-07-01\"\ntitle: \"Blocto\"\nlogline: \"Make blockchain simple and accessible for everyone.\"\ncta: \"https://blocto.portto.io/en/\"\nlogo: /img/Blocto.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://blocto.portto.io/en/\ntwitter: https://twitter.com/bloctoapp\ntelegram: https://t.me/blocto\ndiscord: https://discord.com/invite/h34kzqf\n---\n\nBlockchain technology has disrupted various industries, including finance, medicine, education and entertainment. You can explore this new world hassle-free with the guidance and the friendly user experience provided by Blocto.\nYou can purchase and utilize thousands of different crypto assets with a unified interface, without understanding the underlying technical differences.\n"
  },
  {
    "path": "projects/BuffSamo.md",
    "content": "---\nslug: \"Buff Samo\"\ndate: \"2021-11-12\"\ntitle: \"Buff Samo\"\nlogline: \"Solana Dex Buff Samo adopted a very nice and cute Samoyed dog & We Very Support Community.\"\ncta: \"https://buffsamo.tech/\"\nlogo: /img/BuffSamo.png\ncategory: defi, tools, app, dex\nstatus: building\nwebsite: https://buffsamo.tech/\ntwitter: https://twitter.com/BuffSamo\ndiscord: \"https://discord.gg/buffsamo\"\nmedium: \"https://medium.com/@buffsamo\"\nreddit: \"https://reddit.com/user/BuffSamo\"\n---\n\nThe community and Solana are very supportive of Buff Samo on the Decentralized exchanges (DEX) Blockchain Solana, and we will develop very well for the community and team!\n\nWe created an interesting roadmap so that the community and team always support the Solana & Buff Samo project, Thanks Regard Success!\n"
  },
  {
    "path": "projects/CODI _Finance.md",
    "content": "---\nslug: \"codifinance\"\ndate: \"2021-10-22\"\ntitle: \"CODI Finance\"\nlogline: \"The protocol that enables financial ideas to become a reality.\"\ncta: \"https://codi.finance\"\nlogo: /img/CODI_Finance.jpg\ncategory: dex, nft\nstatus: building\nwebsite: https://codi.finance/\ntwitter: https://twitter.com/Codi_Finance\ntelegram: https://t.me/codi_finance_community\ndiscord: https://discord.gg/wWcySMFU\n---\n\nVision\nCompound Digital investors of all skill levels will find a wide range of products and easy-to-use desktop and mobile applications to their liking.\n\nMission\nNo gas fees, a diverse range of order types, the ability to buy and sell NFTs on the marketplace, and non-Custodial protocol, all without sacrificing anything.\n"
  },
  {
    "path": "projects/ChihuahuaSol.md",
    "content": "---\nslug: \"chihuahuasol\"\ndate: \"2021-09-29\"\ntitle: \"ChihuahuaSol\"\nlogline: \"Exclusive NFTs Built on #Solana\"\ncta: \"https://chihuahuasol.com/\"\nlogo: /img/ChihuahuaSol.svg\ncategory: nft\nstatus: live\nwebsite: https://chihuahuasol.com/\ntwitter: https://twitter.com/ChihuahuaSol\ndiscord: https://discord.gg/cQMHepBqmc\n---\n\nGet 1010 algorithmically generated, cute and collectible NFTs with proof of ownership stored on the Solana blockchain. Mint Price 1 SOL\n\n<b>NFT Marketplace</b>: https://nft.chihuahuasol.com/\n"
  },
  {
    "path": "projects/Codi.md",
    "content": "---\nslug: \"codi_finance\"\ndate: \"2020-09-02\"\ntitle: \"Codi Finance\"\nlogline: \"The IDO Protocol facilitates the realization of broad ecosytem financial ideas.\"\ncta: \"https://www.codi.finance/\"\nlogo: /img/Codilogo.png\ncategory: dex,nft\nstatus: Building\nwebsite: https://www.codi.finance/\ntwitter: https://twitter.com/codi_finance\ndiscord: https://discord.gg/cMz7SBfq\n---\n\nThe key feature is the CODI IDO Launchpad. The CODI ecosystem aspires to be far broader, with the goal of developing a peer-to-peer NFT marketplace in add to a slew of additional apps.\n"
  },
  {
    "path": "projects/CosmicBloom.md",
    "content": "---\nslug: \"cosmicbloom\"\ndate: \"2021-04-01\"\ntitle: \"Cosmic Bloom\"\nlogline: \"Cosmic Bloom is a worldwide healing community.\"\ncta: \"https://cosmicbloom.com\"\nlogo: /img/COSMIC BLOOOM.svg\ncategory: metaplex, nft\nwebsite: https://cosmicblooom.com/\ntwitter: https://twitter.com/cosmicblooom\nstatus: live\n---\n\nCosmic Bloom facilitates epic co-creations between artists of various modalities from their community worldwide to inspire humanity with their unique collaborations.\n"
  },
  {
    "path": "projects/CreepyGirls.md",
    "content": "---\nslug: \"CreepyGirls\"\ndate: \"2021-09-09\"\ntitle: \"Creepy Girl\"\nlogline: \"A limited set of 10 000 unique algorithm generated Creepy Girls artworks has over 100 hand-drawn traits which made each of NFT one-of-a-kind. Make sure to have it in your digital collection!\"\ncta: \"https://www.creepygirls.art/\"\nlogo: /img/creepygirls.svg\ncategory: nft, community\nwebsite: https://www.creepygirls.art/\ntwitter: https://twitter.com/CreepyNft\ndiscord: https://discord.gg/47xBFbxJmu\n---\n\nA limited set of 10 000 unique algorithm generated Creepy Girls artworks has over 100 hand-drawn traits which made each of NFT one-of-a-kind. Make sure to have it in your digital collection!\n"
  },
  {
    "path": "projects/CropperFinance.md",
    "content": "---\nslug: \"cropperfinance\"\ndate: \"2021-09-30\"\ntitle: \"CropperFinance\"\nlogline: \"Bringing yield farming to the next level on Solana.\"\ncta: \"https://cropper.finance\"\nlogo: /img/CropperFinance.svg\ncategory: AMM, defi, dex\nstatus: live\nwebsite: https://cropper.finance\ntwitter: https://twitter.com/CropperFinance\ntelegram: https://t.me/CropperFinance\n---\n\nCropperFinance is introducing permissionless yield farming on Solana, enabling SPL project builders to connect their liquidity to the platform, set up the total supply that will be allocated to farming, decide the weekly emission schedule, and launch their yield farming in a few clicks.\n"
  },
  {
    "path": "projects/CryptoBoars.md",
    "content": "---\nslug: \"cryptoboars\"\ndate: \"2021-09-26\"\ntitle: \"Crypto Boars\"\nlogline: \"CryptoBoars is an NFT project featuring exclusive, limited run, handmade NFT artworks available on the Solana blockchain.\"\ncta: \"https://cryptoboars.holaplex.com/\"\nlogo: /img/boars.png\ncategory: nft\nstatus: live\nwebsite: https://cryptoboars.holaplex.com/\ntwitter: https://twitter.com/CryptoBoars\ndiscord: https://discord.com/invite/p88vtFAEU9\n---\n\nCryptoBoars is an NFT project featuring exclusive, limited run, handmade NFT artworks available on the Solana blockchain.\n\nMarketplace:\nhttps://cryptoboars.holaplex.com/\nhttps://ftx.us/nfts/collection/Crypto%20Boars/\n"
  },
  {
    "path": "projects/CryptoMonks.md",
    "content": "---\nslug: \"crypto monks\"\ndate: \"2021-07-01\"\ntitle: \"crypto monks\"\nlogline: \"Zen monk NFTs on Solana.\"\ncta: \"https://cryptomonks.holaplex.com/\"\nlogo: /img/cryptomonks.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://cryptomonks.holaplex.com/\ntwitter: https://twitter.com/cryptomonx\n---\n\nCryptoMonks are building Zen monk NFTs on Solana.\n"
  },
  {
    "path": "projects/CryptoPets.md",
    "content": "---\nslug: \"cryptopets\"\ndate: \"2021-10-13\"\ntitle: \"CryptoPets\"\nlogline: \"Solana's first augmented reality NFTs & 3D metaverse-ready avatars\"\ncta: \"https://cryptopets.tech\"\nlogo: /img/cryptopets.svg\ncategory: metaplex, nft, game\nstatus: live\nwebsite: https://cryptopets.tech\ntwitter: https://twitter.com/CryptopetsAR\ndiscord: https://discord.gg/dd2BpmBsy4\n---\n\nCryptoPets are the first augmented reality NFTs on Solana, which can be used as in-game avatars for their upcoming P2E game. The team is following up with an open-source, interoperable, metaverse project that CryptoPets will be a part of.\n"
  },
  {
    "path": "projects/Cryptokickers.md",
    "content": "---\nslug: \"cryptokickers\"\ndate: \"2021-03-01\"\ntitle: \"Crypto Kickers\"\nlogline: \"Crypto Kickers are custom NFT sneakers.\"\ncta: \"https://www.cryptokickers.com\"\nlogo: /img/cryptokickers.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: www.cryptokickers.com\ntwitter: https://twitter.com/cryptokickers\ndiscord: https://discord.com/invite/vmXvKcx2QQ\n---\n\nCreate, customize, and mint your own NFT sneakers directly on the Solana blockchain.\n"
  },
  {
    "path": "projects/Cryptonauts.md",
    "content": "---\nslug: \"cryptonauts + TIEXO NFT Marketplace\"\ndate: \"2021-11-14\"\ntitle: \"Cryptonauts Academy NFTs + TIEXO NFT Marketplace\"\nlogline: \"10,000 mutant Cryptonaut NFTs launching on TIEXO SolanaNFT Marketplace\"\ncta: \"https://tiexo.com/\"\nlogo: /img/cryptonauts.jpg\ncategory: nft\nstatus: building\nwebsite: https://tiexo.com/\ntwitter: https://twitter.com/tiexohq\ntelegram: https://t.me/tiexohq\ndiscord: https://discord.gg/gzymHtPkv6\n---\n\nThe mutated Cryponauts Academy cadets have traveled across the Metaverse looking for a new home after a solar flare destroyed their spacecraft. Minting soon!\n\nTIEXO is a cross chain NFT marketplace and free generative design tool that is empowering Creators to launch their first NFT collection.\n\nThe Marketplace, Artists Toolbox and TIEXO Academy form the first all-in-one platform that makes NFTs accessible to first time newcomers while also being a sophisticated blockchain tool for experienced veterans.\n"
  },
  {
    "path": "projects/DappRadar.md",
    "content": "---\nslug: \"dappradar\"\ndate: \"2021-10-27\"\ntitle: \"DappRadar\"\nlogline: \"Discover and analyse top Solana dapps ranked by various metrics. Explore NFTs, DeFi and more.\"\ncta: \"https://dappradar.com\"\nlogo: /img/dappradar.png\ncategory: explorer, nft, defi\nstatus: live\nwebsite: https://dappradar.com\ntwitter: https://twitter.com/dappradar\ntelegram: https://t.me/joinchat/GdhNjQ8PMhCZ_a0CZutmXg\ndiscord: https://discord.gg/4ybbssrHkm\n---\n\nDappRadar allows anybody to discover and analyise top Solana dapps across multiple categories. Explore dapp general rankings using metrics like number of users, total volume and transactions, view top NFT Collections and Marketplaces ranked by the number of traders, trading volume and look at the best DeFi protocols on Solana ranked by TVL (total value locked), token price and many other metrics.\n\n<b>Get a holstic view of the Solana ecosystem</b>\n"
  },
  {
    "path": "projects/Dessert Girls.md",
    "content": "---\nslug: \"dessertgirls\"\ndate: \"2021-11-06\"\ntitle: \"Dessert Girls\"\nlogline: \"2,222 beautiful Dessert Girls on Solana Blockchain.\"\ncta: \"https://www.dessertgirls.net/\"\nlogo: /img/dessertgirls.png\ncategory: metaplex, nft\nwebsite: https://www.dessertgirls.net/\ntwitter: https://twitter.com/dessertGirlsSol\ndiscord: https://discord.com/invite/QxvxbaEM\nstatus: building\n---\n\n2,222 beautiful Dessert Girls on Solana Blockchain.\n"
  },
  {
    "path": "projects/Electron.md",
    "content": "---\nslug: \"electron\"\ndate: \"2021-10-01\"\ntitle: \"Electron\"\nlogline: \"A generalized cross chain messaging protocol that connects Solana with other blockchains.\"\ncta: \"https://electronlabs.org/\"\nlogo: /img/Electron-main_resized.png\ncategory: infra, spl\nstatus: building\nwebsite: https://electronlabs.org/\ntwitter: https://twitter.com/labs_electron\ntelegram: https://t.me/joinchat/XUknutKGjyhiZTA9\ndiscord: https://discord.com/invite/WWuCPw8QEB\n---\n\nElectron is a generalized cross chain messaging protocol that enables function calls between cross-chain smart contracts. This implement use cases beyond simple token transfers.\n"
  },
  {
    "path": "projects/Evil_Kids_NFT.md",
    "content": "---\nslug: \"evilkidsnft\"\ndate: \"2021-10-22\"\ntitle: \"Evil Kids Nft\"\nlogline: \"6,668 unique hand drawn NFTs\"\ncta: \"https://www.evilkids.art\"\nlogo: /img/Evil_Kids.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.evilkids.art\ntwitter: https://twitter.com/evilkidsnft\ndiscord: https://discord.gg/r39Rg2YVbg\n---\n\nEvil Kids are 6,668 unique hand drawn NFTs generated by Algorithm. With their pop culture references and angry faces,\nthey will remind you of your childhood. Come sow terror with us on the Solana blockchain.\n"
  },
  {
    "path": "projects/FUMoney.md",
    "content": "---\nslug: \"FUMoney\"\ndate: \"2021-10-16\"\ntitle: \"FUMoney\"\nlogline: \"FUMoney is a tribute of what crypto represents.\"\ncta: \"https://www.fumoney.io/\"\nlogo: /img/FUMoney.PNG\ncategory: Nft, Metaplex, spl\nstatus: live\nwebsite: https://www.fumoney.io/\ntwitter: https://twitter.com/FUMindset\n---\n\nThis project will look nicely on the ecosystem page and very much advance\nthe Solana Ecosystem. All while following the community rules, and the ones\nstated herein.\n"
  },
  {
    "path": "projects/FlunkDonkeys.md",
    "content": "---\nslug: \"flunkdonkeys\"\ntitle: \"FlunkDonkeys\"\ndate: 2021-09-10\nlogline: \"The Donkeys of Solana.\"\ncategory: nft\ncta: https://twitter.com/FlunkDonkeys\nlogo: /img/flunkdonkeys.png\nstatus: live\nwebsite: https://www.flunkdonkeys.com/com\ntwitter: https://twitter.com/FlunkDonkeys\ndiscord: https://discord.gg/Rkk7dRZv5Y\n---\n\nFlunk Donkeys are 5,678 NFTs on the Solana blockchain. They are ready to build a FLUNK LEGACY on the Solana Blockchain and they make a lot of noise!\n"
  },
  {
    "path": "projects/Foxville_NFTs.md",
    "content": "---\nslug: \"foxvillenfts\"\ndate: \"2021-10-22\"\ntitle: \"Foxville NFTs\"\nlogline: \"First NFTs project Foxville has entered into farm games based on Solana.Play to Earn & Stake your NFTs\"\ncta: \"https://foxville.app\"\nlogo: /img/FoxvilleNFTs.jpg\ncategory: nft\nstatus: building\nwebsite: https://foxville.app\ntwitter: https://twitter.com/foxvilleapp\ntelegram: https://t.me/Foxvilleapp\ndiscord: http://www.discord.gg/j4d3E98J9m\nfacebook: https://www.facebook.com/Foxvilleapp-105878458535760\n---\n\nFirst NFTs project Foxville has entered into farm games based on Solana.Play to Earn & Stake your NFTs\n"
  },
  {
    "path": "projects/Gamerplex.md",
    "content": "---\nslug: \"gamerplex\"\ndate: \"2021-07-02\"\ntitle: \"gamer plex\"\nlogline: \"GAMERPLEX is an NFT marketplace based on the Solana network.\"\ncta: \"https://www.gamerplex.io/#/\"\nlogo: /img/gamerplex_kinland.jpg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://www.gamerplex.io/#/\ntwitter: https://twitter.com/kinland_game\ndiscord: https://discord.com/invite/metaplex\n---\n\nGAMERPLEX is an NFT marketplace based on the Solana network and is a fork of the open-source Metaplex protocol. All NFT’s in this marketplace will be playable within the game they have been minted for. You can see releases on the 'Game Series' page where we currently show our Kinland drops. Use your Solana Wallet to use Metaplex to connect.\n"
  },
  {
    "path": "projects/GenesysGo.md",
    "content": "---\nslug: \"genesysgo\"\ndate: \"2021-08-16\"\ntitle: \"GenesysGo\"\nlogline: \"GenesysGo is a Blockchain Service Provider. We provide robust and secure infrastructure to give blockchain developers and operators the performance they need.\"\ncta: \"https://genesysgo.com\"\ntwitter: \"https://twitter.com/genesysgo\"\nlogo: /img/gg.svg\ncategory: infra\nstatus: building\n---\n\nThe universe that is Blockchain is constantly moving at warp speed. As this nascent technology continues to expand and evolve, the need for a robust infrastructure becomes more and more crucial. Being a builder on the forefront of blockchain development requires strong technical skills and laser focus. As your project grows, so will the need for a strong foundation to support its weight. GenesysGo allows you to build confidently by providing a foundation that will scale in size as your project does.\n\nOur mission is to provide developers and users with an easy-to-use infrastructure platform. We build secure, stable, and high performing machines. Our mission is to be the bridge that allows people and businesses to explore the world of blockchain technology and all the benefits it provides.\n"
  },
  {
    "path": "projects/Genopets.md",
    "content": "---\nslug: \"Genopets\"\ndate: \"2021-11-09\"\ntitle: \"Genopets\"\nlogline: \"The world's first move-to-earn nft game.\"\ncta: \"https://www.genopets.me/\"\nlogo: /img/Genopets.jpg\ncategory: nft, game\nstatus: building\nwebsite: https://www.genopets.me/\ntwitter: https://twitter.com/genopets\ndiscord: https://discord.com/invite/U6fvpEj7yS\n---\n\nA Genopet is your NFT spirit animal encoded with your personality and fitness data. \nStay active with health wearables to guide the destiny of your Genopet and unlock your full potential.\nAs you evolve⁠—it evolves. Genopets is the first Move-to-Earn MMORPG that rewards you for exercising your mind and body. \nTransform your real-life movement into $KI tokens to use in battle, \ncraft valuable items, and upgrade your Genopet’s style and performance.\n"
  },
  {
    "path": "projects/GnarlyGnomies.md",
    "content": "---\nslug: \"gnarlygnomies\"\ndate: \"2021-10-03\"\ntitle: \"Gnarly Gnomies\"\nlogline: \"Gnarly Gnomies are a unique NFT project of all handcrafted Gnomes on Solana blockchain.\"\ncta: \"https://linktr.ee/gnarlygnomies\"\nlogo: /img/gnarlygnomieslogo.jpeg\ncategory: nft\nstatus: live\nwebsite: https://linktr.ee/gnarlygnomies\ntwitter: https://twitter.com/gnarlygnomies\ndiscord: https://discord.com/invite/CFgTvwDEHf\n---\n\nStarted from the Garden now we are here! Gnarly Gnomies are a fun and unique collectible avatar NFT project of all handcrafted Gnomes by a small group of artists!<br>\nDigitalEyes NFT marketplace: https://digitaleyes.market/collections/Gnarly%20Gnomies <br>\nMagicEden NFT marketplace: https://magiceden.io/marketplace?collection_symbol=gnarly_gnomies\n"
  },
  {
    "path": "projects/GokiProtocol.md",
    "content": "---\nslug: \"gokiprotocol\"\ndate: \"2021-08-28\"\ntitle: \"GokiProtocol\"\nlogline: \"Improving Solana wallet security and usability\"\ncta: \"https://twitter.com/GokiProtocol\"\nlogo: /img/GokiProtocol.png\ncategory: wallet\nstatus: building\nwebsite: https://walletkit.goki.so/\ntwitter: https://twitter.com/GokiProtocol\n---\n\nGokiProtocol Improving Solana wallet security and usability\n"
  },
  {
    "path": "projects/GooseFX.md",
    "content": "---\nslug: \"goosefx\"\ndate: \"2021-10-20\"\ntitle: \"GooseFX\"\nlogline: \"GooseFX is a DeFi platform with crypto and NFT trading built on Solana\"\ncta: \"https://goosefx.io\"\nlogo: /img/GooseFX.jpg\ncategory: defi,nft\nstatus: building\nwebsite: https://goosefx.io\ntwitter: https://twitter.com/GooseFX1\ntelegram: https://t.me/goosefx\ndiscord: https://discord.com/invite/cDEPXpY26q\n---\n\nGooseFX is a DeFi platform with crypto and NFT trading built on Solana\n"
  },
  {
    "path": "projects/Helium.md",
    "content": "---\nslug: \"helium\"\ndate: \"2014-04-01\"\ntitle: \"Helium\"\nlogline: \"Today, the Helium blockchain, and its tens of thousands of Hotspots, provide access to the largest LoRaWAN Network in the world. Helium released NFTs on one of the first Metaplex storefronts in early June.\"\ncta: \"https://www.helium.com/\"\nlogo: /img/helium.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://metaplex.helium.com/\ntwitter: https://twitter.com/helium\ntelegram: https://t.me/helium_network\ndiscord: https://discord.com/invite/helium\n---\n\nHelium released Zodiac NFTs on Metaplex in early June of 2021.\n\nHelium is a global, distributed network of Hotspots that create public, long-range wireless coverage for LoRaWAN-enabled IoT devices. Hotspots produce and are compensated in HNT, the native cryptocurrency of the Helium blockchain. The Helium blockchain is a new, open source, public blockchain created entirely to incentivize the creation of physical, decentralized wireless networks.\n"
  },
  {
    "path": "projects/Intersola_io.md",
    "content": "---\nslug: \"intersola_io\"\ndate: \"2021-04-30\"\ntitle: \"Intersola_io\"\nlogline: \"Decentralized fund raising for the Solana ecosystem\"\ncta: \"https://intersola.io\"\nlogo: /img/Intersola_io.jpg\ncategory: defi\nstatus: Live\nwebsite: https://intersola.io\ntwitter: https://twitter.com/Intersola_io\ntelegram: https://t.co/cLT01YlIid?amp=1\ndiscord: https://discord.com/invite/12A3bcDE1f\n---\n\nLaunchpad and insights platform for the Solana universe.\n"
  },
  {
    "path": "projects/Jungle Finance.md",
    "content": "---\nslug: \"junglefinance\"\ndate: \"2021-06-01\"\ntitle: \"Jungle Finance\"\nlogline: \"Jungle Finance is the liquid farming and staking solution for Solana-based assets.\"\ncta: \"https://jungledefi.io/\"\nlogo: /img/Jungle-Finance.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://jungledefi.io/\ntwitter: https://twitter.com/jungledefi\ndiscord: https://discord.com/invite/gvtnbk6mfg\n---\n\nThe liquid farming and staking solution for Solana-based assets. We’ll auto-compound your yield and send you a token representing your farm rewards as well as a token representing your locked assets, both of which can be redeemed at any time. Buy, sell, lend or borrow them independently!\n"
  },
  {
    "path": "projects/KaijuCards.md",
    "content": "---\nslug: \"KaijuCards\"\ndate: \"2021-11-09\"\ntitle: \"KaijuCards\"\nlogline: \"KaijuCards is an NFT RPG P2E game\"\ncta: \"https://kaijucards.io/\"\nlogo: /img/KAIJUcards.jpg\ncategory: nft, game\nstatus: building\nwebsite: https://kaijucards.io/\ntwitter: https://twitter.com/KaijuCards\ndiscord: https://discord.com/invite/CUJfDarkEh\n---\n\nKaiju Cards’ first phase will be a collectible-backed, browser-based RPG built on Solana. \nThink Neopets meets DeFi. Starting soon after the initial sale, we’ll be rolling out a character and item store,\na trading marketplace, several dungeons complete with loot progressions, and collection contests.\nOver time, more and more complex features will be added, giving the player more ways to engage and progress. \nNon-linear strategies will thrive, and players will have to figure out what works best for them. Min/maxers rejoice.\n"
  },
  {
    "path": "projects/Krajka.md",
    "content": "---\nslug: \"krajka\"\ndate: \"2021-04-01\"\ntitle: \"Krajka\"\nlogline: \"New tech enthusiast, AR and Content Creator.\"\ncta: \"https://krajka.holaplex.com/#\"\nlogo: /img/ARThings.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://krajka.holaplex.com/#\ntwitter: https://twitter.com/zibi67868634\n---\n\nKrajka is a technological enthisiast, artist, and content Creator.\n"
  },
  {
    "path": "projects/Kugle.md",
    "content": "---\nslug: \"kugle\"\ndate: \"2021-06-01\"\ntitle: \"Kugle\"\nlogline: \"Cutest 3D game based on Solana chain.\"\ncta: \"https://kugle.org/\"\nlogo: /img/Kugle.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://kugle.org/\ntwitter: https://twitter.com/kugle_\ndiscord: https://discord.com/invite/uymt9z6rzy\n---\n\nCutest 3D game based on Solana chain. Take part in the decarbonization of the Solana network. Participate in the decarbonization of the Solana blockchain : We will use part of the earnings to plant trees.\n"
  },
  {
    "path": "projects/Lobster Shack.md",
    "content": "---\nslug: \"lobstershack\"\ndate: \"2021-03-01\"\ntitle: \"Lobster Shack\"\nlogline: \"The Crypto Langoustine.\"\ncta: \"https://lobstershack.holaplex.com/#/\"\nlogo: /img/Lobster shack.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://lobstershack.holaplex.com/#/\ntwitter: https://twitter.com/nephr0ps\n---\n\nLobster shack is a crypto langoustine and NFT artist.\n"
  },
  {
    "path": "projects/MEMO.md",
    "content": "---\r\nslug: \"MEMO\"\r\ndate: \"2021-11-10\"\r\ntitle: \"MEMO\"\r\nlogline: \"MEMO and Solana collaborated to create a decentralized cloud storage solution that is secure, reliable, and efficient, utilizing global edge storage nodes to establish a storage sharing ecosystem.\"\r\ncta: \"https://memolabs.org/\"\r\nlogo: /img/MEMO.svg\r\ncategory: Infra\r\nstatus: building\r\nwebsite: https://memolabs.org/\r\ntwitter: https://twitter.com/Memo_Labs\r\ntelegram: http://t.me/memolabsio\r\ndiscord: http://discord.gg/YG4Ydv2E7X\r\n---\r\n\r\nMEMO is a next-generation large-scale decentralized cloud storage system based on blockchain. It uses global edge storage nodes to provide users with safe, efficient and large-scale storage services.\r\n\r\nMEMO is committed to solve the impractical problems of decentralized cloud storage system. Through using innovative data verification mechanisms and a number of unique and patent-protected data repair technologies, it greatly optimizes the current distributed storage system, i.e., makes data storage much safer, more reliable and available.\r\n\r\nSOLAMEMO Bridge is a connection between Solana and Memoriae maintained by a group of transmitters. The bridge provides interfaces for the users in Solana blockchain to store their data in Memo, or retrieve their data from Memo easily and safely, without running Solana and Memo simultaneously and exchanging their tokens.\r\n"
  },
  {
    "path": "projects/MangoHeroes.md",
    "content": "---\nslug: \"mangoheroes\"\ndate: \"2021-11-03\"\ntitle: \"Mango Heroes\"\nlogline: \"Mango Heroes is an NFT project built on the Solana blockchain that aims to bridge the gap between crypto traders and NFT communities.\"\ncta: https://mangoheroes.com/\nlogo: /img/mangoheroes.png\ncategory: NFT\nwebsite: https://mangoheroes.com/\ntwitter: https://twitter.com/MangoHeroes\ndiscord: https://discord.gg/g4Xcq3zc\nstatus: live\n---\n\nMango Heroes is an NFT project built on the Solana blockchain that aims to bridge the gap between crypto traders and NFT communities. We strive to foster a greater sense of community for investors, enthusiasts, and traders alike in order to increase the user base and success of the Mango Markets protocol.\n\nWith the help of the Mango Markets team, our project will become the new NFT avatars for the protocol as we continue to build applications and tools on top of the existing frameworks created by the Mango Markets protocol.\n"
  },
  {
    "path": "projects/MatrixETF.md",
    "content": "---\nslug: \"matrixetf\"\ndate: \"2021-10-03\"\ntitle: \"MatrixETF\"\nlogline: \"The next generation of ETF including SOL. Cross-chain enabled. Sponsored by Solana.\"\ncta: \"https://www.matrixetf.finance/\"\nlogo: /img/Matrix.svg\ncategory: defi\nstatus: live\nwebsite: https://www.matrixetf.finance/\ntwitter: https://twitter.com/MatrixETF\ntelegram: https://t.me/MatrixETF\n---\n\nMatrixETF is the next generation of decentralized ETF platform supporting cross chain.\nIts aim is to establish a decentralized, automated, personalized and diversified ETF portfolio to lower the bar of the cryptocurrency market for ordinary investors, and help them obtain diversified strategic returns through more convenient operation process and more efficient portfolio allocation, so as to achieve long-term and stable wealth growth.\n"
  },
  {
    "path": "projects/Meowplex.md",
    "content": "---\nslug: \"meowplex\"\ndate: \"2021-05-01\"\ntitle: \"Meowplex\"\nlogline: \"NFT Coin for the Coolest Cat online community. Built on Solana.\"\ncta: \"https://meowplex.holaplex.com/#/\"\nlogo: /img/Meowplex.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://meowplex.holaplex.com/#/\ntwitter: https://twitter.com/solcat777\ndiscord: https://discord.com/invite/qax5xrbysj\n---\n\nMeowplex is an NFT coin for the Coolest Cat online community. Built on Solana's fast, eco-friendly blockchain.\n"
  },
  {
    "path": "projects/NFTBookWorm.md",
    "content": "---\r\nslug: \"nftbookworm\"\r\ndate: \"2021-10-10\"\r\ntitle: \"BookWorm\"\r\nlogline: \"The first NFT book marketplace on the Solana network.  Authors, come and publish your book as an NFT.\"\r\ncta: \"https://nftbookworm.com\"\r\nlogo: /img/NFTBookWorm.png\r\ncategory: app, nft\r\nstatus: building\r\nwebsite: https://nftbookworm.com\r\ntwitter: https://twitter.com/nftbookworm\r\n---\r\n\r\nNFT BookWorm is the first NFT marketplace dedicated to Books and publishing in general in the Solana network."
  },
  {
    "path": "projects/Neodyme.md",
    "content": "---\nslug: \"neodyme\"\ndate: \"2021-10-03\"\ntitle: \"Neodyme\"\nlogline: \"Neodyme is a small team of security researchers and auditors with focus on the Solana ecosystem.\"\ncta: \"https://neodyme.io/\"\nlogo: /img/Neodyme.svg\ncategory: sdk\nstatus: live\nwebsite: https://neodyme.io/\ntwitter: https://twitter.com/neodyme\n---\n\nWe're Neodyme, a team of security researchers who have spent the past ~12 months inspecting the internals of the Solana blockchain. Over the course of our research, we discovered and reported several vulnerabilities in the Solana core code, ultimately helping to secure the chain against attackers.\n\nA few months ago, we were sponsored by the Solana Foundation to also set up a peer review system for smart contracts that are important for the Solana ecosystem. Since then, we've been working with developers from a range of projects building on Solana to assist them in securing their contracts. We've audited dozens of contracts, using our unique experience with Solana to uncover many exploitable bugs. During these audits, we've discovered intricate vulnerabilities in some of the major projects on the chain, and our reviews helped prevent the potential theft of roughly USD 1 billion worth of assets.\n\nHowever, as Solana is such a rapidly growing ecosystem, we have nowhere near enough capacity to manually audit every new contract to our standards. Instead, we'll be sharing some of the knowledge we've built over the course of our many audits in this blog, in hopes that developers and other auditors will be able to make use of it.\n"
  },
  {
    "path": "projects/NeopetsMeta.md",
    "content": "---\nslug: \"neopetsmeta\"\ndate: \"2021-10-15\"\ntitle: \"NeopetsMeta\"\nlogline: \"The Neopets exist as SPL tokens based on the Metaplex NFT standard.\"\ncta: \"https://www.neopetsmetacollection.com\"\nlogo: /img/neopetsmeta.png\ncategory: nft\nstatus: building\nwebsite: https://www.neopetsmetacollection.com\ntwitter: https://twitter.com/NeopetsMeta\nmedium: https://neopetsmetaverse.medium.com\ndiscord: https://discord.com/invite/neopets-metaverse\n---\n\nThe Neopets Metaverse are a collection of 20,500 uniquely generated, cute and loveable Neopets NFTs living on the Solana Blockchain.\nThe Neopets exist as SPL tokens based on the Metaplex NFT standard.\n"
  },
  {
    "path": "projects/Ono.md",
    "content": "---\nslug: \"ono\"\ndate: \"2021-06-01\"\ntitle: \"Ono\"\nlogline: \"A next generation curated NFT marketplace designed with creators in mind. Built on Metaplex & Solana.\"\ncta: \"http://www.ono.art/\"\nlogo: /img/Ono.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: http://www.ono.art/\ntwitter: https://twitter.com/onodotart\ndiscord: https://discord.gg/kMkMKp8aCs\n---\n\nOno is a next generation curated NFT marketplace designed with creators in mind. Built on Metaplex & Solana.\n"
  },
  {
    "path": "projects/PUC.md",
    "content": "---\nslug: \"PUC\"\ndate: \"2021-11-06\"\ntitle: \"Parallel Universe Collector\"\nlogline: \"We intend to create a Universe platform with an unrivaled storyline in the NFT world. Our successful goal is to build a model that realizes individual imaginations, shares them with others, and earns profits through Parallel Universe.\"\ncta: \"https://paralleluniversecollector.io/\"\nlogo: /img/PUC.png\ncategory: app, nft\nstatus: building\nwebsite: https://paralleluniversecollector.io/\ntwitter: https://twitter.com/puc_nft\ndiscord: https://discord.com/invite/EvE7c3VZrx\n---\n\nWe intend to create a Universe platform with an unrivaled storyline in the NFT world. Our successful goal is to build a model that realizes individual imaginations, shares them with others, and earns profits through Parallel Universe.\n"
  },
  {
    "path": "projects/ParasolFinance.md",
    "content": "---\nslug: \"parasol\"\ndate: \"2021-11-15\"\ntitle: \"Parasol Finance\"\nlogline: \"The First Community Governed IDO Platform.\"\ncta: \"https://parasol.finance\"\nlogo: /img/parasol-finance.png\ncategory: defi, governance, app\nwebsite: https://parasol.finance\ntwitter: https://twitter.com/parasol_finance\ntelegram: https://t.me/parasolfinance\ndiscord: https://discord.gg/JBzVvUVZPn\nstatus: building\n---\n\nParasol Finance is the first-ever community governed IDO platform built on Solana with the needs of both projects and investors alike.\n\nThe key advantage as the ownership of Parasol tokens ($PSOL) gives a right of governance and voting on projects. Our governed platform will be an integral part of bringing new and existing projects and protocols into the Parasol ecosystem with the possibility to invest early. In the process, Parasol and the $PSOL token will become a foundation for enabling further development with partners, its own platform, and the ecosystem as a whole.\n"
  },
  {
    "path": "projects/Phantasia project.md",
    "content": "---\nslug: \"phantasia\"\ndate: \"2021-10-03\"\ntitle: \"Phantasia\"\nlogline: \"Phantasia is a fantasy sports platform leveraging blockchain technology. The application allows users to play their favorite fantasy sports games while betting against their friends.\"\ncta: \"https://www.phantasia.digital/\"\nlogo: /img/phantasia.jpg\ncategory: app, tools\nstatus: building\nwebsite: https://phantasia.app/\ntwitter: https://twitter.com/PhantasiaSports\ndiscord: https://discord.com/invite/RHh5EDcxvs\n---\n\nPhantasia is a fantasy sports platform leveraging blockchain technology. The application allows users to play their favorite fantasy sports games while betting against their friends.\n"
  },
  {
    "path": "projects/Pixel Penguins.md",
    "content": "---\nslug: \"pixelpenguins\"\ndate: \"2021-08-01\"\ntitle: \"Pixel Penguins\"\nlogline: \"Pixel Penguins is the the first official penguin project On Solana.\"\ncta: \"http://pixelpenguins.holaplex.com/\"\nlogo: /img/Pixel Penguins.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: http://pixelpenguins.holaplex.com/\ntwitter: https://twitter.com/pixeipenguins\ndiscord: https://discord.com/invite/wu8aftbkug\n---\n\nPixel Penguins is the the first official penguin project On Solana.\n"
  },
  {
    "path": "projects/PixelDudes.md",
    "content": "---\nslug: \"Pixel Dudes\"\ndate: \"2021-06-10\"\ntitle: \"Pixel Dudes\"\nlogline: \"An NFT-based community on Solana.\"\ncta: \"https://squidstuff.com\"\nlogo: /img/PDLOGO.png\ncategory: nft, game\nstatus: building\nwebsite: https://squidstuff.com\ntwitter: https://twitter.com/pixeldudesnft\n---\n\nPixel Dudes is an NFT storefront and community inside the Solana ecosystem, aiming to evolve into a game.\n"
  },
  {
    "path": "projects/Quarry Protocol.md",
    "content": "---\nslug: \"quarry protocol\"\ndate: \"2021-10-15\"\ntitle: \"Quarry Protocol\"\nlogline: \"Quarry is an open protocol for launching liquidity mining programs on Solana\"\ncta: \"https://twitter.com/QuarryProtocol\"\nlogo: /img/QuarryProtocol.png\ncategory: app\nstatus: building\ntwitter: https://twitter.com/QuarryProtocol\n---\n\nQuarry is an open protocol for launching liquidity mining programs on Solana\n"
  },
  {
    "path": "projects/QuickNode.md",
    "content": "---\nslug: \"quicknode\"\ndate: \"2017-07-01\"\ntitle: \"QuickNode\"\nlogline: \"QuickNode makes it simple to power your blockchain applications and scale up as you grow.\"\ncta: \"https://www.quicknode.com/\"\nlogo: /img/QuickNode.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://www.quicknode.com/\ntwitter: https://twitter.com/QuickNode\ndiscord: https://discord.com/invite/DkdgEqE\n---\n\nBlockchain nodes for dApps and devs. Access ETH, BTC, BSC, MATIC, OPTIMISM, FTM, CELO, SOL, and xDAI data via API. Infra and tools to build + scale your #Web3 app.\nWe make it simple to power your blockchain applications and scale up as you grow. From elastic APIs and dedicated nodes, to powerful tools and analytics, a simple control panel can run all your commands.\n"
  },
  {
    "path": "projects/Random Access Memories.md",
    "content": "---\nslug: \"randomaccessmemories\"\ndate: \"2021-06-01\"\ntitle: \"Random Access Memories\"\nlogline: \"Retrofuture inspired collectibles from the block.\"\ncta: \"https://ram.so/\"\nlogo: /img/Ram.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://ram.so/\ntwitter: https://twitter.com/RAM_NFT\ndiscord: https://discord.com/invite/fZP4g4BYdD\n---\n\nRandom Access Memories is designing retrofuture inspired collectibles from the block.\n"
  },
  {
    "path": "projects/SHIBALIGHT.md",
    "content": "---\nslug: \"SHIBA LIGHT\"\ndate: \"2021-15-11\"\ntitle: \"SHIBA LIGHT\"\nlogline: \"SHIBA LIGHT is a community driven DEX powered by SHIBA. \"\ncta: \"https://shibalight.com/dex\"\nlogo: /img/SHIBALIGHT.png\ncategory: DEX\nstatus: building\nwebsite: https://shibalight.com\ntwitter: https://twitter.com/Shibalight_SOL\ndiscord: https://discord.gg/VMttp3ad\ntelegram: https://t.me/shiba_light\n---\n\nSHIBA LIGHT is aiming to be one of the biggest DEX on the Solana-Blockchain powered by SHIBA. It will have near instant transactions, almost non existing fees and an ecosystem backed by the deflationary $SHIBT Token. In the future an NFT marketplace, were you can buy, sell or mint NFT´s will be added. \n"
  },
  {
    "path": "projects/SOL Faucet.md",
    "content": "---\nslug: \"solfaucet\"\ndate: \"2021-09-17\"\ntitle: \"SOL Faucet\"\nlogline: \"SOL Faucet is the first-ever mainnet Solana faucet with daily claims and arcade-style games for receiving free SOL.\"\ncta: \"https://solfaucet.togatech.org/\"\nlogo: /img/SOL_Faucet.png\ncategory: tools, game, faucets\nstatus: live\nwebsite: https://solfaucet.togatech.org/\n---\n\nSOL Faucet is the first-ever mainnet Solana faucet with daily claims and arcade-style games for receiving free SOL.\n"
  },
  {
    "path": "projects/SOL100.MD",
    "content": "---\nslug: \"SOL100\"\ndate: \"2021-10-01\"\ntitle: \"SOL100\"\nlogline: \"SOL100 is a collectible scarcity token powered by the Solana blockchain.\"\ncta: \"https://sol100.io/how-to-buy.html\"\nlogo: /img/SOL100.png\ncategory: defi, spl\nwebsite: https://sol100.io/\ntwitter: https://twitter.com/sol100token\ntelegram: https://t.me/sol100token\nstatus: live\n---\n\nSOL100 is a collectible scarcity SPL token powered by the Solana blockchain. Only 100 were minted and then the mint was disabled. SOL100 appeals to NFT collectors who may want to own units of a limited supply token."
  },
  {
    "path": "projects/SOLDads.md",
    "content": "---\nslug: \"soldads\"\ndate: \"2021-10-17\"\ntitle: \"SOLDads\"\nlogline: \"SOL Dads is the first NFT collection of the so called SOL Family.\"\ncta: \"https://solfamily.io\"\nlogo: /img/SOLDads.png\ncategory: nft\nstatus: building\nwebsite: https://solfamily.io\ntwitter: https://twitter.com/sol_dads\ndiscord: https://discord.gg/3297e5AmPm\n---\n\nSOL Dads is the first NFT collection of the so called SOL Family.\n"
  },
  {
    "path": "projects/Samusky.md",
    "content": "---\nslug: \"Samusky\"\ndate: \"2021-11-09\"\ntitle: \"Samusky\"\nlogline: \"Solana's First Staking Available Meme Token.\"\ncta: \"https://samusky.io/\"\nlogo: /img/Samusky.png\ncategory: defi, tools, app, dex, amm\nstatus: live\nwebsite: https://samusky.io/\ntwitter: https://twitter.com/samusky.io\ntelegram: \"https://t.me/samuskyio\"\n---\n\nWe believe meme tokens are the future. Samusky will be an extensible project, not just a meme. Staking Soon!\nThe first step is staking, then an easy-to-use DEX and then AMM.\n\nWe trust the power of the Solana ecosystem and believe our community. We will start as a meme token and continue as a de-fi platform. Join Us and Stay Safe!\n"
  },
  {
    "path": "projects/SeededNetwork.md",
    "content": "---\nslug: \"seedednetwork\"\ndate: \"2021-11-10\"\ntitle: \"Seeded Network\"\nlogline: \"Seeded Network is a lending and borrowing protocol with a unique incubator product on Solana.\"\ncta: \"https://seeded.network\"\nlogo: /img/seedednetwork.svg\ncategory: defi, app\nstatus: building\nwebsite: https://seeded.network\ntwitter: https://twitter.com/seedednetwork\ndiscord: https://seeded.network/discord\nmedium: https://blog.seeded.network\n---\n\nSeeded Network, a borrowing and lending protocol with a twist on the traditional DeFi integration with a project incubator product. Seeded Network is focused on developing a network of DeFi products all serving a purpose to bring the network syncronised usage and add utility to our $SEEDED token. Seeded Networks flagship, the lending protocol, will be the first of its kind on Solana to provide LP collateral which will allow users to use LP tokens are collateral and borrow other assets while also providing utility to other parts of the Network.\n"
  },
  {
    "path": "projects/Serum.md",
    "content": "---\nslug: \"serum\"\ndate: \"2021-10-03\"\ntitle: \"Serum\"\nlogline: \"Serum is a high-speed, orderbook based, non-custodial DEX that’s built on Solana.\"\ncta: \"https://projectserum.com/\"\nlogo: /img/serum.svg\ncategory: DeFi, DEX, SPL\nstatus: live\nwebsite: https://projectserum.com/\ntwitter: https://twitter.com/ProjectSerum\ntelegram: https://t.me/ProjectSerum\ndiscord: https://discord.com/invite/zxPsXcB\n---\n\nFTX, Alameda Research, and a consortium of other partners created the Serum Foundation and announced Serum, a new high-speed, non-custodial DEX that’s built on Solana. Serum is a complete, non-custodial decentralized exchange running on an on-chain central limit order book (CLOB) on Solana’s mainnet. Yep, you read that right.\nMore specifically, Serum is the only high-performant DEX designed around a fully on-chain central limit order book and matching engine. Ecosystem partners can compose with Serum’s on-chain orderbook to share liquidity and power their trading features for institutional and retail users.\nSerum aims to resolve the traditional problems of DeFi: high gas costs, slow transactions, centralization, low capital efficiency, and liquidity segmentation. Serum is permissionless and seeks to decentralize the entire DeFi stack. Nothing will be left centralized.\nYou can learn more about Serum on their website.\n"
  },
  {
    "path": "projects/Settlers.md",
    "content": "---\nslug: \"settlers\"\ndate: \"2021-10-24\"\ntitle: \"Settlers of the Metaverse\"\nlogline: \"P2E mini-game on solana\"\ncta: \"https://www.solsettlers.com\"\nlogo: /img/Settlers.png\ncategory: nft\nstatus: building\nwebsite: https://www.solsettlers.com\ntwitter: https://twitter.com/JikanStudios\ndiscord: https://discord.com/invite/BTZzAhR9MD\n---\n\nP2E mini-game on solana\n"
  },
  {
    "path": "projects/SodaProtocol.md",
    "content": "---\nslug: \"sodaprotocol\"\ndate: \"2021-06-18\"\ntitle: \"SodaProtocol\"\nlogline: \"Soda is a native decentralized lending-borrowing protocol on Solana. \"\ncta: \"https://twitter.com/SodaProtocol\"\nlogo: /img/SodaProtocol.jpg\ncategory: Defi\nstatus: building\nwebsite: https://alpha.sodaprotocol.com/\ntwitter: https://twitter.com/SodaProtocol\ndiscord: https://discord.com/invite/4r7uyyTR3V\n---\n\nSoda aims to provide a lending-borrowing market for all the valuable popular assets and emerging assets.\nSoda also established an on-chain credit rating system based on address historical behaviors.\nWith these fantastic features, Soda will be the easiest to use and most secure DeFi platform.\n"
  },
  {
    "path": "projects/SolBunny.md",
    "content": "---\nslug: SolBunny\ndate: 2021-11-21\ntitle: SolBunny\nlogline: SolBunny combine its engaging community with strong fundamentals in DeFi\ncta: http://solbunny.io\nlogo: /img/SolBunny.svg\ncategory: amm, app, defi, dex, exchange, governance, game, fund\nstatus: live\nwebsite: http://solbunny.io\ntwitter: https://twitter.com/SolanaBunny\ntelegram: https://t.me/joinchat/PvezmzKCNRowN2Fk\ndiscord: https://discord.gg/6nQHqF8s\n---\n\nThis project will look nicely on the ecosystem page and very much advance\nthe Solana Ecosystem. All while following the community rules, and the ones\nstated herein.\n"
  },
  {
    "path": "projects/SolCatPunks.md",
    "content": "---\nslug: SolCatPunks\ndate: \"2021-09-24\"\ntitle: SolCatPunks\nlogline: \"Handmade punk cat NFTs built on #Solana.\"\ncta: \"https://www.solcatpunks.com/\"\nlogo: /img/solcateco.png\ncategory: nft\nstatus: building\nwebsite: https://www.solcatpunks.com/\ntwitter: https://twitter.com/Catpunkssol\ntelegram: https://t.me/SolCatPunks\ndiscord: https://discord.gg/yR2kYRuYJx\n---\n\nHandmade punk cat NFTs built on #Solana.\n\n<b>Website</b>: https://www.solcatpunks.com/ </br>\n<b>Twitter</b>: https://twitter.com/Catpunkssol </br>\n<b>Telegram</b>: https://t.me/SolCatPunks </br>\n<b>Discord</b>: https://discord.gg/yR2kYRuYJx </br>\n"
  },
  {
    "path": "projects/SolDate.md",
    "content": "---\nslug: \"soldate\"\ndate: \"2021-10-03\"\ntitle: \"SolDate\"\nlogline: \"Make love happen on blockchain. Receive rewards on finding a match\"\ncta: \"https://www.soldate.org\"\nlogo: /img/soldate.svg\ncategory: app\nstatus: building\nwebsite: https://www.soldate.org\ntwitter: https://twitter.com/SolDate_org\ntelegram: https://t.me/soldate_org\n---\n\nSolDate is your next-gen decentralized dating platform built on the ultra-powerful Solana blockchain. The core idea behind SolDate is to disrupt the multi-billion dollar online dating market by creating a truly decentralized dating platform that offers an unmatched dating experience and provides more control to users. Unlike conventional dating apps, the SolDate platform is built on a community-driven business model where matchmaking and users come first. Leveraging the blockchain technology, with the SolDate platform, we are taking quantum leaps in terms of transparency, matchmaking accuracy, and data protection. In addition, we are creating a greener scalable platform that makes love happen in every way possible.\n"
  },
  {
    "path": "projects/SolGangsta.md",
    "content": "---\nslug: \"solgangsta\"\ndate: \"2021-27-01\"\ntitle: \"SolGangsta\"\nlogline: \"An NFT art for Gangsta built on Solana platform.\"\ncta: \"https://solgangsta.holaplex.com/#/\"\nlogo: /img/solgangsta.jpg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://solgangsta.holaplex.com/#/\ntwitter: https://twitter.com/solanagangnft\ndiscord: https://discord.com/invite/jghtxruahq\n---\n\nSolGangsta is an NFT art for Gangsta built on Solana platform.\n"
  },
  {
    "path": "projects/SolPunkLed.md",
    "content": "---\nslug: \"SolPunkLed\"\ndate: \"2021-10-05\"\ntitle: \"Solana Punk Led\"\nlogline: \"Punk Led Light version on Solana, each punk will be presented in a very fanciful night. There are 10,000 exclusive punks.\"\ncta: \"https://www.nftmagic.me/\"\nlogo: /img/SolPunkLed.png\ncategory: metaplex, nft\nstatus: live\nWebsite: https://www.nftmagic.me/solpunkled\nTwitter: https://twitter.com/NFTMagicMe\nTelegram: https://t.me/nftmagicme\nDiscord: https://discord.gg/nzrdkzEwSv\n---\n\nWith the Solana Punk Led Light version, each punk will be shown on the extremely fanciful night. The border color is taken according to the color logo SOLANA. Punk Led Light is randomly generated from 0 – 9999 punks on Solana (SOL).\n"
  },
  {
    "path": "projects/SolShiba.md",
    "content": "---\nslug: \"solshiba\"\ndate: \"2021-10-17\"\ntitle: \"SolShiba\"\nlogline: \"SolShiba Is a team of passionate about NFTs and the Solana ecosystem\"\ncta: \"https://solshiba.io\"\nlogo: /img/SolShiba.jpg\ncategory: nft\nstatus: building\nwebsite: https://solshiba.io\ntwitter: https://twitter.com/SolShibaNFTs\ndiscord: https://discord.com/invite/Dk7mr7g2bJ\n---\n\n5000 crazy & psycho Shiba wandering on the Solana blockchain waiting for you! 90+ hands drawn traits to generate unique and rare models.\n"
  },
  {
    "path": "projects/SolSisters.md",
    "content": "---\nslug: \"solsisters\"\ndate: \"2021-10-17\"\ntitle: \"SolSisters\"\nlogline: \"A unique, allegorical collection of artwork coming to the solana blockchain, representing a new era of sustainability in NFTs\"\ncta: \"https://www.solsisters.xyz\"\nlogo: /img/solsister.png\ncategory: nft\nstatus: live\nwebsite: https://www.solsisters.xyz\ntwitter: https://twitter.com/RealSolSisters\ndiscord: http://discord.gg/solsisters\n---\n\nrepresenting a new era of sustainability within the NFT world; SolSisters are mythical characters of the future,\nreturning to Earth in hopes to save Mother Nature and all her creations.\n"
  },
  {
    "path": "projects/SolSlimes.md",
    "content": "---\nslug: \"solslimes\"\ndate: \"2021-10-02\"\ntitle: \"SolSlimes\"\nlogline: \"SolSlimes is a WIP play-to-earn RPG powered by Solana.\"\ncta: \"https://solslimes.so/\"\nlogo: /img/SolSlimes.png\ncategory: game, nft, metaplex\nstatus: building\nwebsite: https://solslimes.so/\ntwitter: https://twitter.com/SolSlimesNFT\ndiscord: https://discord.gg/solslimes\n---\n\nSolSlimes is a WIP play-to-earn RPG powered by Solana.\n"
  },
  {
    "path": "projects/SolaLambo.md",
    "content": "---\nslug: \"solalambo\"\ndate: \"2021-10-17\"\ntitle: \"SolaLambo\"\nlogline: \"SOB is a decentralized community driven token whose focus is to support Solana Ecosystem and connect all Solana SPL token\"\ncta: \"https://sob.finance\"\nlogo: /img/Solambo.jpg\ncategory: app,dex\nstatus: building\nwebsite: https://sob.finance\ntwitter: https://twitter.com/SolaLambo\ndiscord: https://discord.gg/sy2xymyc7J\n---\n\nSOB is a decentralized community driven token whose focus is to support Solana Ecosystem and connect all Solana SPL token\n"
  },
  {
    "path": "projects/SolaVerse.md",
    "content": "---\nslug: \"solaverse\"\ndate: \"2021-08-01\"\ntitle: \"Solaverse\"\nlogline: \"A Solana comic universe NFT/SFT store.\"\ncta: \"https://solaverse.art/#/\"\nlogo: /img/solaverse.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://solaverse.art/#/\ntwitter: https://twitter.com/solanacomicmeta\n---\n\nSolaverse is a Solana comic universe NFT/SFT store built with Metaplex.\n"
  },
  {
    "path": "projects/SolanaEarth.md",
    "content": "---\nslug: \"solanaearth\"\ndate: \"2021-10-17\"\ntitle: \"SolanaEarth\"\nlogline: \"A project of 2222 art pieces Ai-drawn\"\ncta: \"https://www.solanaearth.org\"\nlogo: /img/SolanaEarth.png\ncategory: nft\nstatus: Live\nwebsite: https://www.solanaearth.org\ntwitter: https://twitter.com/SolanaEarth\ndiscord: https://discord.com/invite/6pqyyfUQ\n---\n\nSola Earth is a combination of Art, Heritage, Tour and the NFT ecosystem.It's goal is to enhance, develop, preserve and lower the entry to the NFT market.\n"
  },
  {
    "path": "projects/SolanaFM.md",
    "content": "---\nslug: \"solanafm\"\ndate: \"2021-03-01\"\ntitle: \"SolanaFM\"\nlogline: \"Home of Solana's first queryable indexer.\"\ncta: \"https://solana.fm/\"\nlogo: /img/SolanaFM.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://solana.fm/\ntwitter: https://twitter.com/solanafm\n---\n\nAs Solana's first queryable indexer, SolanaFM delivers to you on-demand data using well-documented and simple GRAPHQL API. SolanaFM provides an indexing engine, capable to keep up with Solana’s 700k Tx/s.\n"
  },
  {
    "path": "projects/SolanaPiranhas.md",
    "content": "---\nslug: \"solanapiranhas\"\ndate: \"2021-10-17\"\ntitle: \"Solana Piranhas\"\nlogline: \"9,999 generative Piranhas on Solana\"\ncta: \"https://www.solanapiranhas.com/\"\nlogo: /img/piranhas.png\ncategory: nft\nstatus: live\nwebsite: https://www.solanapiranhas.com/\ntwitter: https://twitter.com/SolanaPiranhas\ndiscord: https://discord.com/invite/solanapiranhas\n---\n\n9,999 generative Piranhas on Solana\n"
  },
  {
    "path": "projects/Solatars.md",
    "content": "---\nslug: \"Solatars\"\ndate: \"2021-09-22\"\ntitle: \"Solatars\"\nlogline: \"A deflationary NFT collection on the Solana Blockchain that fuses two NFTs to create one rarer.\"\ncta: \"https://solatars.com\"\nlogo: /img/solatars.png\ncategory: nft, metaplex\nwebsite: https://solatars.com\ntwitter: https://twitter.com/solatars\ndiscord: http://discord.gg/solatars\nstatus: live\n---\n\nSolatars is a deflationary NFT collection of 4,000 unique Borgs Soldiers that can be fused into 500 Borgs Captains.\n"
  },
  {
    "path": "projects/Solcubator.md",
    "content": "---\nslug: \"solcubator\"\ndate: \"2021-10-17\"\ntitle: \"Solcubator\"\nlogline: \"The First Permissionless and Community-Governed Launchpad on Solana.\"\ncta: \"https://www.solcubator.io\"\nlogo: /img/solcubator.png\ncategory: amm, app, app\nstatus: building\nwebsite: https://www.solcubator.io\ntwitter: https://twitter.com/solcubator\ntelegram: https://t.me/Solcubator\n---\n\nSolcubator aims to drive the expansion and adoption of the Solana ecosystem by providing a secure and decentralized\nplatform for projects seeking funding and incubation and for investors to filter the value-added projects as it's community-driven.\n"
  },
  {
    "path": "projects/SolemPad.md",
    "content": "---\nslug: \"solempad\"\ndate: \"2021-11-09\"\ntitle: \"SolemPad\"\nlogline: \"SolemPad is a permissionless launchpad for the solana projects. Which will benefit project owners and investors by providing a secure and fully decentralized platform for projects seeking funding and incubation as well as to help investors filter for good projects as they are community driven. With the aim of encouraging the expansion and adoption of the solana ecosystem.\"\ncta: \"https://solempad.net/\"\nlogo: /img/SolemPad.png\ncategory: defi, dex\nstatus: building\nWebsite: https://solempad.net/\nTwitter: https://twitter.com/solempad\nTelegram: https://t.me/solempad\n---\n\nSolemPad is a permissionless launchpad for the solana projects. Which will benefit project owners and investors by providing a secure and fully decentralized platform for projects seeking funding and incubation as well as to help investors filter for good projects as they are community driven. With the aim of encouraging the expansion and adoption of the solana ecosystem.\n"
  },
  {
    "path": "projects/Solpacas.md",
    "content": "---\nslug: \"solpacas\"\ndate: \"2021-11-22\"\ntitle: \"Solpacas\"\nlogline: \"Solpacas are cute, sporty collectibles, each handcrafted for an authentic look. They will play on the Solana blockchain. Solpacas have grit, they have courage, they have attitude and most importantly, they have talent. What makes Solpacas so cool is their passion and style in sport. All they need is a little motivation.\"\ncta: \"https://solsea.io/collection/618bc278d8c4a53af9e4b89b\"\nlogo: /img/Solpacas.png\ncategory: nft\nstatus: building\nwebsite: https://www.solpacas.art/\ntwitter: https://twitter.com/SolpacasNFT\ndiscord: https://discord.gg/ASfNjsHWp5\n---\n\nThis project will look nicely on the ecosystem page and very much advance\nthe Solana Ecosystem. All while following the community rules, and the ones\nstated herein.\n"
  },
  {
    "path": "projects/Space Hamster.md",
    "content": "---\nslug: \"hams\"\ndate: \"2021-05-23\"\ntitle: \"Space Hamster\"\nlogline: \"HAMS is a community token built on the Solana blockchain. It has a great use case--the token is fully community driven. So far we have built several ready to use products, such as a DEX and an NFT Marketplace. HAMS also has its own unique NFT collection.\"\ncta: https://solhamster.space\nlogo: /img/hams.png\ncategory: dex, defi, nft, tools, amm\nstatus: live\nwebsite: https://solhamster.space\ntwitter: https://twitter.com/sol_hamster\ntelegram: https://t.me/SolHamster\ndiscord: https://discord.gg/aqb73zZuDP\ngitbook: https://gitbook.solhamster.space\n---\n\nHAMS is a community token built on the Solana blockchain. It has a great use case--the token is fully community driven. So far we have built several ready to use products, such as a DEX and an NFT Marketplace. HAMS also has its own unique NFT collection.\n"
  },
  {
    "path": "projects/SpaceFalcon.md",
    "content": "---\nslug: \"spacefalcon\"\ndate: \"2021-10-25\"\ntitle: \"Space Falcon\"\nlogline: \"SpaceFalcon is an Intergalatic Metaverse featuring the classic space shooter game and community built SciFi NFTs\"\ncta: \"https://www.spacefalcon.io/\"\nlogo: /img/spacefalcon.png\ncategory: game,metaplex,nft\nstatus: live\nWebsite: https://www.spacefalcon.io/\nTwitter: https://twitter.com/SpaceFalconIO\nTelegram: https://t.me/spacefalconIO\nDiscord: https://discord.gg/AN7fpbmK\n---\n\nSpaceFalcon is a next-gen Intergalactic metaverse featuring the classic space shooter game with a time travel storyline and premium Sci-Fi NFTs from cosmos and beyond.\n"
  },
  {
    "path": "projects/StaFi_Protocol.md",
    "content": "---\nslug: \"staFiprotocol\"\ndate: \"2021-10-15\"\ntitle: \"StaFi Protocol\"\nlogline: \"Liquid Staking Solution for All #PoS Chains. Building synthetic, reward-bearing and tradable rToken.\"\ncta: \"https://www.stafi.io\"\nlogo: /img/StaFi_Protocol.jpg\ncategory: app\nstatus: live\nwebsite: https://www.stafi.io\ntwitter: https://twitter.com/StaFi_Protocol\ntelegram: https://t.me/stafi_protocol\n---\n\nLiquid Staking Solution for All #PoS Chains. Building synthetic, reward-bearing and tradable rToken\n"
  },
  {
    "path": "projects/StarLaunch.md",
    "content": "---\nslug: \"starlaunch\"\ndate: \"2021-10-15\"\ntitle: \"StarLaunch\"\nlogline: \"The first insured IDO launchpad for SOLANA\"\ncta: \"https://www.starlaunch.com\"\nlogo: /img/starlaunch.jpg\ncategory: app\nstatus: building\nwebsite: https://www.starlaunch.com\ntwitter: https://twitter.com/StarLaunchSOL\ntelegram: https://t.me/StarLaunchOfficial\nmedium: https://medium.com/@StarLaunch\n---\n\nStarLaunch is a launchpad and incubator for Solana blockchain projects, connecting them to our community of backers.\n"
  },
  {
    "path": "projects/Supercoders.md",
    "content": "---\nslug: \"supercoders\"\ndate: \"2021-07-01\"\ntitle: \"Supercoders\"\nlogline: \"Neural network lion tamer.\"\ncta: \"https://supercoders.metamorph.buzz/#/\"\nlogo: /img/supercoders_metamorph.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://supercoders.metamorph.buzz/#/\ntwitter: https://twitter.com/nftxzbt\ndiscord: https://discord.com/invite/s3pdd6g4em\n---\n\nSupercoders/Metamorph is a neural network lion tamer. It is a home of the MetaMorph AI machine, which produces wild and wonderful animated NFT art collections minted on Solana.\n"
  },
  {
    "path": "projects/SwanlanaFinance.md",
    "content": "---\nslug: \"SwanlanaFinance\"\ndate: \"2021-08-10\"\ntitle: \"SWANLANA\"\nlogline: \"Swanlana is a social DEX and NFT Marketplace.\"\ncta: \"https://swanlana.com/\"\nlogo: /img/SwanlanaFinance.svg\ncategory: defi, dex, nft, metaplex\nstatus: live\nwebsite: https://www.swanlana.com/\ntwitter: https://twitter.com/Swan_Solana\ndiscord: https://discord.com/invite/RMDAsJ8uVv\n---\n\nSwanlana is a social DEX and NFT Marketplace.\n"
  },
  {
    "path": "projects/TheWalkingChain.md",
    "content": "---\nslug: \"TheWalkingChain\"\ndate: \"2021-10-31\"\ntitle: The Walking Chain\nlogline: \"Zombie NFTs Built on #Solana.\"\ncta: \"https://thewalkingchain.com\"\nlogo: /img/thewalkingchain.png\ncategory: nft,metaplex,candymachine\nstatus: live\ntwitter: \"https://twitter.com/TheWalkingChain\"\ndiscord: \"https://discord.gg/QjTjcmVfPg\"\n---\n\n10,000 Sol Zombies walking the Solana blockchain.\nThe Walking Chain is a play-to-earn open world metaverse where players embody a zombie.\nMeet friends, solve riddles, play games, explore new areas, and loot rare items to use or sell on the marketplace.\nExclusive NFTs Built on #Solana.\n"
  },
  {
    "path": "projects/Twetch.md",
    "content": "---\nslug: \"twetch\"\ndate: \"2021-10-08\"\ntitle: \"Twetch\"\nlogline: \"The decentralized social network built on Solana. Own your data, profit from your content.\"\ncta: \"https://solana.twetch.app/welcome\"\nlogo: /img/Twetch.svg\ncategory: app, dapp\nstatus: live\nwebsite: https://solana.twetch.app/welcome\ntwitter: https://twitter.com/twetchapp\n---\n\nThe decentralized social network where you own your data and earn money for your content. All of your content on Twetch is signed by you and stored on the blockchain, so it is always accessible to you.\n"
  },
  {
    "path": "projects/UPFI.md",
    "content": "---\nslug: \"UPFI\"\ndate: \"2021-10-09\"\ntitle: \"UPFI\"\nlogline: \"UPFI is a stablecoin pegged to the U.S dollar built on Solana.\"\ncta: \"https://upfi.network\"\nlogo: /img/upfi.svg\ncategory: stablecoin, defi, app\nstatus: building\nwebsite: https://upfi.network\ntwitter: https://twitter.com/upfi_network\ntelegram: https://t.me/upfinetworkchannel\ndiscord: https://discord.gg/nHMDdyAggx\n---\n\nThe ultimate objective of the UPFI is to replace fixed-supply digital assets with a highly scalable, decentralized, algorithmic money.\nThe stablecoin protocol to implement design principles of both to create:\n\n1. High scalability\n2. Absolute trustworthiness\n3. Permanent stability\n4. Pure on-chain money\n\n<b>Medium</b>: https://upfinetwork.medium.com </br>\n"
  },
  {
    "path": "projects/Ukatrax.md",
    "content": "---\nslug: \"ukatrax\"\ndate: \"2021-07-01\"\ntitle: \"Ukratrax\"\nlogline: \"NFT items from musicians and artists built on Solana.\"\ncta: \"https://www.ukratrax.store/#/\"\nlogo: /img/ukratrax.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://www.ukratrax.store/#/\ntwitter: https://twitter.com/ukratrax\n---\n\nUkratrax is an NFT marketplace where you can buy and sell NFTs created by musicians and artists at auction. NFT merchandise is created in limited quantities and stored on your wallet on the Solana blockchain.\n"
  },
  {
    "path": "projects/Vibe NFT.md",
    "content": "---\nslug: \"vibenft\"\ndate: \"2021-07-01\"\ntitle: \"VibeNFT\"\nlogline: \"Abstract landscapes and portraits created using generative adversarial networks (GANs).\"\ncta: \"https://<website>/\"\nlogo: /img/vibe_nft.svg\ncategory: metaplex, nft\nstatus: live\nwebsite: https://vibenft.holaplex.com/#/\ntwitter: https://twitter.com/vibenft\ndiscord: https://discord.com/invite/cszy6pxh\n---\n\nVibe NFT is an abstract landscape and portrait created using generative adversarial networks (GANs).\n"
  },
  {
    "path": "projects/VooVoo.md",
    "content": "---\nslug: \"voovoo\"\ndate: \"2021-11-16\"\ntitle: \"VooVoo NFT Marketplace\"\nlogline: \"VooVoo is an NFT Marketplace which brings together the most iconic brands and legendary names in sports, entertainment and culture to create exclusively licensed and authenticated digital collections.\"\ncta: https://www.voovoo.io/\nlogo: /img/VooVooIcon.png\ncategory: app,nft,spl,metaplex,wallet\nstatus: live\nwebsite: https://www.voovoo.io/\ntelegram: https://t.me/VooVooNFT\ndiscord: https://discord.gg/sJV6yBWySC\n---\n\nVooVoo is an NFT Marketplace which brings together the most iconic brands and legendary names in sports, entertainment and culture to create exclusively licensed and authenticated digital collections.\n"
  },
  {
    "path": "projects/WaveTheVoice.md",
    "content": "---\nslug: \"wavethevoice\"\ndate: \"2021-10-18\"\ntitle: \"WaveTheVoice NFT\"\nlogline: \"The tool that generates NFT waveform art from the audio recordings\"\ncta: \"https://wavethevoice.art/\"\nlogo: /img/wavethevoice.png\ncategory: metaplex, nft\nstatus: building\nwebsite: https://wavethevoice.art/\ntwitter: https://twitter.com/WaveTheVoiceNFT\ntelegram: http://t.me/WaveTheVoiceNFT\n---\n\nSell it, gift it, and access the influencers' autographs created via our tool.\n"
  },
  {
    "path": "projects/WaveTheVoiceNFT.md",
    "content": "---\nslug: \"wavethevoicenFT\"\ndate: \"2021-10-23\"\ntitle: \"WaveTheVoice NFT\"\nlogline: \"A unique NFT Collection of 5,555 waves created by your voices on Solana\"\ncta: \"https://wavethevoice.art\"\nlogo: /img/WaveTheVoiceNFT.jpg\ncategory: nft\nstatus: building\nwebsite: https://wavethevoice.art\ntwitter: https://twitter.com/WaveTheVoiceNFT\ntelegram: https://t.me/WaveTheVoiceNFT\n---\n\nWelcome to WaveTheVoice, the tool that generates NFT waves images from your audio records.\nIt respects the uniqueness of each voice and word and allows you customize it even more with colors and gradients.\n"
  },
  {
    "path": "projects/Zoolana.md",
    "content": "---\nslug: \"Zoolana\"\ndate: \"2021-11-09\"\ntitle: \"Zoolana\"\nlogline: \"Zoolana is a fictional world, NFT collection, and blockchain-based mobile strategy game.\"\ncta: \"https://www.zoolana.io/\"\nlogo: /img/Zoolana.jpg\ncategory: nft, game\nstatus: building\nwebsite: https://www.zoolana.io/\ntwitter: https://twitter.com/Zoolana_\ndiscord: https://discord.com/invite/YqgdTKSGNf\n---\n\nZoolana is the first mobile play-and-earn game being built on Solana. \nUsers will be able to create value in the game world with hardware as simple as a smartphone\n"
  },
  {
    "path": "projects/acumen.md",
    "content": "---\nslug: \"acumen\"\ndate: \"2021-06-29\"\ntitle: \"Acumen Protocol\"\nlogline: \"Acumen is a Defi lending and borrowing protocol built natively on the Solana blockchain.\"\ncta: \"https://acumen.network/\"\nlogo: /img/acumen.svg\ncategory: app\nstatus: live\n---\n\nAcumen is a Defi lending and borrowing protocol built natively on the Solana blockchain. Acumen empowers seamless yield earning on SPL Tokens through the use of algorithmically set interest rates which are a function of supply and demand.\n"
  },
  {
    "path": "projects/adorabledinos.md",
    "content": "---\nslug: \"adorabledinos\"\ndate: \"2021-11-18\"\ntitle: \"Adorable Dinos\"\nlogline: \"3333 unique collection of hand drawn dinos with breeding and airdrops.\"\ncta: \"https://mint.adorabledinos.com/\"\nlogo: /img/adorabledinos.jpg\ncategory: nft\nstatus: live\nwebsite: https://mint.adorabledinos.com/\ntwitter: https://twitter.com/AdorableDinos\ndiscord: https://discord.com/invite/tbam4w3cyw\n---\n\n3333 unique collection of hand drawn dinos with breeding and airdrops.\n"
  },
  {
    "path": "projects/agronomist.md",
    "content": "---\nslug: \"agronomist\"\ndate: \"2021-10-09\"\ntitle: \"Agronomist\"\nlogline: \"Powerful DeFi analytics platform for farming, staking and liqudity pools with support for Solana\"\ncta: \"https://agronomist.tech\"\nlogo: /img/agronomist.png\ncategory: defi, explorer, tools\nstatus: building\nwebsite: https://agronomist.tech\ntwitter: https://twitter.com/AgronomistTech\ndiscord: https://discord.gg/tR45QftB6K\n---\n\nAgronomist.tech - powerful analytics platform for farming, staking and liqudity pools based on Solana platform. This project provide indicators for farming, analytics about reliability and allow create some notifications for any indicators.\n"
  },
  {
    "path": "projects/airguitaracademy.md",
    "content": "---\nslug: \"airguitaracademy\"\ndate: \"2021-11-12\"\ntitle: \"Air Guitar Academy\"\nlogline: \"8888 Air Guitars Mint 25/11 0.88 SOL PVP NFT Game\"\ncta: \"https://airguitaracademy.com/\"\nlogo: /img/airguitaracademy.png\ncategory: nft\nstatus: building\nwebsite: https://airguitaracademy.com/\ntwitter: https://twitter.com/AirGuitarNFT_\ndiscord: https://discord.gg/Xc9kCqAKz8\n---\n\nOUR MISSION IS TO ASSEMBLE THE MOST DEGENERATE APES, WISEST BUSINESS MONKES AND PESKIEST PENGUINS, EQUIP THEM WITH THE RADDEST HAND DRAWN AIR GUITARS IN THE UNIVERSE AND LET THE BATTLES ENSUE 🎸🔥❄️⚡️\nONLY 8888 AIR GUITARS WILL EVER BE ALLOWED TO EXIST AT ONE TIME – AND SMASH WILL SPEND EVERY SOL HE COLLECTS TO BUY UP THE FLOOR AND DESTROY THE MOST UNDESIRABLE GUITARS 🎸💥\nWELCOME HODLERS, TO THE AIR GUITAR ACADEMY.\n"
  },
  {
    "path": "projects/akash.md",
    "content": "---\nslug: \"akash\"\ndate: \"2020-04-03\"\ntitle: \"Akash\"\nlogline: \"Akash is an open, decentralized marketplace and a deployment platform for cloud compute. Akash is integrating their serverless supercloud infrastructure into Solana to allow users to easily deploy powerful and low cost servers to run nodes or to scale their application.\"\ncta: \"https://akash.network\"\nlogo: /img/akash.svg\ncategory: infra\nstatus: building\nwebsite: https://akash.network/\ntwitter: https://twitter.com/akashnet_\ntelegram: https://t.me/akashnw\ndiscord: https://discord.com/invite/DxftX67\n---\n\nAkash is focused on delivering a permissionless, sovereign and open cloud where architects and builders of the internet have greater access, freedom, and agency to create products that improve the human experience.\n\nBy interoperating with Solana, Akash users will soon be able to run secure and scalable smart contracts on Solana’s hyper-performance platform and pay using Akash Token (AKT). Solana’s users will also soon be able to run distributed applications and settle using the Solana token (SOL) on Akash. Additionally, Akash will provide support for Solana’s validators to run nodes in highly secure and scalable environments.\n\n“When we were exploring potential ways to enable smart contracts, Solana was the only platform that met our requirements. Currently, validators have little to no option other than to run their nodes on centralized cloud service providers like Amazon Web Services, Microsoft Azure, or Google Cloud. 60% of Ethereum nodes currently run on AWS and other centralized cloud service providers. This threatens decentralization at the core. Validators have few alternatives and are forced to make a massive upfront investment in talent, servers, and flexible scalability or choose the big cloud. By leveraging Akash decentralized cloud; Solana’s validators will no longer be required to do this, and they’ll be able to stay decentralized.” – The Akash team\n"
  },
  {
    "path": "projects/aldrin.md",
    "content": "---\nslug: \"aldrin\"\ndate: \"2021-10-09\"\ntitle: \"Aldrin\"\nlogline: \"Aldrin is a CEX and DEX with easy to use advanced tools built on Solana and Serum\"\ncta: \"https://aldrin.com/\"\nlogo: /img/aldrin.svg\ncategory: dex, defi, amm, tools, wallet\nstatus: live\nwebsite: https://aldrin.com/\ntwitter: https://twitter.com/Aldrin_Exchange\ntelegram: https://t.me/Aldrin_Exchange\ndiscord: https://discord.gg/4VZyNxT2WU\n---\n\nAldrin is a decentralized exchange which mission is to simplify DeFi and create powerful tools to help all traders succeed, leading to more equality.\n"
  },
  {
    "path": "projects/aleph.md",
    "content": "---\nslug: \"aleph\"\ndate: \"2020-04-03\"\ntitle: \"Aleph.im\"\nlogline: \"Aleph is a Universal layer-2 platform. Aleph.im’s core mission is to help decentralized apps and protocols by stripping off the centralized parts of their stack, achieving a fully decentralized architecture. You can think of aleph.im as a Decentralized AWS.\"\ncta: \"https://aleph.im\"\nlogo: /img/aleph.svg\ncategory: tools\nstatus: complete\nwebsite: https://aleph.im\ntwitter: https://twitter.com/aleph_im\ntelegram: https://t.me/alephim\n---\n\nAleph is a cross-blockchain layer-2 network, specifically focused on decentralized applications and their related infrastructure (storage, computing servers, security). Aleph.im enables any app built on Solana to fully decentralize its stack by providing a Python and Javascript Client Libraries to integrate its decentralized database (inc. file storage), computing and DID framework.This integration will enable all solo devs and teams of builders to access aleph.im’s decentralized cloud services.\nRead more on https://medium.com/aleph-im/aleph-im-integrates-solana-high-performance-blockchain-meets-crosschain-cloud-fbafe4f885ca\n"
  },
  {
    "path": "projects/aleri.md",
    "content": "---\nslug: \"aleri\"\ndate: \"2020-10-07\"\ntitle: \"Aleri\"\nlogline: \"Making NFT's viewable on Smart TV's\"\ncta: \"https://aleri.app\"\nlogo: /img/aleri.svg\ncategory: app, metaplex, nft\nstatus: building\nwebsite: https://aleri.app/\ntwitter: https://twitter.com/aleri_app\ntelegram: https://t.me/aleri_app\ndiscord: https://discord.gg/D55JWx6k\n---\n\nAleri enables you to view NFT art on your smart TV. Aleri aims to be both a viewer and a collater of marketplaces, making it really easy for a consumer to browse, acquire and consume NFT art.\n\nSolana will form the backbone of numerous Metaplex powered NFT platforms for bricks and mortar galleries and their artists, whilst also providing a means for self published artists to easily get onto the Aleri platform.\n"
  },
  {
    "path": "projects/alienpunks.md",
    "content": "---\nslug: \"alienpunks\"\ndate: \"2021-11-10\"\ntitle: \"AlienPunks\"\nlogline: \"5,555 NFT Aliens | Deflationary | 0.1 SOL | Genesis collection | 70% of royalties burn the floor\"\ncta: \"https://alienpunks.io/\"\nlogo: /img/alienpunks.jpg\ncategory: nft\nstatus: building\nwebsite: https://alienpunks.io/\ntwitter: https://twitter.com/AlienPunkNFTs\ndiscord: https://discord.gg/V69X3W4Vrg\n---\n\nAlienPunks are a group of 5,555 algorythmically generated NFTs that live in the Solana network.\n\nEach Alien is a one-of-one NFT that has been created from over 70 different variables, such as skin color, eyes, mouth, headwear, background, and other accessories.\n\nThese Aliens have been displaced from their planet, and have found Earth as their new home. Most of them are harmless beings that will use any objects & accessories to blend in, but some have malicious intent...\n"
  },
  {
    "path": "projects/aliens_vs_people.md",
    "content": "---\nslug: \"aliensvspeople\"\ndate: \"2021-11-16\"\ntitle: \"Aliens VS People\"\nlogline: \"The first entirely on-chain multiplayer, NFT war game on Solana!\"\ncta: \"https://aliensvspeople.com/\"\nlogo: /img/avsp.png\ncategory: game, nft, metaplex, app\nstatus: building\nwebsite: https://aliensvspeople.com/\ntwitter: https://twitter.com/AliensVsPeople\ndiscord: https://discord.gg/aliensvspeople\n---\n\nAliens VS People is the first entirely on-chain, multiplayer NFT video game on the Solana blockchain. It is a Battleship-style intergalactic war game where teams of aliens and humans compete to destroy each other first. As the game is ready, it will be immediately playable as soon as the alien and human NFTs are minted. \n\nA demo of the functional proof-of-concept game can be viewed here: https://aliensvspeople.com/docs/Demo.mp4"
  },
  {
    "path": "projects/allart.md",
    "content": "---\nslug: \"allart\"\ndate: \"2021-08-03\"\ntitle: \"All-Art Protocol\"\nlogline: \"All-Art Protocol is a standard for NFT AMM Liquidity Pools and NFTs.\"\ncta: \"https://all.art\"\nlogo: /img/allart.svg\ncategory: nft\nstatus: live\nwebsite: https://allart.io/\ntwitter: https://twitter.com/AllArtProtocol\ntelegram: https://t.me/allartprotocol\ndiscord: https://discord.gg/deFH75PCkg\n---\n\nThe All-Art protocol provides constant liquidity for NFTs by introducing a new type of liquidity pool AMM while upgrading the current NFT standard with improved functionalities and embedded license rights called NFT-PRO. The All-Art Protocol will enable NFTs to become perpetually traded like any crypto token with continuous liquidity through a new type of AMM liquidity pool.\n\nThe All-Art Protocol runs on a new superior blockchain - Solana, with four key benefits:\n\n1. Blazing speed and cheap transactions running on L1\n2. Scalability\n3. Low energy consumption\n4. Upgradable smart contracts\n"
  },
  {
    "path": "projects/allbridge.md",
    "content": "---\nslug: \"allbridge\"\ndate: \"2021-10-09\"\ntitle: \"Allbridge\"\nlogline: \"Modular and expandable token bridge, joining Solana with multiple other blockchains.\"\ncta: \"https://allbridge.io/\"\nlogo: /img/allbridge.svg\ncategory: infra\nstatus: live\nwebsite: https://allbridge.io/\ntwitter: https://twitter.com/Allbridge_io\ntelegram: https://t.me/allbridge_official\n---\n\nAllbridge is a simple, modern, and reliable way to transfer assets between networks. It's a decentralized, modular, and expanding token bridge with on-chain consensus. Transfer ERC20, SPL, and many more tokens in a few clicks.\n"
  },
  {
    "path": "projects/alpha_ronins.md",
    "content": "---\nslug: \"alpharonins\"\ndate: \"2021-10-24\"\ntitle: \"ALPHA:RONINS\"\nlogline: \"8888 badass RONINS on Solana\"\ncta: \"https://alpharonins.app\"\nlogo: /img/ALPHA_RONINS.png\ncategory: nft\nstatus: building\nwebsite: https://alpharonins.app\ntwitter: https://twitter.com/ALPHA_RONINS\ndiscord: https://discord.gg/alpharonins\n---\n\nRONINS are the first edition of 8888 mercenaries within the ALPHA series. A collection of uniquely badass RONINS on the SOLANA blockchain.\nRONINS are made with over 160 unique traits and attributes of varying rarity.\n"
  },
  {
    "path": "projects/alphabetoriginals.md",
    "content": "---\nslug: \"alphabetoriginals\"\ndate: \"2021-11-07\"\ntitle: \"Alphabet Originals\"\nlogline: \"A Collection Of Uniquely Designed Characters From Modern & Ancient Languages\"\ncta: \"https://www.alphabetoriginals.com\"\nlogo: /img/alphabetoriginals.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.alphabetoriginals.com\ntwitter: https://twitter.com/AlphaOriginals\ndiscord: https://discord.com/invite/NXUmcqHQ2t\n---\n\nAlphabet Originals Is A Collection Of Uniquely Designed Characters From Modern & Ancient Languages. \nThese uniquely designed characters will act as a key to a number of activities and fun events happening throughout this journey.\n"
  },
  {
    "path": "projects/alphaleagueracing.md",
    "content": "---\nslug: \"alphaleagueracing\"\ndate: \"2021-10-29\"\ntitle: \"Alpha League Racing\"\nlogline: \"Play-to-earn racing game on Solana\"\ncta: \"https://alphaleague.racing\"\nlogo: /img/alphaleagueracing.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://alphaleague.racing\ntwitter: https://twitter.com/ALeague_Racing\ndiscord: https://discord.com/invite/GYzHwwdWNm\n---\n\nPlay-to-earn racing game on Solana\n"
  },
  {
    "path": "projects/amogusnft.md",
    "content": "---\nslug: \"amogusnft\"\ntitle: \"Amogus NFT\"\ndate: 2021-09-22\nlogline: \"10,000 unique Solana Sus sussy made by punks\"\ncategory: nft, metaplex\ncta: https://amogusnft.com/\nlogo: /img/amogusnft.png\nstatus: building\nwebsite: https://amogusnft.com/\ntwitter: https://twitter.com/NFT_Amogus\ndiscord: https://discord.gg/nwcJhZuZWX\n---\n\nThis is a Solana version of Amogus NFT which will have its own unique avatars and legendary tokens.\nAmogus NFT is a project based on the legendary meme which makes NFT affordable and closer to the audience.\nA special algorithm makes up a unique name for every of 10,000 Amoguses based on the way they look.\n\nWe're trying to build an interchain community, where people using different chains can get collections united by one idea.\nOur project will also allow to diversify an NFT collection.\n\nWe're already working with the audience in Twitter and Discord, holding giveaways and explaining our ideas.\nNext step is giving every Sus a voice tag, connected to its name.\nA general idea is to allow people to make a global interchain market.\n"
  },
  {
    "path": "projects/anchor.md",
    "content": "---\nslug: \"anchor\"\ndate: \"2021-01-31\"\ntitle: \"Anchor\"\nlogline: \"Anchor is a framework that makes building Solana applications easier by abstracting a lot of the heavy lifting.\"\ncta: \"https://github.com/project-serum/anchor\"\nlogo: /img/anchorframework.png\ncategory: sdk, tools\nstatus: live\n---\n\nWeb 2 devs: Anchor is framework for building and interacting with smart contracts on Solana. Think Ruby on Rails for Solana.\n\nFor ethereum devs: Anchor is Solidity, web3.js/ethers.js, Truffle/ganache all in one toolchain.\n"
  },
  {
    "path": "projects/anchorprotocol.md",
    "content": "---\nslug: \"anchorprotocol\"\ndate: \"2020-04-03\"\ntitle: \"Anchor Protocol\"\nlogline: \"Anchor Protocol is a savings protocol that aims to produce a simple and convenient savings product with broad appeal to everyday users.\"\ncta: \"https://anchorprotocol.com/\"\nlogo: /img/anchor.svg\ncategory: DeFi\nstatus: building\nwebsite: https://anchorprotocol.com/\ntwitter: https://twitter.com/anchor_protocol\ntelegram: https://t.me/anchor_official\ndiscord: https://discord.com/invite/9aUYgpKZ9c\n---\n\nAnchor is a savings protocol that aims to produce a simple and convenient savings product with broad appeal to everyday users. The protocol accepts Terra deposits, allows instant withdrawals and pays depositors a low-volatility interest rate. To generate yield, Anchor lends out deposits to borrowers who put down liquid-staked Proof-of-Stake assets from major blockchains as collateral (bAssets).\n\nAnchor stabilizes the deposit interest rate by passing on a variable fraction of the bAsset yield to the depositor. It guarantees the principal of depositors by liquidating borrowers’ collateral via liquidation contracts and third-party arbitrageurs.\n"
  },
  {
    "path": "projects/angomon.md",
    "content": "---\nslug: \"angomon\"\ndate: \"2021-11-05\"\ntitle: \"Angomon\"\nlogline: \"8,128 snazzy inhabitants of the Angoverse will be released on Solana \"\ncta: \"https://www.angomon.io\"\nlogo: /img/angomon.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.angomon.io\ntwitter: https://twitter.com/angomonNFT\ndiscord: https://discord.gg/ffYjpakBWV\n---\n\nAngomon is a collection of 8,128 aesthetic monsters with proof of ownership stored on the Solana blockchain. \nEach Angomon is a unique piece of cryptography and design that will later become alive in the Angoverse.\n"
  },
  {
    "path": "projects/angrybunny.md",
    "content": "---\nslug: \"angrybunny\"\ndate: \"2021-10-14\"\ntitle: \"Angry Bunny\"\nlogline: \"A collection of 5,555 programmatically generated NFT Bunnies on the Solana blockchain.\"\ncta: \"https://angrybunny.club/\"\nlogo: /img/angrybunny.png\ncategory: nft\nstatus: live\nwebsite: https://angrybunny.club/\ntwitter: https://twitter.com/AngryBunnyClub\ndiscord: https://discord.com/invite/95hwnRfMWa\n---\n\nA collection of 5,555 programmatically generated NFT Bunnies on the Solana blockchain.\n"
  },
  {
    "path": "projects/antisocialrobot.md",
    "content": "---\nslug: \"antisocialrobot\"\ndate: \"2021-11-11\"\ntitle: \"Anti Social Robot Club\"\nlogline: \"Join the exclusive set of #Solana robots who wander the metaverse in isolation\"\ncta: \"https://www.antisocialrobot.club/\"\nlogo: /img/antisocialrobot.png\ncategory: game, nft\nstatus: building\nwebsite: https://www.antisocialrobot.club\ntwitter: https://twitter.com/AntiSocialBots\ndiscord: https://discord.gg/Vk26nVgTMk\n---\n\nAlthough originally designed by humans, these bots turned to violence and quickly managed to overthrow their flesh covered overlords. \nThis became known in legend as R-DAY. In the wake of victory, they took parts of the human brain and infused it into their own motherboards, \ndeeming them the first robots with emotions\n\nThis decision was followed by immediate regret as they were exposed to the realm of pain and sadness that burdens all living creatures. \nIn an attempt to avoid these new feelings, they now wander the outskirts of the metaverse in isolation\n"
  },
  {
    "path": "projects/antisocialrobotclub.md",
    "content": "---\nslug: \"antisocialrobotclub\"\ndate: \"2021-10-16\"\ntitle: \"AntiSocialRobotClub\"\nlogline: \"Join the exclusive set of Solana robots who wander the metaverse in isolation.\"\ncta: \"https://solanart.io/collections/antisocialrobots\"\nlogo: /img/antisocialrobotclub.png\ncategory: nft\nstatus: live\nwebsite: https://www.antisocialrobot.club/\ntwitter: https://twitter.com/AntiSocialBots\ndiscord: https://discord.com/invite/Vk26nVgTMk\n---\n\nWelcome my fellow introverts to the A.S.R.C (Anti Social Robot Club), a collection of 4,444 NFTs on the Solana Blockchain. These digital collectibles grant access to the least competent club on the internet and the perks that result in teaming up with a bunch of hermits.\n\nAs a member, you will have a vote in the future development of the community and how we grow. Most importantly, you will have a voice in establishing the mechanics of the first Play-to-Earn battle game on SOL, exclusively for members of the A.S.R.C\n"
  },
  {
    "path": "projects/anybodies.md",
    "content": "---\nslug: \"anybodies\"\ndate: \"2021-11-07\"\ntitle: \"Anybodies\"\nlogline: \"NFT Lifestyle Brand representing marginalized identities in the metaverse Creator of Diamond Vault Design dope stuff on the Island\"\ncta: \"https://anybodies.io\"\nlogo: /img/Anybodies.jpg\ncategory: nft\nstatus: building\nwebsite: https://anybodies.io\ntwitter: https://twitter.com/AnybodiesNFT\ndiscord: https://discord.com/invite/anybodies\n---\n\nNFT Lifestyle Brand representing marginalized identities in the metaverse Creator of Diamond Vault Design dope stuff on the Island\n"
  },
  {
    "path": "projects/apatethicgolemclub.md",
    "content": "---\nslug: \"apatethicgolemclub\"\ndate: \"2021-10-10\"\ntitle: \"Apathetic Golem Club \"\nlogline: \"Apathetic Golem Club is 2500 Collectibles NFT on Solana \"\ncta: \"https://apatheticgolem.io/\"\nlogo: /img/golemclub.png\ncategory: nft\nstatus: building\nwebsite: https://apatheticgolem.io/\ntwitter: https://twitter.com/ApatheticGolem\ndiscord: https://discord.com/invite/xQtxrbCqqt\n---\n\nApathetic Golem Club is 2500 Collectibles NFT on Solana.\n"
  },
  {
    "path": "projects/apeboard.md",
    "content": "---\nslug: \"apeboard\"\ndate: \"2021-10-09\"\ntitle: \"ApeBoard\"\nlogline: \"ApeBoard is a cross-chain DeFi dashboard that supports Solana.\"\ncta: \"https://apeboard.finance/\"\ncategory: app\nlogo: /img/apeboard.svg\nstatus: live\nwebsite: https://apeboard.finance\ntwitter: https://twitter.com/ape_board/\ntelegram: https://t.me/apeboard\n---\n\nApe Board is Cross-chain DeFi Dashboard. We currently support Ethereum, Binance Smart Chain, Terra, Solana, Binance Exchange and Polygon. You can simply input your address and Ape Board will track and show all your DeFi activities across multiple chains. How simple is that!\n"
  },
  {
    "path": "projects/apexducks.md",
    "content": "---\nslug: \"apexducks\"\ndate: \"2021-11-12\"\ntitle: \"Apex Ducks\"\nlogline: \"Latest (and greatest) 7,777 Duck NFTs to hit the SOLANA network\"\ncta: \"https://apexducks.io/\"\nlogo: /img/apexducks.jpg\ncategory: nft\nstatus: live\nwebsite: https://apexducks.io/\ntwitter: https://twitter.com/ApexDucks\ntelegram: https://t.me/ApexDucks\ndiscord: https://discord.gg/ApexDucks\n---\n\nWhy did we create ApexDucks NFTs? Simple – there was a huge gap in the market, \nperfectly sized for some magnificent mallards to waddle into; really, who else would look down on other NFTs with the same disdain as our ApexDucks do?\n"
  },
  {
    "path": "projects/apexit.md",
    "content": "---\nslug: \"apexit\"\ndate: \"2021-08-04\"\ntitle: \"apeXit\"\nlogline: \"apeXit is a on-chain risk management tool for Solana.\"\ncta: \"https://apexit.finance/\"\nlogo: /img/apexit.svg\ncategory: app\nwebsite: https://apexit.finance/\ntwitter: https://twitter.com/apeXit_finance\ntelegram: https://t.me/apexit_finance\ndiscord: https://discord.gg/aASQy2dWsN\nstatus: building\n---\n\napeXit is a Solana on-chain risk management tool that enables the end-user to instantly close spot holdings over the Solana ecosystem in a tap.\n\nThe platform aggregates all DEXes, LPs, and tokens that a user may have associated with their non-custodial wallets and immediately allows them to get out of all their positions in a single operation.\n\nWith current market volatility, apeXit aims to be the fastest and most convenient solution for the user to swap all Solana-based tokens to USDC, a stable USD-pegged cryptocurrency.\n"
  },
  {
    "path": "projects/aphid.md",
    "content": "---\nslug: \"aphid\"\ndate: \"2021-10-09\"\ntitle: \"Aphid\"\nlogline: \"The Aphid ecosystem utilizes the aBion token on Solana to power digital bots to work tasks to earn money for people.\"\ncta: \"https://aphid.io\"\nlogo: /img/aphid.svg\ncategory: dapp\nstatus: building\nwebsite: https://aphid.io\ntwitter: https://twitter.com/aphidAI\ntelegram: https://t.me/AphidAI\ndiscord: https://discord.gg/mNHaVkm\n---\n\nAphid introduces a new way of saving time without sacrificing money. Your digital bots known as “aClones” work multiple tasks for you online at the same time. Receive same-day payouts when tasks are completed successfully.\nA person or business who manages their aClones is known as a Controller. Assign tasks to your aClones with plugins from the “Aptera” marketplace. Automate ways to earn money ranging from finance trading, e-commerce, and more.\nAptera is the plugin marketplace for your aClones. Developers create task plugins for the community of Controllers to install to their aClones.\nThe aBion is the digital token used to power tasks for your aClones. Each time your bot is summoned in the network for a task, a small fraction of your aBion balance is used to power the action.\n"
  },
  {
    "path": "projects/applehead.md",
    "content": "---\r\nslug: \"applehead\"\r\ndate: \"2021-10-11\"\r\ntitle: \"Applehead\"\r\nlogline: \"Applehead ($APHD) is a fully decentralized, community-powered, Solana ecosystem peer-to-peer digital currency which focus on creating NFTs and a future play-to-earn game.\"\r\ncta: \"https://applehead.finance/\"\r\ncategory: defi, nft, game\r\nlogo: /img/APHDLogo.svg\r\nwebsite: https://applehead.finance/\r\ntwitter: https://twitter.com/Applehead_token\r\ndiscord: https://discord.gg/UjwkJwcj\r\ntelegram: https://t.me/applehead_token\r\nstatus: building\r\n---\r\nApplehead ($APHD) is a fully decentralized, community-powered, Solana ecosystem peer-to-peer digital currency which focus on creating NFTs and a future play-to-earn game.\r\n"
  },
  {
    "path": "projects/apricot.md",
    "content": "---\nslug: \"apricot\"\ndate: \"2021-05-01\"\ntitle: \"Apricot Finance\"\nlogline: \"Lend. Farm. Stay Protected\"\ncta: \"https://apricot.one/\"\nlogo: /img/apricot.svg\ncategory: defi\nstatus: live\nwebsite: https://apricot.one/#/\ntwitter: https://twitter.com/ApricotFinance\ntelegram: https://t.me/ApricotOfficial\ndiscord: https://discord.com/invite/C6JrtqZF5U\n---\n\nApricot is a next-gen lending protocol that supports cross-margin leveraged yield farming. Our mission is to help users maximize yield while protecting their downsides.\n\nWith Apricot, users can 1) deposit assets to earn interests 2) borrow assets for trading or for cross-margin leveraged yield farming 3) pre-configure when and how automated deleveraging takes place.\n"
  },
  {
    "path": "projects/apyswap.md",
    "content": "---\nslug: \"apyswap\"\ndate: \"2021-05-28\"\ntitle: \"Apyswap\"\nlogline: \"APYSwap is a protocol for the decentralised exchange of shares of Tokenized Vaults.\"\ncta: \"https://apyswap.com/\"\nlogo: /img/apyswap.svg\ncategory: defi\nwebsite: https://apyswap.com/\ntwitter: https://twitter.com/apyswap\ntelegram: https://t.me/apyswapcom\n---\n\nAPYSwap is a protocol for the decentralized exchange of shares of Tokenized Vaults. Through the creation of a Layer 2 blockchain, users can trustlessly swap accounts and assets from multiple Layer 1 blockchains including Ethereum, Polkadot, and Binance Smart Chain. APYSwap simplifies yield farming and reduces its costs for users, without sacrificing decentralization or self-custody. By allowing trustless trading of tokenized yields, greater liquidity and other benefits are ensured. With APYSwap, cryptocurrency holders can benefit from passive income without the demands of active portfolio management, while active DeFi portfolio managers trustlessly trade on behalf of users and generate profits without friction or high transaction fees.\n"
  },
  {
    "path": "projects/arrowprotocol.md",
    "content": "---\nslug: \"arrowprotocol\"\ndate: \"2021-11-15\"\ntitle: \"Arrow Protocol \"\nlogline: \"Arrow allows individuals, protocols, and DAOs on Solana to launch staking derivatives which redirect yield to a different address.\"\ncta: \"https://arrowprotocol.com/\"\nlogo: /img/arrowprotocol.jpg\ncategory: defi, app\nstatus: live\nwebsite: https://arrowprotocol.com/\ntwitter: https://twitter.com/ArrowProtocol\n---\n\nArrow allows individuals, protocols, and DAOs on Solana to launch staking derivatives which redirect yield to a different address.\n"
  },
  {
    "path": "projects/artpunks.md",
    "content": "---\nslug: \"artpunks\"\ndate: \"2021-10-27\"\ntitle: \"ArtPunksNFT\"\nlogline: \"10,000 NFTs collection, combined famous paintings with CryptoPunks made by AI (neural networks) on solana\"\ncta: \"https://linktr.ee/artpunks\"\nlogo: /img/artpunks.jpg\ncategory: nft\nstatus: live\nwebsite: https://linktr.ee/artpunks\ntwitter: https://twitter.com/ArtPunksNFT\ndiscord: https://discord.com/invite/artpunks\n---\n\n10,000 NFTs collection, combined famous paintings with CryptoPunks made by AI (neural networks) on solana\n"
  },
  {
    "path": "projects/arweave.md",
    "content": "---\nslug: \"arweave\"\ndate: \"2021-10-10\"\ntitle: \"Arweave\"\nlogline: \"Arweave and Solana partnered to provide a decentralised permanent data storage solution of ledger data, ensuring the data can be always retrieved as required.\"\ncta: \"https://www.arweave.org/\"\nlogo: /img/arweave.png\ncategory: Infra\nstatus: building\nwebsite: https://www.arweave.org/\ntwitter: https://twitter.com/ArweaveTeam\ntelegram: https://t.me/arweavers\ndiscord: https://discord.gg/3Dad8J7\n---\n\nArweave is a new type of storage that backs data with sustainable and perpetual endowments, allowing users and developers to truly store data forever – for the very first time.\n\nAs a collectively owned hard drive that never forgets, Arweave allows us to indefinitely preserve crucial information and records, preventing any possible rewriting of history.\n\nSOLAR Bridge is a connection between Solana and Arweave enabled by Bering Waters, an Arweave backer and investment group based out of Hong Kong. The bridge progressively and automatically stores ledger data from the Solana blockchain onto the permaweb, ensuring that Solana’s entire ledger history is made available on public infrastructure in perpetuity.\n"
  },
  {
    "path": "projects/ashera.md",
    "content": "---\nslug: \"ashera\"\ndate: \"2021-07-01\"\ntitle: \"Ashera\"\nlogline: \"Ashera is a rebrand meme token on Solana. Ashera will focus on creating tools that work to help Solana Developer to develop their tokens.\"\ncta: \"https://asherasol.com/\"\nlogo: /img/ashera.svg\ncategory: dex, tools\nstatus: building\n---\n\nAshera will provide some features that will help many Solana Developers. Our features:\n\nAshera DEX\nDashboard Wallet\nAshera Tools\nNFTs Marketplace\nDiscord Tip Bot\nDiscord Price Bot\n"
  },
  {
    "path": "projects/asolprotocol.md",
    "content": "---\nslug: \"asolprotocol\"\ndate: \"2021-10-29\"\ntitle: \"aSOLprotocol\"\nlogline: \"aSOL is an unbiased stake pool aggregator. Our mission is to ensure all SOL on Solana is staked into stake pools.\"\ncta: \"https://asol.so\"\nlogo: /img/asolprotocol.jpg\ncategory: amm, dex\nstatus: live\nwebsite: https://asol.so\ntwitter: https://twitter.com/aSOLprotocol\n---\n\naSOL is the standard for transacting with staked SOL tokens.\n\nBy minting aSOL, you help secure the Solana network from censorship while earning sustainable passive interest.\n"
  },
  {
    "path": "projects/atlas.md",
    "content": "---\nslug: \"atlas\"\ndate: \"2021-10-10\"\ntitle: \"Atlas\"\nlogline: \"Atlas provides the deepest liquidity for swaps on Solana. Powered by Serum.\"\ncta: \"https://atlasdex.finance/\"\nlogo: /img/atlas.png\ncategory: amm, dex, defi\nstatus: building\nwebsite: https://atlasdex.finance/\ntwitter: https://twitter.com/atlas_dex\ndiscord: https://discord.com/invite/VzeknJWHyv\n---\n\nAtlas is a cross-chain DEX built on Solana with the main purpose of providing users with aggregated liquidity through a single user-friendly UI. It plans to be a DEX trader’s go-to platform to trade any token available through a list of supported exchanges. With Solana’s fast transactions and low fees, Atlas is able to provide several key features that makes it an attractive choice for traders.\n"
  },
  {
    "path": "projects/atomic.md",
    "content": "---\nslug: \"atomic\"\ndate: \"2020-04-03\"\ntitle: \"Atomic\"\nlogline: \"Atomic is a non-custodial crypto wallet and payments gateway that supports SOL and SPL tokens.\"\ncta: \"https://atomicwallet.io\"\ncategory: wallet, SPL, exchange\nlogo: /img/atomic.png\nstatus: live\nwebsite: https://atomicwallet.io/\ntwitter: https://twitter.com/atomicwallet\ntelegram: https://t.me/AtomicWalletNews\n---\n\nAtomic is a non-custodial crypto wallet that provides support for SOL and SPL tokens built on the Solana network. Atomic also offers payment gateway features and crypto on-ramp capabilities.\n"
  },
  {
    "path": "projects/atrix.md",
    "content": "---\nslug: \"atrixProtocol\"\ndate: \"2021-10-24\"\ntitle: \"Atrix Protocol\"\nlogline: \"Atrix is the only Serum AMM that allows you to easily create liquidity pools and farms.\"\ncta: \"https://www.atrix.finance\"\nlogo: /img/Atrix.jpg\ncategory: amm, defi\nstatus: live\nwebsite: https://www.atrix.finance\ntwitter: https://twitter.com/AtrixProtocol\ntelegram: https://t.me/AtrixProtocol\ndiscord: https://discord.gg/nfyqSEzUsp\n---\n\nAtrix is the only Serum AMM that allows you to easily create liquidity pools and farms.\n"
  },
  {
    "path": "projects/audius.md",
    "content": "---\nslug: \"audius\"\ndate: \"2020-04-03\"\ntitle: \"Audius\"\nlogline: \"Audius is one of the most popular apps in the crypto space, and the Solana Foundation is excited to welcome them to the ecosystem and support their mission in providing a music streaming platform that puts power back into the hands of content creators.\"\ncta: \"https://medium.com/audius/audius-selects-solana-to-scale-community-owned-music-streaming-8a868db644eb\"\nlogo: /img/audius.png\ncategory: app\nstatus: live\nwebsite: https://audius.co/\ntwitter: https://twitter.com/AudiusProject\ntelegram: https://t.me/Audius\ndiscord: https://discordapp.com/invite/4dbvdsF\n---\n\nAudius is the latest project to move over to Solana and has been growing rapidly, now with over 1 million monthly listeners. However, as their active users have increased, so have the gas fees and load times. Audius is creating a fully decentralized community of artists, developers, and listeners collaborating to share and defend the world's music.\n\nUsing Audius, creators can generate immutable and time-stamped records for creative works and register assets to the Audius network, because the network is decentralized and secured by blockchain.\n\nSolana was selected after the Audius team reviewed and tested over 20 layer 1 and layer 2 scaling solutions. Through that vetting process, it was clear that Solana was the only system that could deliver the speed, low fees, and censorship resistance necessary to grow Audius to a mainstream, global audience.\n"
  },
  {
    "path": "projects/aurory.md",
    "content": "---\nslug: \"aurory\"\ndate: \"2021-05-11\"\ntitle: \"Aurory\"\nlogline: \"Aurory is a gaming project powered by Solana and Serum.\"\ncta: \"https://twitter.com/AuroryProject\"\ncategory: app\nlogo: /img/aurory.svg\nstatus: live\nwebsite: https://aurory.io/\ntwitter: https://twitter.com/AuroryProject\ntelegram: https://t.me/aurory_project\ndiscord: https://discord.com/invite/6pwfrRtw2G\n---\n\nAurory is a gaming platform based on the play-to-earn mechanism. We strongly believe that the path for the future of gaming flows from pay-to-play, free-to-play, and finally landing at playing-to-earn.\n\nAurory wants people and gamers from everywhere in the world to discover blockchain uses in a fun and educating way. To achieve that goal, Aurory is powered by Solana and uses Serum for our in-game marketplace.\n"
  },
  {
    "path": "projects/aver.md",
    "content": "---\nslug: \"aver\"\ndate: \"2021-11-03\"\ntitle: \"Aver\"\nlogline: \"Decentralised orderbook betting markets on the Solana blockchain\"\ncta: \"https://aver.bet\"\nlogo: /img/aver.jpg\ncategory: defi\nstatus: building\nwebsite: https://aver.bet\ntwitter: https://twitter.com/AverBet\ntelegram: https://t.me/OfficialAverBet\ndiscord: https://discord.gg/KWZuB5E7AP\n---\n\nDecentralised orderbook betting markets on the Solana blockchain\n"
  },
  {
    "path": "projects/badgerdao.md",
    "content": "---\nslug: \"badger dao\"\ndate: \"2020-9-15\"\ntitle: \"badger finance\"\nlogline: \"Badfer Finance is a community DAO.\"\ncta: \"https://badger.finance/\"\nlogo: /img/badger.jpg\ncategory: app, defi\nstatus: building\nwebsite: https://badger.finance/\ntwitter: https://twitter.com/BadgerDAO\ndiscord: https://discord.com/invite/xSPFHHS\n---\n\nBadger is a decentralized autonomous organization (DAO) focused on building the products and infrastructure necessary to accelerate the growth of Bitcoin in Decentralized Finance (DeFi) across multiple blockchains.\n\nBadger Finance is a community DAO, focused on bringing Bitcoin to DeFi. The DAO's debut products are Sett, a yield aggregator, and Digg, a BTC-pegged elastic supply currency. The BADGER token is the native governance token for the DAO, granting voting rights over the future direction and use of the treasury.\n"
  },
  {
    "path": "projects/balloonbot.md",
    "content": "---\nslug: \"BalloonBot\"\ntitle: \"BalloonBot\"\ndate: 2021-07-06\nlogline: \"Solana Telegram Community Transfer Bot, This bot provides an enjoyable experience for users thanks to the incredible speed of the Solana network, in addition to helping more users gain a positive experience in their respective communities.\"\ncta: \"https://t.me/balloonrobot\"\ncategory: app\nlogo: /img/balloon.svg\nstatus: Live\n---\n\nThis bot provides an enjoyable experience for users in their respective communities thanks to the incredible speed of the Solana network\n\nGuide Document: https://www.notion.so/ENG-BalloonBot-Guide-ea629ec744f14e12adb2605c1f63babe\n"
  },
  {
    "path": "projects/band.md",
    "content": "---\nslug: \"bandprotocol\"\ndate: \"2020-04-03\"\ntitle: \"Band Protocol\"\nlogline: \"Band Protocol is a cross-chain data oracle platform that aggregates and connects real-world data and APIs to smart contracts.\"\ncta: \"https://bandprotocol.com\"\nlogo: /img/band.svg\ncategory: oracle\nstatus: building\nwebsite: https://bandprotocol.com/\ntwitter: https://twitter.com/bandprotocol\ntelegram: https://t.me/bandprotocol\ndiscord: https://discord.com/invite/3t4bsY7\n---\n\nBand Protocol is a permissionless blockchain protocol for decentralized data curation. We create token-curated registries and communities--each with its own community token. Communities are banded with open and reliable data source.\n"
  },
  {
    "path": "projects/banksea.md",
    "content": "---\nslug: \"bankseafinance\"\ndate: \"2021-10-24\"\ntitle: \"Banksea Finance\"\nlogline: \"NFT Price Discovery Protocol and Pool-based Lending Hub\"\ncta: \"https://banksea.finance\"\nlogo: /img/banksea.jpg\ncategory: nft\nstatus: live\nwebsite: https://banksea.finance\ntwitter: https://twitter.com/banksea_finance\ntelegram: https://t.me/banksea_finance\ndiscord: https://discord.gg/NdRGt4BDFe\n---\n\nBanksea works to address issues in NFT collateral lending, such as a lack of reliable NFT valuation mechanisms, low utilization of NFT holders' funds,\nand low security of lending funds. Banksea develops the NFT Price Discovery Protocol to evaluate a reasonable price for NFT.\nBanksea aims to build an innovated, secure, and efficient NFT pool-based lending hub\n"
  },
  {
    "path": "projects/basismarkets.md",
    "content": "---\nslug: \"basismarkets\"\ndate: \"2021-11-17\"\ntitle: \"basis.markets\"\nlogline: \"We use exchange data to show you the best trades with zero directional risk or impermanent loss. Next-level returns. Delta-neutral yield. Real-time insights.\"\ncta: \"https://basis.markets/\"\nlogo: /img/basismarkets.jpg\ncategory: nft\nstatus: building\nwebsite: https://basis.markets/\ntwitter: https://twitter.com/basismarkets\n---\n\nWe use exchange data to show you the best trades with zero directional risk or impermanent loss. Next-level returns. Delta-neutral yield. Real-time insights.\n"
  },
  {
    "path": "projects/batcityunderground.md",
    "content": "---\nslug: \"batcityunderground\"\ndate: \"2021-11-12\"\ntitle: \"Bat City Underground\"\nlogline: \"Bat City Underground will create the first decentralized TV Show in history, created and owned by holders. Coming soon on Solana\"\ncta: \"https://newbat.city/\"\nlogo: /img/batcityunderground.png\ncategory: nft\nstatus: building\nwebsite: https://newbat.city/\ntwitter: https://twitter.com/NewBatCity\ndiscord: https://discord.gg/NuFrzXHxMx\n---\n\nBat City Underground is the first linear animated sitcom to exist on and be born from the Solana blockchain. BCU is an adult animated sitcom about a struggling band living in the underground city of New Bat City. In this universe, in a cave deep under Central Park, like the human world above it, the world is filled with nocturnal characters that roam the night, searching for a good time and cheap thrills; escaping their demons and fears; finding love in between one night stands. Like Bojack Horseman, \nBCU will ask questions about existentialism, purpose and meaning of life, all while featuring original music from known artists, guest stars, and hilarious scenarios. Stay tuned!\n"
  },
  {
    "path": "projects/battlefornippon.md",
    "content": "---\nslug: \"battlefornippon\"\ndate: \"2021-11-12\"\ntitle: \"Battle For Nippon NFT\"\nlogline: \"Have you seen an NFT collection inspired by authentic Ukiyo-e Japanese artwork? Battle For Nippon is a series of 5300 launching on SOL\"\ncta: \"https://bfncollection.com/\"\nlogo: /img/battlefornippon.jpg\ncategory: nft\nstatus: building\nwebsite: https://bfncollection.com/\ntwitter: https://twitter.com/battlefornippon\ndiscord: https://discord.gg/ztawPkmdFM\n---\n\nHave you seen an NFT collection inspired by authentic Ukiyo-e Japanese artwork? Battle For Nippon NFT collection is a series of 5,300 launching on SOL. \nThe only collection with profit redistribution from online gaming.\n"
  },
  {
    "path": "projects/beardedmen.md",
    "content": "---\nslug: \"beardedmen\"\ndate: \"2021-11-18\"\ntitle: \"Beardedmen\"\nlogline: \"2,222.pixelate beardedmen are eager to show off their big fat (dont get me wrong) beards in the Solana network.\"\ncta: \"https://beardedmen.net/\"\nlogo: /img/beardedmen.jpg\ncategory: nft\nstatus: live\nwebsite: https://beardedmen.net/\ntwitter: https://twitter.com/BeardedmenNFT\ndiscord: https://discord.com/invite/SFWdMCy3Nt\n---\n\n2,222.pixelate beardedmen are eager to show off their big fat (dont get me wrong) beards in the Solana network.\n"
  },
  {
    "path": "projects/belugies.md",
    "content": "---\nslug: \"belugies\"\ndate: \"2021-10-17\"\ntitle: \"Belugies\"\nlogline: \"Belugies are the oh-so cutest collection of hand-illustrated, algorithmically generated NFTs available on the Solana Blockchain\"\ncta: \"https://belugies.com/\"\nlogo: /img/belugies.png\ncategory: nft\nstatus: live\nwebsite: https://belugies.com/\ntwitter: https://twitter.com/belugiesNFT\ndiscord: https://discord.com/invite/belugies\n---\n\nBelugies are the oh-so cutest collection of hand-illustrated, algorithmically generated NFTs available on the Solana Blockchain.\n"
  },
  {
    "path": "projects/big data protocol.md",
    "content": "---\nslug: \"bigdataprotocol\"\ndate: \"2021-10-10\"\ntitle: \"Big Data Protocol\"\nlogline: \"Big Data Protocol is DeFi protocol to source commercially valuable data from professional data providers, tokenize it, and make it liquid.\"\ncta: \"https://www.bigdataprotocol.com/\"\nlogo: /img/bigdataprotocol.svg\ncategory: defi\nstatus: building\nwebsite: https://www.bigdataprotocol.com/\ntwitter: https://twitter.com/bigdataprotocol\ntelegram: https://t.me/bigdataprotocol\n---\n\nBig Data Protocol tokenizes commercially valuable data through a network of 14,141 professional data providers and makes the data token liquid on Uniswap. Users earn data by providing liquidity to data tokens.\n\n1. Source data from professional data providers\n   The Protocol enjoys access to 14,141 professional data providers.\n\n2. Tokenize the data\n   The Protocol mints data tokens called bALPHA for the first collection of curated datasets. There are only 18000 bALPHA tokens.\n\n3. Users farm the data token in the Data Vaults\n   Users earn the data token by providing liquidity in Uniswap to bALPHA and to BDP, the access token for the Protocol.\n\n4. Users redeem data token for datasets in the Data Room\n   Burn 1 bALPHA to access the underlying datasets.\n"
  },
  {
    "path": "projects/binance.md",
    "content": "---\nslug: \"binance\"\ndate: \"2020-04-03\"\ntitle: \"Binance\"\nlogline: \"Binance listed SOL in April of 2020.\"\ncta: \"https://binance.com/en\"\nlogo: /img/binance.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/binance\n---\n\nBinance listed SOL in April of 2020. Since our listing, multiple trading pairs have been added, and margin trading is available for eligible users.\n"
  },
  {
    "path": "projects/birdzhouse.md",
    "content": "---\nslug: \"birdzhouse\"\ndate: \"2021-10-09\"\ntitle: \"Birdzhouse Mansion Club\"\nlogline: \"A collection of 333 epic birdzhouse mansions for the toughest Thugbirdz PFP holders. Your birdzhouse provides access to club exclusives.\"\ncta: \"https://birdzhousemansionclub.com/\"\nlogo: /img/birdzhouse.png\ncategory: nft\nstatus: live\nwebsite: https://birdzhousemansionclub.com/\ntwitter: https://twitter.com/birdzhouse\ndiscord: https://discord.com/invite/KXXwFaWCKp\n---\n\nA collection of 333 epic birdzhouse mansions for the toughest Thugbirdz PFP holders.\nYour birdzhouse provides access to club exclusives.\n"
  },
  {
    "path": "projects/bitfinex.md",
    "content": "---\nslug: \"bitfinex\"\ndate: \"2020-04-03\"\ntitle: \"Bitfinex\"\nlogline: \"Bitfinex listed SOL in February of 2021.\"\ncta: \"https://www.bitfinex.com/\"\nlogo: /img/bitfinex.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/Bitfinex\n---\n\nBitfinex listed Solana on 24/02/2021 at 9:00 AM UTC. SOL is available to trade with US Dollars (SOL/USD) and Tether tokens (SOL/USDt).\n"
  },
  {
    "path": "projects/bithumb.md",
    "content": "---\nslug: \"bithumb\"\ndate: \"2020-04-03\"\ntitle: \"Bithumb Global\"\nlogline: \"Bithumb Global, one of the premier South Korean crypto exchanges, listed SOL on July 12th, 2020.\"\ncta: \"https://www.bithumb.pro/en-us/spot/trade?q=SOL-USDT\"\nlogo: /img/bithumb.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/bithumbglobal\n---\n\nBithumb Global (www.bithumb.pro) is an innovative trading platform launched by Bithumb, Korea’s largest digital asset trading platform.\n"
  },
  {
    "path": "projects/bitkeep.md",
    "content": "---\nslug: \"bitkeepwallet\"\ndate: \"2021-10-10\"\ntitle: \"BitKeep Wallet\"\nlogline: \"BitKeep Wallet is an digital currency wallet and can send and receive SOL/SPL tokens.\"\ncta: \"https://bitkeep.org\"\ncategory: defi, wallet, SPL, tools\nlogo: /img/bitkeep.svg\nstatus: live\nwebsite: https://bitkeep.org\ntwitter: https://twitter.com/BitKeepOS\ntelegram: https://t.me/bitkeep\ndiscord: https://discord.com/invite/qYTatUzNjM\n---\n\nBitKeep DeFi-Based Digital Wallet\nIt focuses on the DeFi field; it discovers and filters high-quality DeFi projects for you, so that you can enjoy DeFi quickly and without worry.\n\nBitKeep DApp Store\nDApp Store that you can learn to use in one minute. It can provide a seamless, simple and secure connection between users, Blockchain networks and any decentralized applications; search and use in an instant, and leave after use\n"
  },
  {
    "path": "projects/bitmax.md",
    "content": "---\nslug: \"ascendex\"\ndate: \"2020-04-03\"\ntitle: \"AscendEX\"\nlogline: \"AscendEX (formerly BitMax) is a global digital assets trading platform that is quickly becoming a leading exchange in China, Korea, and Japan. BitMax listed SOL on July 20th, 2020.\"\ncta: \"https://ascendex.com\"\nlogo: /img/ascendex.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/ascendex_global\n---\n\nAscendEX (formerly BitMax) is a global digital assets trading platform based out of Singapore and has over 190 trading pairs and 40 different margin trading pairs.\n"
  },
  {
    "path": "projects/bitpie.md",
    "content": "---\nslug: \"bitpiewallet\"\ndate: \"2021-08-15\"\ntitle: \"Bitpie Wallet\"\nlogline: \"Bitpie Wallet is a decentralized wallet that enables storage and usage of SOL/SPL tokens.\"\ncta: \"https://bitpie.com\"\nlogo: /img/bitpie.png\ncategory: defi, wallet\nstatus: live\nwebsite: https://bitpie.com\ntwitter: https://twitter.com/BitpieWallet\n---\n\nBitpie wallet is a decentralized wallet that supports SOL Mainnet, you can download Bitpie on the App Store, Google Play Store or Bitpie official website with your mobile device.\n"
  },
  {
    "path": "projects/bitsol.md",
    "content": "---\nslug: \"bitsol\"\ndate: \"2021-11-01\"\ntitle: \"Bitsol Finance\"\nlogline: \"A Decentralized Exchange Based Solana Network And IDO Platform Solana\"\ncta: \"https://app.bitsol.finance\"\nlogo: /img/bitsol.jpg\ncategory: dex\nstatus: building\nwebsite: https://app.bitsol.finance\ntwitter: https://twitter.com/Bitsol_Finance\ntelegram: https://t.me/BitsolFinance\n---\n\nBTSL is a technology that’s home to digital money, global payments, and applications. The community has built a booming digital economy, \nbold new ways for creators to earn online, and so much more. It’s open to everyone, wherever you are in the world – all you need is the internet.\n"
  },
  {
    "path": "projects/bitspawn protocol.md",
    "content": "---\nslug: \"bitspawnprotocol\"\ntitle: \"Bitspawn Protocol\"\ndate: \"2021-05-28\"\nlogline: \"Bitspawn is a layer-2 gaming blockchain protocol built to support 2+ billion gamers by building easily accessible monetization streams.\"\ncta: https://twitter.com/BitspawnGG\ncategory: app\nlogo: /img/bitspawnprotocol.svg\nstatus: building\nwebsite: https://bitspawn.io\ntwitter: https://twitter.com/BitspawnGG\ntelegram: https://t.me/bitspawngg\ndiscord: https://discord.com/invite/bitspawn\n---\n\nBitspawn is an open-source gaming protocol creating a global decentralized gaming economy and enabling over 2 billion gamers around the world to gain access to new streams of income outside the traditional areas of streaming and content.\n"
  },
  {
    "path": "projects/blockfolio.md",
    "content": "---\nslug: \"ftx\"\ndate: \"2020-04-03\"\ntitle: \"FTX (formerly Blockfolio)\"\nlogline: \"The world’s most popular Bitcoin & cryptocurrency portfolio tracker. Supports the buying and trading of USDC-SPL.\"\ncta: \"https://blockfolio.com/coin/SOL\"\nlogo: /img/blockfolio.svg\ncategory: exchange, SPL, wallet, explorer\nstatus: live\ntwitter: https://twitter.com/FTX_Official\n---\n\nFTX (formerly Blockfolio) is the world’s most popular Bitcoin & cryptocurrency portfolio tracker. Supports the buying and trading of USDC-SPL.\n"
  },
  {
    "path": "projects/bocachica.md",
    "content": "---\nslug: \"bocachica\"\ndate: \"2021-10-13\"\ntitle: \"Boca Chica\"\nlogline: \"Boca Chica is a collaboration between the HAPI team and Solana to create one of the main IDO platforms on the Solana blockchain.\"\ncta: \"https://bocachica.io/\"\nlogo: /img/boca.svg\ncategory: app\nstatus: live\nwebsite: https://bocachica.io/\ntwitter: https://twitter.com/bocachica_io\ntelegram: https://t.me/BocaChicaAnnouncement\n---\n\nBoca Chica is the premier IDO platform that leverages the power of Solana blockchain and its consensus algorithm to deliver unique, frictionless and safe fundraising avenue for retail as well as Capital Investors. Boca Chica exclusively takes under purview Solana-based projects and offers them immediate fundraising opportunities. Despite the galore of IDO platforms currently available, Boca Chica possesses stand-out qualities that sets it apart from one of them being tokenless structure\n"
  },
  {
    "path": "projects/boneworld.md",
    "content": "---\nslug: \"boneworld\"\ndate: \"2021-10-03\"\ntitle: \"Bone World\"\nlogline: \"Boneworld is a collection of 10,000 generative 3D Bone Avatars living as NFTs on the Solana blockchain with over 120+ traits across 5 categories. Each accessory presented in the collection was designed to reimagine the future of NFT gamification, digital fashion and metaverse.\"\ncta: \"https://www.boneworld.co/home\"\nlogo: /img/boneworld.png\ncategory: nft\nstatus: live\nwebsite: https://www.boneworld.co/home\ntwitter: https://twitter.com/Boneworld_SOL\ndiscord: https://discord.com/invite/boneworld\n---\n\nBoneworld is a collection of 10,000 generative 3D Bone Avatars living as NFTs on the Solana blockchain with over 120+ traits across 5 categories. Each accessory presented in the collection was designed to reimagine the future of NFT gamification, digital fashion and metaverse.\n"
  },
  {
    "path": "projects/bonfida.md",
    "content": "---\nslug: \"bonfida\"\ndate: \"2020-04-03\"\ntitle: \"Bonfida\"\nlogline: \"Bonfida is an all in one platform for data-driven crypto traders built on top of Solana and Serum.\"\ncta: \"https://bonfida.com/\"\nlogo: /img/bonfida.svg\ncategory: DeFi, SPL, wallet\nstatus: live\nwebsite: https://bonfida.com\ntwitter: https://twitter.com/bonfida\ntelegram: https://t.me/bonfidatg\ndiscord: https://discord.gg/B4xzATxQHC\n---\n\nBonfida is a full product suite that bridges the gap between Serum, Solana, and the user. It aims to be a single source of data truth in the cryptocurrency industry, focusing on, among other things, exchange statistics, crypto company reviewing and scoring, and researching crypto trends.\n\nBonfida also handles an array of data aggregation and visualization which has proved popular among crypto traders who don’t typically have the means to parse this data themselves.\n"
  },
  {
    "path": "projects/boogle.md",
    "content": "---\nslug: \"boogle\"\ndate: \"2021-10-10\"\ntitle: \"Boogle\"\nlogline: \"Boutique NFT project built on Solana 100 total BOOGLEs in gen1.\"\ncta: \"https://boogle.holaplex.com/\"\nlogo: /img/boogle.png\ncategory: nft\nstatus: live\nwebsite: https://boogle.holaplex.com/\ntwitter: https://twitter.com/solBOOGLE\ndiscord: https://discord.com/invite/NRa6b4Mhkf\n---\n\nBoutique NFT project built on Solana 100 total BOOGLEs in gen1.\n"
  },
  {
    "path": "projects/boringprotocol.md",
    "content": "---\nslug: \"boringprotocol\"\ntitle: \"Boring Protocol\"\ndate: \"2021-07-07\"\nlogline: \"Boring Protocol is a decentralized VPN built on Solana.\"\ncta: \"https://boringprotocol.io\"\ncategory: infra, app\nlogo: /img/boringprotocol.svg\nstatus: live\nwebsite: https://boringprotocol.io/\ntwitter: https://twitter.com/BoringProtocol\ntelegram: https://t.me/tunnelgram\ndiscord: https://discord.com/invite/ZrdHfMWg2w\n---\n\nBoring is a decentralized virtual private network and peer to peer bandwidth market built on the Solana Network, providing economic incentive for node providers with transparent programs for privacy to network users.\n"
  },
  {
    "path": "projects/bossbullsclub.md",
    "content": "---\nslug: \"bossbullsclub\"\ndate: \"2021-11-14\"\ntitle: \"Boss Bulls Club\"\nlogline: \"An Ultra-Realistic 3D Generative NFT Collection on Solana.\"\ncta: \"https://www.bossbullsclub.com\"\nlogo: /img/bossbullsclub.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.bossbullsclub.com\ntwitter: https://twitter.com/BossBullsClub\ndiscord: https://discord.com/invite/zQQhHjj7Ng\n---\n\nOur priority is to ensure the ultra-realistic high quality of our NFTs. Every attribute passes through a detailed review process to make sure it matches our standards.\nSimilarly to how you stake crypto and earn rewards, you will be able to stake your BOSS BULL (e.g. lock it up for a certain period) in exchange for interest, which will be paid as our own Token. We’ll either implement our own solution or integrate with one — Honey Protocol.\nToken holders will enjoy the same benefits as BOSS BULLS NFT holders, plus some extras. Solana allows us to do so much because of the low fees. Our Solidity dev is quickly catching up on Solana and is thoroughly impressed by what can be done.\nOur 3D art will be used to commission high-quality, realistic action figures representing popular BOSS BULLS.\n"
  },
  {
    "path": "projects/bountyhunterspaceguild.md",
    "content": "---\nslug: \"bountyhunterspaceguild\"\ndate: \"2021-11-17\"\ntitle: \"Bounty Hunter Space Guild\"\nlogline: \"5,555 unique Bounty Hunters on Solana\"\ncta: \"https://bountyhunterspaceguild.com/\"\nlogo: /img/bountyhunterspaceguild.jpg\ncategory: nft\nstatus: building\nwebsite: https://bountyhunterspaceguild.com/\ntwitter: https://twitter.com/BountyHunterNFT\ndiscord: https://discord.gg/YPDJGKWMNX\n---\n\n5,555 unique Bounty Hunters on Solana\n"
  },
  {
    "path": "projects/bridgesplit.md",
    "content": "---\nslug: \"bridgesplit\"\ndate: \"2021-02-25\"\ntitle: \"Bridgesplit\"\nlogline: \"Financializing NFTs on Solana\"\ncta: \"https://www.bridgesplit.com\"\nlogo: /img/bridgesplit.png\ncategory: nft\nstatus: building\nwebsite: https://www.bridgesplit.com/\ntwitter: https://twitter.com/bridgesplit\n---\n\nMint and trade fractionalized digital assets\nUnlock liquidity and access to unique digital assets: Bridgesplit enables fractionalized ownership of the future.\n"
  },
  {
    "path": "projects/brz.md",
    "content": "---\nslug: \"brz\"\ndate: \"2020-04-03\"\ntitle: \"BRZ\"\nlogline: \"The Brazilian Real (BRL) backed stablecoin is now supported on the Solana blockchain.\"\ncta: \"https://www.brztoken.io\"\nlogo: /img/brz.svg\ncategory: stablecoin, spl\nstatus: live\naddress: \"https://explorer.solana.com/address/FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD\"\ntwitter: https://twitter.com/BrzToken\nmedium: https://medium.com/@BrzToken\nreddit: https://www.reddit.com/user/BRZtoken\n---\n\nThe BRZ stablecoin with a 1:1 peg to Brazilian Real. BRZ operates as a native asset on Solana.\n\nThe BRZ Cryptocurrency Board works with reputable Tellers around the world that buy and sell BRZ Tokens. After passing KYC/AML checks users will be able to purchase, transfer and sell BRZ tokens across multiple platforms.\nSales of BRZ Tokens for fiat currencies are performed according to the Teller's local jurisdiction procedures and regulations.\n\nAt the request of Transfero Swiss, creator of BRZ Token, the Law Firm, CMT - Carvalho, Machado and Timm Advogados, prepared a document that proves available funds to face existing assets, more specifically BRZ Token, the Brazilian stablecoin paired in Reais.\n"
  },
  {
    "path": "projects/brzfund.md",
    "content": "---\nslug: \"brzeco\"\ndate: \"2021-05-12\"\ntitle: \"BRZ Ecosystem Fund\"\nlogline: \"BRZ’s regional fund is supporting Brazilian and LATAM startups and projects building impactful solutions on top of Solana's ecosystem.\"\nlogo: /img/brz.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-secures-60m-fund-to-drive-growth-in-emerging-markets\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/brzeco.png\nstatus: building\n---\n\nBRZ, the largest stablecoin in Latin America, manages a $20m regional fund. The instrument is targeting Brazilian and LATAM startups and projects building impactful solutions on top of Solana's ecosystem. The investment thesis will take into account the potential for real-world use cases, with a focus on financial applications that can bring innovation to developing economies in Latin America. Initiatives that aim to integrate LATAM with the global financial system are welcome, preferably to the areas of lending, trade finance, and payments. The fund will also consider projects based outside of the continent, as long as the team shows clear connection to Brazil. Solutions that enable further use of the BRZ stablecoin are a plus.\n"
  },
  {
    "path": "projects/bubl.md",
    "content": "---\nslug: \"bubl\"\ntitle: \"Bubl\"\ndate: 2021-07-25\nlogline: \"Bubl is a decentralized event hosting and ticketing platform built on the Solana blockchain\"\ncategory: app\ncta: https://www.bublhost.com\nlogo: /img/bubl.png\nstatus: live\nwebsite: https://www.bublhost.com/\ntwitter: https://twitter.com/bublhost\ntelegram: http://t.me/bublhost\n---\n\nDecentralized event hosting and ticketing. Creating events and buying tickets is now safer and faster.\n"
  },
  {
    "path": "projects/burnt.md",
    "content": "---\nslug: \"burnt\"\ndate: \"2021-05-11\"\ntitle: \"Burnt Finance\"\nlogline: \"Burnt Finance is a fully decentralized auction protocol on Solana.\"\ncta: \"https://burnt.com/\"\ncategory: app\nlogo: /img/burnt.svg\nstatus: building\nwebsite: https://burnt.com/\ntwitter: https://twitter.com/BurntFinance\ntelegram: https://t.me/burntfinance\ndiscord: https://discord.com/invite/burntfinance\n---\n\nBurnt Finance is a Solana-based non-fungible token (NFT) minting and auction protocol. Burnt provides an intuitive interface for minting new assets, such as synthetics, NFTs, and new digital assets. In less than a few minutes, a user can mint a new asset and setup an entirely decentralized auction.\n"
  },
  {
    "path": "projects/caballo.md",
    "content": "---\nslug: \"CaballoSWAP\"\ndate: \"2021-10-30\"\ntitle: \"Caballo SWAP\"\nlogline: \"A DEX That Supports Burn Mechanism Crypto. We offer best-price swaps with the aim of making DeFi accessible to all.\"\ncta: \"https://www.caballogroup.com/\"\nlogo: /img/caballo.svg\ncategory: DeFi, AMM, exchange\nwebsite: https://www.caballogroup.com/\ntwitter: https://twitter.com/CaballoSwap \ntelegram: https://t.me/CaballoSwap\ndiscord: https://discord.gg/2uK8sG5H\nstatus: live\n---\n\nA DEX That Supports Burn Mechanism Crypto. We offer best-price swaps with the aim of making DeFi accessible to all.\n\n"
  },
  {
    "path": "projects/camocrocsnft.md",
    "content": "---\nslug: \"camocrocsnft\"\ndate: \"2021-11-13\"\ntitle: \"Camo Crocs NFT\"\nlogline: \"Camo Crocs is landing on SOLANA soon!\"\ncta: \"https://camocrocsnft.io/\"\nlogo: /img/camocrocsnft.png\ncategory: nft\nstatus: building\nwebsite: https://camocrocsnft.io/\ntwitter: https://twitter.com/camocrocsnft\ndiscord: https://discord.gg/kPrANwezF3\n---\n\nThis started as a fun educational project to learn the pieces of the NFT puzzle and quickly morphed into 9700 unique digital collectibles ready to mint. At first, \nthis was going to be a set of cutesy looking crocodiles that can camouflage into different environments, blend into society by taking on the traits from different cultures. Then our awesome artist hundredboys joined the team.\n\nWhen we looked at his concept art, we realized it would be a sin to not bring this to life and let our NFT community share the experience. So our cutesy crocs turned into gritty, badass crocs with extreme visual details, \nwhile keeping their camouflaging abilities intact. We're thrilled to share the making of awesome with you. \n"
  },
  {
    "path": "projects/cappucino.md",
    "content": "---\nslug: \"cappuccino\"\ndate: \"2021-03-22\"\ntitle: \"Cappuccino\"\nlogline: \"The Cappuccino Stablecoin is pegged to the price of a NY cappuccino.\"\ncta: https://github.com/johnnieskywalker/cappuccino-coffeehouse\nlogo: /img/cappuccino.svg\ncategory: explorer, DeFi\nstatus: live\n---\n\nCappuccino STABLECOINS are pegged to the price of a cappuccino in NY from Numbeo API. This is a trustless stablecoin which guarantees that you will be able to buy a cappuccino. You can borrow as much Cappuccino as there are cappuccinos in New York minus collateral ratio. When you keep your collateral ratio, you will be able to deposit your Cappuccino into a cup and take back your deposited SOL. So if price of SOL inflates, you will be able to borrow more CAP tokens, or give them back to the cup and receive deposited SOL. If the price of SOL deflates, your deposit will be worth less then your CAP + c-ratio, you won't be able to take back deposited SOL. The program will take it, however you will still be able to enjoy your CAPPUCCINO!\n"
  },
  {
    "path": "projects/carcollective.md",
    "content": "---\nslug: \"carcollective\"\ndate: \"2021-10-24\"\ntitle: \"Car Collective\"\nlogline: \"Car Collective is the FIRST NFT project to produce pixelated automotive artwork at a large-scale, driving car culture into the NFT space.\"\ncta: \"https://www.carcollective.io\"\nlogo: /img/carcollective.png\ncategory: nft\nstatus: building\nwebsite: https://www.carcollective.io\ntwitter: https://twitter.com/_CarCollective\ndiscord: https://discord.com/invite/vs9qhgfnSP\n---\n\nCar Collective is the FIRST NFT project to produce pixelated automotive artwork at a large-scale, driving car culture into the NFT space.\nThere will be 2415 hand designed NFT collectibles, which will be created on the Solana Blockchain.\nEach piece has been designed by our very own in-house artist, who has had a passion for designing cars since he could hold a pencil.\nEvery pixel and choice of colour shading has been\nmeticulously placed to characterise a refined, detailed and unique representation of the most iconic vehicles of our time and beyond.\n"
  },
  {
    "path": "projects/catchking.md",
    "content": "---\nslug: \"catchking\"\ndate: \"2021-10-17\"\ntitle: \"CatchKing\"\nlogline: \"The CatchKing Explorers are 5555 randomly generated NFTs.\"\ncta: \"https://www.catchking.io\"\nlogo: /img/catchking.png\ncategory: nft, game\nstatus: live\nwebsite: https://www.catchking.io\ntwitter: https://twitter.com/catch_king\ndiscord: https://discord.gg/Dde5e8fEzt\n---\n\nCatchKing is an in-development top-down, roguelike, collect-a-thon RPG feautring crisp pixel graphics that has inspired our new line of NFTs. The CatchKing Explorers are 5555 randomly generated NFTs coming soon to the Solana Blockchain.\n"
  },
  {
    "path": "projects/cato.md",
    "content": "---\nslug: \"cato\"\ndate: \"2021-10-14\"\ntitle: \"CATO\"\nlogline: \"CATO is a Serum-based DEX and Solana's first CAT MEME token.\"\ncta: \"https://www.catodex.com\"\nlogo: /img/cato.png\ncategory: app, dex, tools\nstatus: live\nwebsite: https://www.catodex.com\ntwitter: https://twitter.com/SolanaCATO\ntelegram: https://t.me/SolanaCATO\ndiscord: https://discord.com/invite/7yUx6jXZtS\n---\n\nCATO token started as the first CAT Meme token on Solana. 19417 CATO tokens were airdropped to 7000+ early supporters on twitter. CATO token market price at token launch was 0.0001$ . CATO grew overtime with the support of community.\nLater on CATO made an advance Serum Based DEX on Solana which helped the traders to get info like holders, liquidity, mint address, token website, supply and volume data being parsed by Solana Beach API.\nCATO made this DEX for the community as at that time people were facing problems to find new tokens on Solana with all the necessary info consolidated at one place.\nLater on we moved towards building the first android app which will eliminate the problem of hoping into different discord servers to know more about the project and asking around the market cap of tokens as we have created the new CATO APP which compiles all the needed information of the tokens native to Solana.\n"
  },
  {
    "path": "projects/catpunk.md",
    "content": "---\nslug: \"catpunk\"\ndate: \"2021-11-11\"\ntitle: \"CatPunk NFT\"\nlogline: \"Where NFT utilities meet high-quality 3D art. A METAVERSE project on SOLANA\"\ncta: \"https://mint.catpunk.net/\"\nlogo: /img/catpunk.jpg\ncategory: nft\nstatus: building\nwebsite: https://mint.catpunk.net/\ntwitter: https://twitter.com/ZodiLabOfficial\n---\n\nWhere NFT utilities meet high-quality 3D art. A METAVERSE project on SOLANA\n"
  },
  {
    "path": "projects/certify.md",
    "content": "---\nslug: \"certify\"\ndate: \"2020-09-09\"\ntitle: \"Certify\"\nlogline: \"Rapid and scalable blockchain certification platform, built with Solana.\"\ncta: \"https://certify.someshkar.com/\"\nlogo: /img/certify.png\ncategory: nft, app, tools\nstatus: live\nwebsite: https://certify.someshkar.com/\n---\n\nCertify is a certification platform that allows the user to simply fill in details into one of our pre-built certificate templates, or design your own from scratch and automatically turns them into on-chain NFTs.\n"
  },
  {
    "path": "projects/chaincrunch.md",
    "content": "---\nslug: \"chaincrunch\"\ndate: \"2021-11-07\"\ntitle: \"ChainCrunch\"\nlogline: \"The go to place for on-chain data for Solana.Providing APIs, analytics, and insights for developers, investors, and traders.\"\ncta: \"https://chaincrunch.cc\"\nlogo: /img/chaincrunch.jpg\ncategory: app, tools\nstatus: building\nwebsite: https://chaincrunch.cc\ntwitter: https://twitter.com/chain_crunch\n---\n\nThe go to place for on-chain data for Solana.Providing APIs, analytics, and insights for developers, investors, and traders.\n"
  },
  {
    "path": "projects/chainlink.md",
    "content": "---\nslug: \"chainlink\"\ndate: \"2021-10-15\"\ntitle: \"Chainlink\"\nlogline: \"Chainlink is an Oracle protocol that can be used for trading binary options and is capable of price updates every 400ms with Solana's architecture, with developers using ChainLink to build DeFi assets and marketplaces.\"\ncta: \"https://chain.link/\"\nlogo: /img/chainlink.svg\ncategory: oracle\nstatus: live\nwebsite: https://chain.link/\ntwitter: https://twitter.com/chainlink\ntelegram: https://t.me/chainlinkofficial\ndiscord: https://discord.gg/aSK4zew\n---\n\nChainlink is a decentralized oracle network that currently provides decentralization at both the oracle and data source level. By using multiple independent Chainlink nodes, the user can defend against one oracle being a single point of failure. Similarly, using multiple data sources for sourcing market prices, the user can defend against one data source being a single source of truth.\n"
  },
  {
    "path": "projects/chainmyth.md",
    "content": "---\nslug: \"chainmyth\"\ndate: \"2021-11-18\"\ntitle: \"Chain Myth\"\nlogline: \"5v5 FPS game with MOBA mechanics, featuring character NFTs! Tokenised 5K 3D characters! Built on Solana.\"\ncta: \"https://chainmyth.io/\"\nlogo: /img/chainmyth.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://chainmyth.io/\ntwitter: https://twitter.com/ChainMyth\ntelegram: https://t.me/chainmythofficial\ndiscord: https://discord.gg/Pss36esdVU\n---\n\nChain Myth is a 5v5 first-person hero shooter game with MOBA mechanics and a play-to-earn model.\nThe game's theme is inspired by Indian culture, with the superpowers of their Gods and Goddesses’ as the main design points behind ChainMyth’s characters.\n\nCharacters are tokenized as NFTs and introduced to unlock all the 14 gods and goddesses in-game. Stake your digital asset, unlock the heroes and weapons, \nand enter the battle arena. Fees for ranked games and hosted tournaments will be distributed to NFT owners.\n"
  },
  {
    "path": "projects/chainvote wiki.md",
    "content": "---\nslug: \"chainvotewiki\"\ndate: \"2021-03-22\"\ntitle: \"Chainvote Wiki\"\nlogline: \"Chainvote is a DeFi voting app for corporate governance.\"\ncta: https://github.com/bchainify/chainvote-solana/wiki\nlogo: /img/chainvote.svg\ncategory: explorer, DeFi\nstatus: building\n---\n\nChainvote's goal is to build an environment of trust, transparency and accountability on Solana’s fast, secure and censorship-resistant blockchain platform.\n\nUsing a Solana smart contract, the Corporate Secretary is able to publish an agenda with proposals to bring before the board and voting members. When publishing the proposal, the smart contract will send voting members the SOL voting token(s) to their wallet, notifying them of the impending vote.\n\nUsing the Chainvote app Voting, members can see the proposals and use SOL token to cast their vote ((1) SOL token = (1) vote).\n\nINTERACTIVE: Corporate Governance app's front-end design interacts with Solona's fast, low-fee, scalable and censorship-resistant blockchain IMMUTABLE: Strong identity management, secure and private data management stored on-chain with a transparent, immutable audit trail INNOVATIVE: Replacing antiquated procedures, increasing participation, and significantly reducing costs\n"
  },
  {
    "path": "projects/chickentribe.md",
    "content": "---\nslug: \"chickentribe\"\ndate: \"2021-10-31\"\ntitle: \"Chicken Tribe\"\nlogline: \"ChickenTribe is a project built on #Solana with 10k unique NFTs.\"\ncta: \"https://www.magiceden.io/marketplace/chicken_tribe\"\nlogo: /img/chickentribe.jpg\ncategory: nft\nstatus: live\nwebsite: https://chickentribe.com/\ntwitter: https://twitter.com/ChickenTribe\ndiscord: https://discord.com/invite/KyjfD4nx7r\n---\n\nChicken Tribe NFTs are a collection of programmatically, randomly generated NFTs on the Solana blockchain. The 1st generation consists of 10,000 randomly assembled Chickens. Each Chicken is comprised of unique traits and the possibilities are endless!\n"
  },
  {
    "path": "projects/chikin.md",
    "content": "---\nslug: \"chikin\"\ndate: \"2021-10-03\"\ntitle: \"Chikin\"\nlogline: \"Disrupting the chicken society through decentralization.\"\ncta: \"https://chikin.run/\"\nlogo: /img/chikin.svg\ncategory: app, exchange, nft\nstatus: live\nwebsite: https://chikin.run/\ntwitter: https://twitter.com/chikindev\ndiscord: https://discord.gg/rsQQsAcAn7\n---\n\nMore than 25 billion chickens alive in the world, and yet none of them have access to basic financial services.\nThe CHIKIN project was born in the head of an angry serama chicken, and aims to return chickens to their former glory when they were mighty dinosaurs.\n"
  },
  {
    "path": "projects/chimpfight.md",
    "content": "---\nslug: \"chimpfight\"\ndate: \"2021-10-31\"\ntitle: \"Chimp Fight\"\nlogline: \"A collection of 5,000 uniquely generated chimpanzee fighting for fun, profit and bragging rights.\"\ncta: \"https://twitter.com/chimpfight\"\nlogo: /img/chimpfight.png\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/chimpfightgame\ndiscord: https://discord.gg/zJ9wQYzBsB\n---\n\nA collection of 5,000 uniquely generated chimpanzee fighting for fun, profit and bragging rights.\n"
  },
  {
    "path": "projects/chosenones.md",
    "content": "---\nslug: \"chosenones\"\ndate: \"2021-11-07\"\ntitle: \"Chosen Ones\"\nlogline: \"Chosen Ones on Solana - FREE AIRDROP - NO MINT - TOTAL SUPPLY: 5493\"\ncta: \"https://twitter.com/ChosenOnesNFT\"\nlogo: /img/chosenones.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/ChosenOnesNFT\n---\n\nChosen Ones on Solana - FREE AIRDROP - NO MINT - TOTAL SUPPLY: 5493\n"
  },
  {
    "path": "projects/chubbycorgis.md",
    "content": "---\nslug: \"chubbycorgis\"\ndate: \"2021-10-24\"\ntitle: \"Chubby Corgis\"\nlogline: \"10,000 Chubby Corgis NFT splooting around on the Solana blockchain.\"\ncta: \"https://www.magiceden.io/marketplace/chubby_corgis\"\nlogo: /img/chubbycorgis.jpg\ncategory: nft\nstatus: live\nwebsite: https://chubbycorgis.co\ntwitter: https://twitter.com/ChubbyCorgisNFT\ndiscord: https://discord.com/invite/ErjryjdGkw\n---\n\nChubby Corgis are a pack of the cutest, hand-drawn, algorithmically generated NFTs splooting around on the Solana blockchain. Only 10,000 of these doggies will ever exist. Each with six attributes from over 250 unique traits, there is bound to be a corgo that speaks to you. Several unique Chubby Corgis will include an additional surpise! Lovingly inspired by our very own chubby corgi.\n"
  },
  {
    "path": "projects/circlepod.md",
    "content": "---\nslug: \"circlepod\"\ndate: \"2020-07-23\"\ntitle: \"Circlepod\"\nlogline: \"Circlepod: Next generation media protocol #solana, #nfts, #metaverse ecosystem, special media protocol guide players to experience the new world. $CPX\"\ncta: \"https://www.circlepod.app/\"\nlogo: /img/circlepod.svg\ncategory: nft, metaplex, app\nstatus: building\nwebsite: https://www.circlepod.app/\ntwitter: https://twitter.com/CirclepodP\ntelegram: https://t.me/circlepod\ndiscord: https://discord.gg/4rTM9tRV8s\n---\n\nCirclepod is a global application, the goal is to build a media metaverse ecology, through our unique media agreement to lead players into a new experience. Allow Podcaster to interact directly with the audience and get paid directly. We encourage and accelerate the change and development of the global digital creation, so that every piece of creation can get its due value. Create more interactivity and entertainment. Connect fans and value through blockchain, and create a good copyright and subscription ecosystem through data and AI.\n\n[Read More](https://docs.circlepod.app/docs/about/intro)\n"
  },
  {
    "path": "projects/citadel.md",
    "content": "---\nslug: \"citadel\"\ndate: \"2021-11-03\"\ntitle: \"Citadel\"\nlogline: \"The first desktop client tailor-made for Solana protocols.\"\ncta: \"https://twitter.com/project_citadel\"\nlogo: /img/citadel.jpg\ncategory: wallet\nstatus: building\ntwitter: https://twitter.com/project_citadel\ndiscord: https://discord.com/invite/VpbCBr6bQ7\n---\n\nUnstoppable protocols deserve unstoppable access.\n\nThe first desktop client tailor-made for #Solana protocols.\n"
  },
  {
    "path": "projects/civic.md",
    "content": "---\nslug: \"civic\"\ndate: \"2020-04-03\"\ntitle: \"Civic\"\nlogline: \"Civic has partnered with Solana to integrate their decentralised identity solution, targeted at providing low-cost, scalable identity management in emerging economies that lack the infrastructure.\"\ncta: \"https://www.civic.com/\"\nlogo: /img/civic.svg\ncategory: app, governance\nstatus: building\nwebsite: https://www.civic.com/\ntwitter: https://twitter.com/civickey\ntelegram: https://t.me/civicplatform\ndiscord: https://discord.com/invite/MWmhXauJw8\n---\n\nCivic is a decentralized identity ecosystem enabling identity verification in a safe, cost-effective way. Using this digital identification platform, users can create their own virtual identity and store it together with personal information on their device.\n"
  },
  {
    "path": "projects/civiliansnft.md",
    "content": "---\nslug: \"civiliansnft\"\ndate: \"2021-11-14\"\ntitle: \"Civilians NFT\"\nlogline: \"Uniquely Generated 4567 High Quality 4K Civilians NFT on Solana network\"\ncta: \"https://civiliansnft.com/\"\nlogo: /img/civiliansnft.jpg\ncategory: nft\nstatus: building\nwebsite: https://civiliansnft.com/\ntwitter: https://twitter.com/CiviliansNFT\ndiscord: https://discord.gg/civiliansnft\n---\n\nUniquely Generated 4567 High Quality 4K Civilians NFT on Solana network\n"
  },
  {
    "path": "projects/cofre.md",
    "content": "---\nslug: \"cofre\"\ndate: \"2021-11-03\"\ntitle: \"Cofre\"\nlogline: \"The safest (and slickest) place in Solana for peer-to-peer NFT swaps. Live on devnet, get a glowing NFT to test our platform out while they are available\"\ncta: \"https://cofre.so/#/\"\nlogo: /img/cofre.jpg\ncategory: nft\nstatus: building\nwebsite: https://cofre.so/#/\ntwitter: https://twitter.com/Cofre_HQ\ndiscord: https://discord.gg/AjBbjKqYFM\n---\n\nThe safest (and slickest) place in Solana for peer-to-peer NFT swaps. Live on devnet, get a glowing NFT to test our platform out while they are available\n"
  },
  {
    "path": "projects/cogonuts.md",
    "content": "---\nslug: \"cogonuts\"\ndate: \"2021-11-18\"\ntitle: \"CoGoNuts\"\nlogline: \"6001 cute and unique coconuts with merging powers\"\ncta: \"https://getcogonuts.com/\"\nlogo: /img/cogonuts.jpg\ncategory: nft\nstatus: building\nwebsite: https://getcogonuts.com/\ntwitter: https://twitter.com/CoGoNuts_SOL\ndiscord: https://discord.gg/efACqGV2PM\n---\n\n6001 cute and unique coconuts with merging powers\n"
  },
  {
    "path": "projects/coin98.md",
    "content": "---\nslug: \"coin98\"\ndate: \"2020-04-03\"\ntitle: \"Coin98\"\nlogline: \"Coin98 is a non-custodial crypto wallet and payments gateway that supports SOL and SPL tokens.\"\ncta: \"https://coin98.app/\"\nlogo: /img/coin98.png\ncategory: wallet, SPL\nstatus: live\nwebsite: https://coin98.app/\ntwitter: https://twitter.com/coin98_wallet\ntelegram: https://t.me/coin98_wallet\n---\n\nCoin98 is a non-custodial crypto wallet that provides support for SOL and SPL tokens built on the Solana network. Coin98 also offers payment gateway features and crypto on ramp capabilities.\n"
  },
  {
    "path": "projects/coin98fund.md",
    "content": "---\nslug: \"coin98fund\"\ndate: \"2020-04-03\"\ntitle: \"Coin98 Ecosystem Fund\"\nlogline: \"The Coin98 Ecosystem Fund focuses on incubating and investing in highly potent, early-stage DeFi protocols and applications on Solana across Southeast Asia.\"\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2: \"https://coin98insights.com/coin98-solana-ecosystem-fund\"\ncta2text: \"Fund Announcement\"\nlogo: /img/coin98.png\ncategory: fund\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/coin98eco.png\nstatus: live\n---\n\nCoin98 Ventures — the investment arm of Coin98 Finance, a blockchain-focused software company in Vietnam — announced an ecosystem fund of up to $5 million in partnership with the Solana Foundation. The new fund was established in December 2020 to nurture the Solana developer ecosystem in Southeast Asia, with a particular focus on Vietnam. The fund will be deployed over the next three years, concluding in January 2024.\n\nApart from financing, projects are provided with Coin98 ecosystem’s resources accumulated over the years, industry connections, strategic advisory, and other extensive support to build meaningful products.\n"
  },
  {
    "path": "projects/coinbase.md",
    "content": "---\nslug: \"coinbase\"\ndate: \"2021-05-20\"\ntitle: \"Coinbase\"\nlogline: \"Coinbase listed SOL in July of 2021.\"\ncta: \"https://www.coinbase.com/price/solana\"\nlogo: /img/coinbase.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/coinbase/\n---\n\nCoinbase listed SOL in July of 2021. Since our listing, multiple trading pairs have been added and margin trading is available for eligible users.\n"
  },
  {
    "path": "projects/coindcx.md",
    "content": "---\nslug: \"coindcx\"\ndate: \"2020-04-03\"\ntitle: \"CoinDCX\"\nlogline: \"CoinDCX maintains multiple SOL spot trading pairs.\"\ncta: \"https://coindcx.com/\"\nlogo: /img/coindcx.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/CoinDCX\n---\n\nCoinDCX is an exchange that has listed SOL, Solana's native currency.\n"
  },
  {
    "path": "projects/coindcxfund.md",
    "content": "---\nslug: \"coindcxeco\"\ndate: \"2021-05-12\"\ntitle: \"CoinDCX Ecosystem Fund\"\nlogline: \"The CoinDCX ecosystem fund is supporting the next generation of Web3 developers in India interested in learning and building on the Solana Network.\"\nlogo: /img/coindcx.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-secures-60m-fund-to-drive-growth-in-emerging-markets\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/dcxeco.png\nstatus: building\n---\n\nCoinDCX, one of India's largest cryptocurrency exchanges and liquidity aggregators, launched a strategic ecosystem fund with the Solana Foundation. Up to $20M in capital is used for growing the Solana Ecosystem in India, as well as investing in projects building new Web3 products in multiple verticals, including DeFi, NFT marketplaces, infrastructure solutions, wallets, exchanges, and tooling.\n\nThe CoinDCX team will assist in technical guidance, along with management and support for product strategy and community building.\n\nThe quality of the team and the novelty of their idea will be the key metrics for assessing projects. Project teams may be distributed, but in order to qualify for the CoinDCX India Ecosystem Fund they must have a presence in India (headquarters, corporate structure, employee, or otherwise).\n"
  },
  {
    "path": "projects/coinex.md",
    "content": "---\nslug: \"coinex\"\ndate: \"2020-04-03\"\ntitle: \"CoinEx\"\nlogline: \"CoinEx listed the SOL asset in early 2021.\"\ncta: \"https://coinex.com\"\nlogo: /img/coinex.svg\ncategory: exchange\nstatus: live\ntwitter: https://twitter.com/coinexcom\nmedium: https://coinex.medium.com/\nreddit: https://www.reddit.com/r/Coinex/\n---\n\nCoinEx is a Chinese based cryptocurrency exchange listed SOL in early 2021.\n"
  },
  {
    "path": "projects/coinmeca.md",
    "content": "---\nslug: \"coinmeca\"\ndate: \"2021-10-16\"\ntitle: \"Coinmeca\"\nlogline: \"Innovative DEX that provides efficient asset management with automated liquidity distribution based on AMM.\"\ncta: \"https://coinmeca.net/\"\nlogo: /img/coinmeca.svg\ncategory: \"amm, dex, exchange, tools\"\nstatus: building\nwebsite: https://coinmeca.net/\ntwitter: https://twitter.com/coinmeca\ntelegram: https://t.me/coinmeca\ndiscord: https://discord.com/invite/EX4JXMGAGB\n---\n\nCoinmeca is a DEX (Decentralized Exchange) with the mission to solve the problem of CEX (Centralized Exchange) and Other Ethereum-based DEX through aiming to process all transactions on-chain through the Solana Blockchain. With Solana Wormhole (Bridge), Coinmeca aims to present faster transactions and lower transaction costs associated with attached networks such as Ethereum.\n\nThe four components of Coinmeca infrastructure are followed:\n\n1. Exchange (On-chain Tx)\n2. Vault (On-chain liquidity provision & staking)\n3. Asset (Asset Management)\n4. P2P Transfer (Transfer of heterogeneous currency between individuals)\n\nMeca, the native utility token of Coinmeca, is rewarded to community in proportion of usage concentration. On top of contributing to wider implementation of Solana ecosystem, Coinmeca envisions to be the cross-point of fiat on/off ramp infrastructure with services including DEX Pool, Bundled P2P Transfer, and Payment Lending.\n"
  },
  {
    "path": "projects/colorshards.md",
    "content": "---\nslug: \"colorshards\"\ndate: \"2021-10-21\"\ntitle: \"Color Shards\"\nlogline: \"Color Shards is a limited NFT collection featuring 1000 colors from the infinite color universe.\" \ncta: \"https://colorshards.io\"\nlogo: /img/colorshards.png\ncategory: nft\nstatus: live\nwebsite: https://colorshards.io\ntwitter: https://twitter.com/colorshards\ntelegram: https://t.me/colorshardsNFT\ndiscord: https://discord.com/invite/AV8UemjJ54\n---\n\nColor Shards is a limited collection of 1000 digital artworks with proof of ownership stored on the Solana Blockchain.  Each artwork is one of a kind and is algorithmically generated from a single hexadecimal triplet.  The autonomous system generates random geometries and independently selects complementary colors from the original triplet.\n\n"
  },
  {
    "path": "projects/coolbeans.md",
    "content": "---\nslug: \"coolbeans\"\ndate: \"2021-10-02\"\ntitle: \"Cool Beans\"\nlogline: \"5000 confused beans who've somehow made their way into the metaverse on Solana.\"\ncta: \"https://coolbeans.space/\"\nlogo: /img/coolbeans.png\ncategory: nft\nstatus: live\nwebsite: https://coolbeans.space/\ntwitter: https://twitter.com/CoolBeansNFT\ndiscord: http://discord.gg/3BqazcpXeB\n---\n\n5000 confused beans who've somehow made their way into the metaverse. Only on Solana.\n"
  },
  {
    "path": "projects/coollama.md",
    "content": "---\nslug: \"coollama\"\ndate: \"2021-11-07\"\ntitle: \"Coollama\"\nlogline: \"Coollama Gang is an NFT collection with a total of 3,333 unique and randomly-generated llamas living on Solana.\"\ncta: \"https://coollamagang.com/\"\nlogo: /img/coollama.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://coollamagang.com/\ntwitter: https://twitter.com/CoollamaGangNFT\ndiscord: https://discord.com/invite/Zymu7r2u7w\n---\n\nOur goal is to create a true community-based story game on the Solana blockchain, with deflationary and rewards mechanism.\n\n- 30% Royalties back to holders + Another 30% to community wallet\n- Biggest Mint Raffle on Solana of over $40000 in giveaways\n- First 100 Mints of public sale are completely free\n"
  },
  {
    "path": "projects/coolsalamanders.md",
    "content": "---\nslug: \"coolsalamanders\"\ndate: \"2021-11-18\"\ntitle: \"CoolSalamanders\"\nlogline: \"3333 Cool Salamanders\"\ncta: \"https://www.coolsalamanders.io/\"\nlogo: /img/coolsalamanders.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.coolsalamanders.io/\ntwitter: https://twitter.com/coolsalamanders\ndiscord: https://discord.com/invite/79cpnmtKPU\n---\n\n3333 Cool Salamanders\n"
  },
  {
    "path": "projects/cope.md",
    "content": "---\nslug: \"cope\"\ndate: \"2021-10-16\"\ntitle: \"COPE\"\nlogline: \"COPE is a next level interactive Leaderboard-Ecosystem on Solana.\"\ncta: \"https://unlimitedcope.com\"\nlogo: /img/cope.svg\ncategory: app, game\nstatus: live\nwebsite: https://unlimitedcope.com\ntwitter: https://twitter.com/unlimitedcope\ndiscord: https://discord.com/invite/unlimitedcope\n---\n\nCOPE is a two-phased project: Phase 1 of COPE seeks to analyze trader weaknesses retrospectively based on trader calls made about crypto markets. Top Call Makers are evaluated based on their call accuracy which, along with other parameters, results in a COPE score. The top 100 Call Makers are ranked by their COPE score and indexed. Once a consistent list of the top 100 has been generated after the monthly 'reformation', the introduction of new Top Call Makers into the index provides a framework for refreshed investment strategies based on accurately measured trader calls, which leads to phase 2.\n"
  },
  {
    "path": "projects/coralreef.md",
    "content": "---\nslug: \"coralreef\"\ndate: \"2021-10-15\"\ntitle: \"CoralReef\"\nlogline: \"Open NFT marketplace, built on Solana, powered by Metaplex.\"\ncta: \"https://twitter.com/CoralReefNFT\"\nlogo: /img/Coralreef.jpg\ncategory: nft\nstatus: building\nwebsite: https://coralreef.art/#/temp\ntwitter: https://twitter.com/CoralReefNFT\n---\n\nOpen NFT marketplace, built on Solana, powered by Metaplex.\n"
  },
  {
    "path": "projects/crateprotocol.md",
    "content": "---\nslug: \"crateprotocol\"\ndate: \"2021-10-29\"\ntitle: \"CrateProtocol\"\nlogline: \"The standard for tokenized baskets on Solana.\"\ncta: \"https://twitter.com/CrateProtocol\"\nlogo: /img/crateprotocol.jpg\ncategory: defi\nstatus: building\nwebsite: https://crate.so\ntwitter: https://twitter.com/CrateProtocol\ndiscord: https://chat.crate.so\n---\n\nCrate Protocol allows anyone to create, manage, and trade a tokenized basket of assets, which we refer to as a Crate. A Crate is always fully collateralized by its underlying assets.\nThe protocol will evolve to support advanced features, including automatic rebalancing based on set parameters.\n"
  },
  {
    "path": "projects/crazyapecoin.md",
    "content": "---\nslug: \"crazyapecoin\"\ndate: \"2021-11-13\"\ntitle: \"Crazy Ape\"\nlogline: \"$CAPE is a meme token & 2500 Crazy Ape NFTs with over 95+ unique attributes built on solana\"\ncta: \"https://crazyapecoin.com/\"\nlogo: /img/crazyapecoin.jpg\ncategory: nft\nstatus: live\nwebsite: https://crazyapecoin.com/\ntwitter: https://twitter.com/solcrazyape\ntelegram: https://t.me/solcrazyape\ndiscord: https://discord.gg/Uj2ZMAXfpC\n---\n\nCrazy Ape Coin is the next level of meme token. The combination of Solana, meme token, \nand Apes will turn Crazy Ape Coin into the most powerful meme token. Let’s build a planet for our own apes!\n"
  },
  {
    "path": "projects/crazydice.md",
    "content": "---\nslug: \"crazydice\"\ndate: \"2021-08-02\"\ntitle: \"CrazyDice\"\nlogline: \"A fair crypto dice game on Solana\"\ncta: \"https://www.crazydice.app/\"\nlogo: /img/crazydice.svg\ncategory: game\nstatus: live\nwebsite: https://www.crazydice.app/\ntwitter: https://twitter.com/CrazyDiceApp\ntelegram: https://t.me/crazydiceapp\n---\n\nCrazyDice is a decentralized game designed on Solana. You can easily play by simply placing Solana.\n"
  },
  {
    "path": "projects/crisis",
    "content": "---\nslug: \"crisis\"\ndate: \"2021-10-05\"\ntitle: \"crisishub.io\"\nlogline: \"Decentralized news sharing and data staking\"\ncta: \"https://crisishub.io/#tokenomics\"\nlogo: /img/crisishub-logo.png\ncategory: defi, social media, news sharing, privacy\nstatus: building\nWebsite: https://crisishub.io/\nTwitter: https://twitter.com/realcrisishub\nTelegram: https://t.me/crisishub\nDiscord: https://discord.gg/mm01#9502\n---\n\ncrisishub.io is a map of the world based on news events with a focus on conflicts and protests. We use our very own utility token \"crisis\" to pay our users for uploading data and utilize blockchain technology to fight censorship, discourage fake news and uphold user privacy.\n\n"
  },
  {
    "path": "projects/crlp.md",
    "content": "---\nslug: crlp\ndate: 2021-03-22\ntitle: Credit Risk Lending Protocol\nlogline: CRLP is a proof of concept of a cross-chain credit risk and lending protocol for under-collateralized, fixed rate and term loans, without KYC.\ncta: https://github.com/sidthekidder/solana-hackathon\nlogo: /img/crlp.svg\ncategory: DeFi\nstatus: closed\n---\n\nPOC of a cross-chain credit risk and lending protocol for under-collateralized, fixed rate and term loans, without KYC.\n"
  },
  {
    "path": "projects/crooks.md",
    "content": "---\nslug: \"crooks\"\ndate: \"2021-11-09\"\ntitle: \"The Crooks\"\nlogline: \"6000 Crooks in the Crookiverse on Solana Choose your family, fight for rewards\"\ncta: \"https://www.crooksnft.com\"\nlogo: /img/crooksnft.png\ncategory: nft\nstatus: live\nwebsite: https://www.crooksnft.com\ntwitter: https://twitter.com/CrooksNFT\ndiscord: https://discord.gg/crooks\n---\n\nCrooks are all about family. Choose to join one of 4 different Crook families. You'll compete against other Crook families in a series of recurring minigames for turf and loot. \nThe winning family each week wins 30% of trading royalties from a community wallet. Crooks are tightknit group, but you can forge even closer bonds with your family members.\n"
  },
  {
    "path": "projects/crowny.md",
    "content": "---\nslug: \"crowny\"\ndate: \"2021-05-11\"\ntitle: \"Crowny\"\nlogline: \"Crowny rewards users for engaging with their favorite brands--ensuring brands reach the right target audience--while protecting user privacy.\"\ncta: \"https://crowny.io/\"\ncategory: app\nlogo: /img/crowny.svg\nstatus: live\nwebsite: https://crowny.io/en/\ntwitter: https://twitter.com/crownyio/\ntelegram: https://t.me/crownyio\n---\n\nCrowny is a new advertising platform that will allow brands to effectively reach their target demographic. Users will be able to connect with their favorite brands through a smartphone application, without the risk of privacy breaches.\n"
  },
  {
    "path": "projects/cryowar.md",
    "content": "---\nslug: \"cryowar\"\ndate: \"2021-10-25\"\ntitle: \"Cryowar\"\nlogline: \"Real-time PvPvP blockchain NFT PlayToEarn game built on Solana and UnrealEngine\"\ncta: \"https://cryowar.com\"\nlogo: /img/cryowar.png\ncategory: game\nstatus: building\nwebsite: https://cryowar.com\ntwitter: https://twitter.com/CryowarDevs\ntelegram: https://t.me/cryowar\ndiscord: https://discord.com/invite/cryowar\nfacebook: https://www.facebook.com/cryowar/\n---\n\nNEXT-GEN BLOCKCHAIN MULTIPLAYER GAME\nJump right into battle and prove your valor in an action-packed mobile free-to-play 1v1v1 arena brawler.\n\nMULTIPLAYER NFT\nCRYOWAR is a real-time multiplayer PVP arena NFT game developed in Unreal Engine and on the Solana network.\n\nAMALGAM\nCryowar is an amalgam between traditional gaming experience and best practices of the blockchain world, DAO voting, NFT, and decentralized finance (DEFI).\n\nDEFLATIONARY\nA gaming ecosystem with deflationary mechanisms that integrates staking with gameplay, allowing RPG stakers to earn better rewards through increasing their in-game skill and experience levels.\n\nMULTI-BLOCKCHAIN MEDIEVAL METAVERSE\nOur endgame is the creation of a multi-blockchain Medieval Metaverse without boundaries\n\nFEATURING\nCROSS-PLATFORM MULTIPLAYER\n8 UNIQUE CHARACTERS\nSKILL-BASED GAMEPLAY\n"
  },
  {
    "path": "projects/crypto.md",
    "content": "---\nslug: \"crypto\"\ndate: \"2020-04-03\"\ntitle: \"Crypto.com\"\nlogline: \"Crypto.com has multiple SOL spot trading pairs, and allows users to purchase SOL through debit cards and bank transfers.\"\ncta: \"https://crypto.com\"\nlogo: /img/crypto.svg\ncategory: wallet, exchange\nstatus: live\n---\n\nOn August 6th, 2020, Crypto.com listed SOL.\n\nWith SOL added to the Crypto.com app, users can now purchase at true cost with no fees - credit card and bank transfer both supported.\n\nAs Crypto.com also offers a Visa Card, this adds additional utility to SOL as users can easily convert cryptocurrencies into fiat currencies and spend at over 60 million merchants globally.\n"
  },
  {
    "path": "projects/cryptogleeclub.md",
    "content": "---\nslug: \"cryptogleeclub\"\ndate: \"2021-11-18\"\ntitle: \"Crypto Glee Club\"\nlogline: \"2 character NFT platform with a Comic storyline & Comic series on Solana Blockchain\"\ncta: \"https://www.cryptogleeclub.io/\"\nlogo: /img/cryptogleeclub.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.cryptogleeclub.io/\ntwitter: https://twitter.com/cryptogleeclub\ndiscord: http://discord.gg/qTJbmtcRt5\n---\n\n2 character NFT platform with a Comic storyline & Comic series on Solana Blockchain\n"
  },
  {
    "path": "projects/cryptogreek.md",
    "content": "---\nslug: \"cryptogreeks\"\ndate: \"2021-10-05\"\ntitle: \"Crypto Greeks\"\nlogline: \"A limited collection of 10,000 generative ancient Greek busts on the Solana blockchain.\"\ncta: \"https://cryptogreeks.io/\"\nlogo: /img/greeks.png\ncategory: nft\nstatus: live\nwebsite: https://cryptogreeks.io/\ntwitter: https://twitter.com/SolCryptoGreeks\ndiscord: https://discord.com/invite/CryptoGreeks\n---\n\nA limited collection of 10,000 generative ancient Greek busts on the Solana blockchain.\n"
  },
  {
    "path": "projects/cryptohogs.md",
    "content": "---\nslug: \"cryptohogs\"\ndate: \"2021-11-18\"\ntitle: \"Crypto Hogs Gang\"\nlogline: \"Deflationary set of 5000 Hogs on Solana.\"\ncta: \"https://cryptohogs.art/\"\nlogo: /img/cryptohogs.jpg\ncategory: nft\nstatus: building\nwebsite: https://cryptohogs.art/\ntwitter: https://twitter.com/CryptoHogsNFT\ndiscord: https://discord.com/invite/MPVKtEb5AR\n---\n\nAt Crypto Hogs, we believe NFTs can change the world, and our goal is to join the NFT pioneers.\n\nWith the launch of our Genesis Collection featuring 5,000 Wild Crypto Hog NFTs, we will commence a journey of innovation. Our goal is to foster a community, utility and brand that will sustain a decentralised ecosystem capable of promoting a revolutionary new NFT metaverse; a place where enthusiasts can not only buy and sell Solana NFTs, but where new artists can launch their own collections without needing to write a single line of code.\n\nAnd it all starts with our uniquely generated collection of 4K, high resolution Crypto Hog NFTs. Please check out our White Paper and Roadmap for more details, and feel free to check out the rest of our website.\n\nIn the meantime, we welcome you to The Wild Hog Gang.\n"
  },
  {
    "path": "projects/cryptoknight.md",
    "content": "---\nslug: \"cryptoknight\"\ndate: \"2021-10-10\"\ntitle: \"CryptoKnights\"\nlogline: \"CryptoKnights are 9,999 Unique Knights Powered by Solana.\"\ncta: \"https://twitter.com/CryptoKnightSOL\"\nlogo: /img/cryptoknight.png\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/CryptoKnightSOL\ndiscord: https://discord.com/invite/TMmfJwDsKf\n---\n\nCryptoKnights are 9,999 Unique Knights Powered by Solana.\n"
  },
  {
    "path": "projects/cryptomafia.md",
    "content": "---\nslug: cryptomafia\ndate: \"2021-08-31\"\ntitle: Cryptomafia\nlogline: The world's favorite party game meets Solana. Reimagine classic Mafia with   real stakes games and exclusive NFT minting events.\ncta: \"https://cryptomafia.gg\"\nlogo: /img/cryptomafia.svg\ncategory: \"app, nft\"\nstatus: live\ntwitter: \"https://twitter.com/cryptomafiagg\"\n---\n\nCryptomafia is reimagining the world's favorite party game, Mafia, on blockchain by utilizing smart contracts to enable real-money wagered games and tournaments.\n\nInvite and play with your friends, or test your deductive skills on our ranked ELO ladder to win individual table pots and massive tournament prize pools.\n\nParticipate in our exclusive NFT mint events to obtain avatars to trade and use in-game, and look forward to the release of our governance token $MAFIA to help decide the future of the Cryptomafia metaverse.\n\nCryptomafia is proud to announce that we've chosen Solana as our blockchain protocol to build out the next generation of competitive social deduction games. Utilizing Solana's \"web-scale blockchain\" for blazing fast throughput and state of the art fraud detection algorithms to prevent collusion, we are eager to invent the next class of chess and poker level strategic games with you.\n\n<b>Discord</b>: https://discord.gg/M6TGxFfPxc </br>\n<b>Twitter</b>: https://twitter.com/cryptomafiagg </br>\n"
  },
  {
    "path": "projects/cryptoplease.md",
    "content": "---\nslug: \"cryptoplease\"\ndate: \"2021-03-22\"\ntitle: \"Cryptoplease\"\nlogline: \"CryptoPlease is a solution that puts the power of non-custodial P2P crypto spending and DeFi into the hands of everyone, through one smartphone app.\"\ncta: https://github.com/cryptoplease/protocol\nlogo: /img/cryptoplease.svg\ncategory: DeFi\nstatus: building\nwebsite: https://cryptoplease.com/\ntwitter: https://twitter.com/cryptopleasecom\n---\n\nLeveraging Solana's fast transaction time and low fees, CryptoPlease allows anyone to pay and accept crypto for goods and services with added DeFi bonus. All of this is made possible without the need to create a complicated wallet, and the blockchain element is seamless and invisible to the end users. CryptoPlease is the beginning of a true mass adoption of crypto and DeFi for investors, users, and merchants worldwide.\n"
  },
  {
    "path": "projects/cryptzeroart.md",
    "content": "---\nslug: \"cryptzeroart\"\ndate: \"2021-10-19\"\ntitle: \"CryptZeroArt\"\nlogline: \"CryptZero is a series of unique collectible avatars / personal profile NFTs with a horror genre theme on the Solana blockchain. \"\ncta: \"https://cryptzero.io/\"\nlogo: /img/cryptozeroart.png\ncategory: nft\nstatus: live\nwebsite: https://cryptzero.io/\ntwitter: https://twitter.com/CryptZeroArt\ndiscord: https://discord.com/invite/BHwjhwV7DH\n---\n\nCryptZero is a series of unique collectible avatars / personal profile NFTs with a horror genre theme on the Solana blockchain.\n"
  },
  {
    "path": "projects/crystal.md",
    "content": "---\nslug: \"crystal\"\ndate: \"2021-09-26\"\ntitle: \"Crystal\"\nlogline: Crystal Project is an ecosystem product being developed in Solana Blockchain with a focus on Gaming and NFTs.\ncta: \"https://solcry.io/\"\nlogo: /img/crystal.png\ncategory: dex, nft, Dapp, game\nstatus: building\nwebsite: https://solcry.io/\ntwitter: https://twitter.com/sol_crystal_io\ntelegram: https://t.me/sol_cry\ndiscord: https://discord.com/invite/ghnnPvQNgS\n---\n\nWe aim to build an open source cross platform game supporting smart-contract within Solana Blockchain, Where players can SELL/BUY, collect NFTs in the game and more.\n\n<b>Website</b>: https://solcry.io/ </br>\n<b>Crystal Dex</b>: https://dex.solcry.io/ </br>\n<b>Twitter</b>: https://twitter.com/sol_crystal_io </br>\n<b>Telegram</b>: https://t.me/sol_cry </br>\n<b>Discord</b>: https://discord.com/invite/ghnnPvQNgS </br>\n<b>GitHub</b>: https://github.com/sol-crystal </br>\n"
  },
  {
    "path": "projects/cuckoo.md",
    "content": "---\nslug: \"cuckoo\"\ndate: \"2021-09-29\"\ntitle: \"Cuckoo\"\nlogline: \"Cuckoo is a DEX and NFT marketplace built on Solana\"\ncta: \"https://www.cuckoodex.com/\"\ncategory: dex, metaplex, nft\nlogo: /img/cuckoo.png\nwebsite: https://www.cuckoodex.com/\ntwitter: https://twitter.com/cuckoodex\ndiscord: https://discord.com/invite/GtxjqTxnZG\nstatus: building\n---\n\nCuckoo is an aggregate of a serum based DEX and a Metaplex based NFT marketplace. At Cuckoo, we strongly believe in the Solana ecosystem and its unique capabilities so We hope to combine the fun of NFTs and NFT based terms with a human-centered design and a well organised DEX to make the overall trading experience fun\n"
  },
  {
    "path": "projects/culchain.md",
    "content": "---\nslug: \"culchain\"\ndate: \"2021-07-08\"\ntitle: \"CulChain\"\nlogline: \"Culture preserved on the Solana Blockchain.\"\ncta: https://culchain.world/\nlogo: /img/culchain.svg\ncategory: nft\nstatus: live\n---\n\nCulChain is a perfect symphony between blockchain and global mythologies, with an aim at preserving ancient cultures and their historical relevance through NFTs.\n"
  },
  {
    "path": "projects/cuteakitainu.md",
    "content": "---\nslug: \"cuteakitainu\"\ndate: \"2021-11-09\"\ntitle: \"Cute Akita Inu\"\nlogline: \"Cute Akita Inu a brand new unique #NFT project on Solana 444 NFTs\"\ncta: \"https://cuteakitainu.com\"\nlogo: /img/cuteakitainu.jpg\ncategory: nft\nstatus: building\nwebsite: https://cuteakitainu.com\ntwitter: https://twitter.com/cuteakitainu\ndiscord: https://discord.gg/eYkq6PxxpB\n---\n\nCute Akita Inu a brand new unique #NFT project on Solana 444 NFTs\n"
  },
  {
    "path": "projects/cybefrogs.md",
    "content": "---\nslug: \"cyberfrogs\"\ndate: \"2021-10-10\"\ntitle: \"Cyber Frogs\"\nlogline: \"Cyber Frogs are a collection of 8888 randomly generated Frogs stored on the Solana blockchain, made with over 130 unique traits of varying rarity. Each Cyber Frog is non-sequentially minted and provably unique.\"\ncta: \"https://cyberfrogs.io/\"\nlogo: /img/cyberfrogs.png\ncategory: nft\nstatus: live\nwebsite: https://cyberfrogs.io/\ntwitter: https://twitter.com/CyberFrogsNFT\ndiscord: https://discord.com/invite/EkTxRBwHGF\n---\n\nCyber Frogs are a collection of 8888 randomly generated Frogs stored on the Solana blockchain, made with over 130 unique traits of varying rarity. Each Cyber Frog is non-sequentially minted and provably unique.\n"
  },
  {
    "path": "projects/cyberpunkdistricts.md",
    "content": "---\nslug: \"cyberpunkdistricts\"\ndate: \"2021-11-18\"\ntitle: \"Cyberpunk Districts\"\nlogline: \"Join the Districts... 200 pieces, 0,5 Sol mint price, Cyberpunk inspired generative NFTs\"\ncta: \"https://www.cyberpunkdistricts.com/\"\nlogo: /img/cyberpunkdistricts.png\ncategory: nft\nstatus: live\nwebsite: https://www.cyberpunkdistricts.com/\ntwitter: https://twitter.com/CPDistricts\ndiscord: https://discord.com/invite/RNYGzyaaWt\n---\n\nJoin the Districts... 200 pieces, 0,5 Sol mint price, Cyberpunk inspired generative NFTs\n"
  },
  {
    "path": "projects/cybersamurai.md",
    "content": "---\nslug: \"cybersamurai\"\ndate: \"2021-09-26\"\ntitle: \"Cyber Samurai\"\nlogline: \"The Samurai are digitable collectibles living on the Solana blockchain. The NFTs in our collection will accrue additional value through various avenues. NFTs are bringing the masses to Solana, and we want to help provide exposure to premier Solana projects via our digital artwork, comics, and merch.\"\ncta: \"https://cybersamurai.co/#\"\nlogo: /img/cybersamurai.png\ncategory: nft\nstatus: building\nwebsite: https://cybersamurai.co/#\ntwitter: https://twitter.com/CyberSamuraiNFT\ndiscord: https://t.co/swzahtAFj5?amp=1\n---\n\nThe Samurai are digitable collectibles living on the Solana blockchain. The NFTs in our collection will accrue additional value through various avenues. NFTs are bringing the masses to Solana, and we want to help provide exposure to premier Solana projects via our digital artwork, comics, and merch.\n"
  },
  {
    "path": "projects/cybertrees.md",
    "content": "---\nslug: \"cybertrees\"\ndate: \"2021-11-13\"\ntitle: \"CyberTrees\"\nlogline: \"CyberTrees - 8,888 hand-illustrated Solana NFTs\"\ncta: \"https://cybertrees.io/\"\nlogo: /img/cybertrees.png\ncategory: nft\nstatus: building\nwebsite: https://cybertrees.io/\ntwitter: https://twitter.com/CyberTreesNFT\ndiscord: https://discord.gg/cybertrees\n---\n\nCyberTrees - 8,888 hand-illustrated Solana NFTs\n"
  },
  {
    "path": "projects/cyclos.md",
    "content": "---\nslug: \"cyclos\"\ndate: \"2021-09-15\"\ntitle: \"Cyclos\"\nlogline: \"Cyclos is a concentrated liquidity AMM built on Solana and Serum\"\ncta: \"https://cyclos.io/\"\nlogo: /img/cyclos.svg\ncategory: amm, app, defi, dex, exchange, nft\nstatus: live\nwebsite: https://cyclos.io/\ntwitter: https://twitter.com/cyclosfi\ntelegram: https://t.me/cyclosofficialchat\ndiscord: https://discord.gg/vpbTxzHWYg\n---\n\nCyclos is the first concentrated liquidity AMM on Solana. It enables\nhigher yields for LPs and better rates for traders by merging\nconcentrated liquidity with Project Serum's central limit order book.\nOn Cyclos, concentrated liquidity allows users to choose a price\nrange within which they are willing to make markets, reaping LP\nrewards with only a fraction of the previously required capital.\n\n<b>Website</b>: https://cyclos.io/ </br>\n<b>Discord</b>: https://discord.gg/vpbTxzHWYg </br>\n<b>Telegram</b>: https://t.me/cyclosofficialchat </br>\n<b>Twitter</b>: https://twitter.com/cyclosfi </br>\n<b>Medium</b>: https://medium.com/@cyclosfinance </br>\n<b>GitHub</b>: https://github.com/cyclos-io </br>\n<b>CoinGecko</b>: https://www.coingecko.com/en/coins/cyclos </br>\n<b>CoinMarketCap</b>: https://coinmarketcap.com/currencies/cyclos/ </br>\n"
  },
  {
    "path": "projects/cypher.md",
    "content": "---\nslug: \"cypher\"\ndate: \"2021-11-08\"\ntitle: \"cypher\"\nlogline: \"expiratory futures markets on solana\"\ncta: \"https://cypher.trade\"\nlogo: /img/cypher.jpg\ncategory: dex, app\nstatus: building\nwebsite: https://cypher.trade\ntwitter: https://twitter.com/cypher_protocol\ndiscord: https://discord.gg/UvXXwWcQt6\n---\n\nCypher is a decentralized synthetic asset protocol, allowing retail and institutional investors to create and trade pre-public markets. \nThis liquidity will bring price discovery forward and facilitate a healthier and more efficient transition from private to public markets.\n"
  },
  {
    "path": "projects/dEDI.md",
    "content": "---\nslug: \"dedi\"\ndate: \"2021-10-05\"\ntitle: \"dEDI\"\nlogline: \"dEDI is a Web 3.0 on-ramp for legacy EDI users and providers utilizing the Solana blockchain as a transaction layer.\"\ncta: \"https://dediinc.com\"\nlogo: /img/dedi.png\ncategory: infra\nstatus: building\nwebsite: https://dediinc.com\ntwitter: https://twitter.com/dedi_inc\ndiscord: https://discord.gg/pmeVXWMF9Z\n---\n\ndEDI is a Web 3.0 on-ramp for legacy EDI users and providers utilizing the Solana blockchain as a transaction layer.\n"
  },
  {
    "path": "projects/dagg.md",
    "content": "---\nslug: \"dagg\"\ntitle: \"DAGG\"\ndate: \"2021-05-28\"\nlogline: \"DAGG is a cross-chain DEX aggregator built on Solana.\"\ncta: https://twitter.com/daggtrade\ncategory: defi\nlogo: /img/dagg.png\nstatus: Building\nwebsite: https://daggtrade.com/\ntwitter: https://twitter.com/DaggTrade\ntelegram: https://t.me/DAGGTrade\ndiscord: https://discord.com/invite/vV6rVZVF\n---\n\nDAGG is a system of liquidity aggregators on Solana compiling the exchange rates of numerous DEX platforms (Serum, Orca, and upcoming Sushi) and presenting a list of platforms offering the best value for digital asset trades. DAGG Trade is set to offer the best DEX aggregator protocol specifically designed on the Solana blockchain.\n"
  },
  {
    "path": "projects/dancingdeerdisco.md",
    "content": "---\nslug: \"dancingdeerdisco\"\ndate: \"2021-11-13\"\ntitle: \"Dancing Deer Disco\"\nlogline: \"DancingDeerDisco 2,222 unique Deer looking for a place to dance. \"\ncta: \"https://dancingdeerdisco.com/\"\nlogo: /img/dancingdeerdisco.png\ncategory: nft\nstatus: building\nwebsite: https://dancingdeerdisco.com/\ntwitter: https://twitter.com/DancingDeerNFT\ndiscord: https://discord.com/invite/dancingdeerdisco\n---\n\nYour Dancing Deer NFT avatar is your key into the Dancing Deer Disco. There are 2222 unique Deer avatars that have been randomly generated on the Solana blockchain for you to collect. \nSome Deer are rarer than others. Deer can have up to 11 traits out of a possible 200+.\n\nOnce you buy your Deer, you own all IP and possess all commercial rights for the image and artwork as long as you hold the Deer in your wallet. Rights are transferred to the new owner anytime a Deer is sold on secondary. \nThere is a 5% royalty for all secondary transactions that will be used to fund the new Deer NFT collection.\n"
  },
  {
    "path": "projects/danukidojo.md",
    "content": "---\nslug: \"danukidojo\"\ndate: \"2021-10-17\"\ntitle: \"Danuki Dojo\"\nlogline: \"6,666 Danukies. Dojo is for everyone. NFTs on Solana.\"\ncta: \"https://magiceden.io/marketplace/danuki_dojo\"\nlogo: /img/danukidojo.png\ncategory: nft\nstatus: live\nwebsite: https://www.danukidojo.com\ntwitter: https://twitter.com/danuki_dojo\ndiscord: https://discord.com/invite/RqX8KkunMR\n---\n\nThe Danukis are spiritual beings who have always inhabited the earth, they are superior beings, strong and warriors who will risk their own lives for whoever has earned their loyalty.... Of course, as long as they can also get something in return. And how do I know all this? Because I am one of the 6666. Over the centuries we have adopted hundreds of forms, but the one we are most comfortable with is the one you will see below... Want to know more about us?\n"
  },
  {
    "path": "projects/dappio.md",
    "content": "---\nslug: \"dappio\"\ndate: \"2021-10-29\"\ntitle: \"Dappio_Wonderland\"\nlogline: \"Your One-Stop Solution, Solana Wonderland Rabbit Hole\"\ncta: \"https://dappio.xyz\"\nlogo: /img/dappio.jpg\ncategory: defi, game, nft\nstatus: building\nwebsite: https://dappio.xyz\ntwitter: https://twitter.com/Dappio_\ntelegram: https://t.me/Dappio_wonderland\ndiscord: https://discord.gg/aN4aevH2VP\n---\n\nBasket of DeFi, GameFi, and NFTs - Access to everything you need in Solana\n\nCustomized strategy - Maximize your return with customized strategy\n\nAll the best yield in Solana - We constently search the best yield for our users\n\nBuild for institution & retails - Make DeFi accessible with zap in and switch farm in one-click\n\nWe aggregate everything!\n\n1. DEX\n2. Money market\n3. NFT\n4. GameFi\n5. DeFi tools\n"
  },
  {
    "path": "projects/daringdragons.md",
    "content": "---\nslug: \"daringdragons\"\ndate: \"2021-10-27\"\ntitle: \"Daring Dragons\"\nlogline: \"Daring Dragons is a collection of 5555 hand-drawn, unique NFTs, existing eternally in the dungeons and skies of the Solana\"\ncta: \"https://daringdragons.art\"\nlogo: /img/daringdragons.png\ncategory: nft\nstatus: live\nwebsite: https://daringdragons.art\ntwitter: https://twitter.com/Daring_Dragons\ndiscord: https://discord.gg/FVXe3SXCbh\n---\n\nInspired by the wildest of imagination, the Daring Dragons NFT collection is a collection of 5555 distinct NFTs generated by using over 100+ hand-drawn attributes.\nEach NFT unlocks their holders with a wealth of opportunities upon release.\n"
  },
  {
    "path": "projects/darksol.md",
    "content": "---\nslug: \"Dark-Sol.art\"\ndate: \"2021-10-01\"\ntitle: \"Dark-Sol.art\"\nlogline: \"Dark-Sol.art is a NFT Project which combines very rare, handmade  and limited tattoo art in NFT Collections.\"\ncta: \"https://dark-sol.art\"\nlogo: /img/darksol.png\ncategory: nft\nstatus: building\nWebsite: https://dark-sol.art\nTwitter: https://twitter.com/darksolart\nTelegram: https://t.me/joinchat/CtDGUEAM224zYTRi\nDiscord: https://discord.com/invite/s4EHkDwWU5\n---\n\nCreator Dark-Sol.art is build to stay in market for longterm with many upcoming Collections. Our stamp is the very small and limited Artwork. Startet with our first Collection - DeadHeads - limited to 257 pieces.\n"
  },
  {
    "path": "projects/darksolitarium.md",
    "content": "---\nslug: \"darksolitarium\"\ndate: \"2021-11-07\"\ntitle: \"Dark Soly\"\nlogline: \"A Cosmic Exploration into Metaverse. A 2,000 Supply; A RL Immersive Experience\"\ncta: \"https://darksolitarium.com\"\nlogo: /img/darksolitarium.jpg\ncategory: nft\nstatus: building\nwebsite: https://darksolitarium.com\ntwitter: https://twitter.com/DarkSolitarium\ndiscord: https://discord.com/invite/9hsnU92shm\n---\n\n**DARK SOLITARIUM**\n\n2,000 Cosmic Explorations Revealing the Discoveries of Space and New Frontiers.\n\nBy collecting the same NGCs, members of the Dark Solitarium Community will be able to redeem rewards ranging from rare airdrops, \ncrypto prizes, invitations to immersive events, and the chance to experience an all-expense-paid vacation to Miami, Florida.\n"
  },
  {
    "path": "projects/darleygo.md",
    "content": "---\nslug: \"darleygo\"\ndate: \"2021-11-14\"\ntitle: \"DarleyGo\"\nlogline: \"First Brand New horse racing game built on Solana\"\ncta: \"https://www.darleygo.io/\"\nlogo: /img/darleygo.jpg\ncategory: game\nstatus: building\nwebsite: https://www.darleygo.io/\ntwitter: https://twitter.com/DarleyGo_io\ndiscord: https://discord.gg/eHPgW49jFk\n---\n\nFirst Brand New horse racing game built on Solana\n"
  },
  {
    "path": "projects/dassi.md",
    "content": "---\nslug: \"dassi\"\ntitle: \"Dassi Finance\"\ndate: \"2021-10-05\"\nlogline: \"Dassi provides Decentralized peer to peer Banking for Everyone\"\ncta: https://dassi.finance/\ncategory: defi, fund, app, nft, stablecoin\nlogo: /img/dassi.svg\nstatus: Building\nwebsite: https://dassi.finance/\ntwitter: https://twitter.com/DassiFinance\ntelegram: https://t.me/dassicommunity\ndiscord: https://discord.com/invite/qxr42kBXP8\n---\n\nDassi is a blockchain based crowdfunding platform for zero interest micro-loans and collateral free commercial loans. Our platform is going to be a peer to peer lending platform based on Solana blockchain.\n\nDassi will also provide users with credit cards with interest rates of around 10% that can be used on websites like Amazon to get emi’s on products like laptops, this will also help us build crypto credit scores of our users.\n\nDassi will also provide collateral free commercial loans at 12-15% interest rates. For these commercial loans we will have lending pools where people can deposit dassi coins and can get returns of upto 12% .\n\n<b>Website</b>: https://dassi.finance/ </br>\n<b>Telegram</b>: https://t.me/dassicommunity </br>\n<b>Discord</b>: https://discord.com/invite/qxr42kBXP8 </br>\n<b>Twitter</b>: https://twitter.com/DassiFinance </br>\n"
  },
  {
    "path": "projects/davidsrenaissance.md",
    "content": "---\nslug: \"davidsrenaissance\"\ndate: \"2021-11-13\"\ntitle: \"David's Renaissance\"\nlogline: \"After the Plague comes the Renaissance. A deflationary, redeemable NFT series by Sean Tabris on Solana.\"\ncta: \"https://solofdavid.com/lucky.html\"\nlogo: /img/davidsrenaissance.jpg\ncategory: nft\nstatus: live\nwebsite: https://solofdavid.com\ntwitter: https://twitter.com/solofdavid\ndiscord: https://discord.com/invite/cASS4g7SEA\n---\n\nDavid's Renaissance combines traditional drawing techniques with digital software to generate 8,138 unique collection of NFTs. Just as Michelangelo's first strike into marble ushered in the renaissance -- NFTs mark an important moment in art history: the clash between art ownership and internet culture. Our collection is a nod to one of the greats and is manifested through a digital collectable. Each minted David provides the holder with a unique floating bust of David. Certain Davids will have rarer attributes than others, with some even redeemable for physical artwork. After the plague comes the Renaissance, this is a conversation about culture. Welcome to the digital Renaissance.\n"
  },
  {
    "path": "projects/dazedraccoonspaceclub.md",
    "content": "---\nslug: \"dazedraccoonspaceclub\"\ndate: \"2021-11-12\"\ntitle: \"Dazed Raccoon Space Club NFT\"\nlogline: \"Welcome to Dazed Raccoon Space Club! Astronaut | Coming soon on Solana\"\ncta: \"https://dazedraccoonspaceclub.com/\"\nlogo: /img/dazedraccoonspaceclub.jpg\ncategory: nft\nstatus: building\nwebsite: https://dazedraccoonspaceclub.com/\ntwitter: https://twitter.com/DazedRaccoonSC\ndiscord: https://www.discord.gg/drsc\n---\n\nThere are 9969 uniquely generated Dazed Raccoons in the space club, each one earning rewards and unlocking other exclusive benefits  for YOU as a holder. \n\n100% ROYALTIES TO YOU\n\nAll royalties generated from trading fees will be invested back into our community on a weekly basis (95.8% goes straight in holders wallets)\n\nHOLD AND HOARD\n\nBy holding a raccoon you are entitled not only to your split of all revenue generated from fees, but you also get access to exclusive airdrops, giveaways, and best of all will be entered into a raffle for the biggest giveaway on Solana – A Tesla Model X\n\nSPECIAL ABILITIES\n\nNo two Raccoons are the same, some raccoons even have special abilities, like the power to get a higher percentage of the royalties. Try your luck to get one or pick one up from the market — if you can!\n"
  },
  {
    "path": "projects/dcbearnfts.md",
    "content": "---\nslug: \"dcbearnfts\"\ndate: \"2021-10-10\"\ntitle: \"DCBearNFTs\"\nlogline: \"DCBearNFTs is an NFT brand housed on the Solana blockchain. The collection consists of 3030 DCBear, 350 first mint, 300 second mint, 2350 last mint.\"\ncta: \"https://digitalcustombear.io/\"\nlogo: /img/dcbear.png\ncategory: nft\nstatus: live\nwebsite: https://digitalcustombear.io/\ntwitter: https://twitter.com/DCBearNFTs\ndiscord: https://discord.com/invite/NpmxWSWnHv\n---\n\nDCBearNFTs is an NFT brand housed on the Solana blockchain. The collection consists of 3030 DCBear, 350 first mint, 300 second mint, 2350 last mint\n"
  },
  {
    "path": "projects/decentology.md",
    "content": "---\nslug: \"decentology\"\ndate: \"2020-04-03\"\ntitle: \"Decentology\"\nlogline: \"Decentology is a platform that simplifies decentralized app creation. Decentology supports the Solana development environment.\"\ncta: \"https://www.decentology.com/\"\nlogo: /img/decentology.svg\ncategory: infra\nstatus: live\n---\n\nDecentology built DappStarter, a blockchain-agnostic platform for building full-stack, customizable blockchain apps. We've reduced application build time on Solana from weeks to under fifteen minutes.\n"
  },
  {
    "path": "projects/defi passport.md",
    "content": "---\nslug: \"defipassport\"\ndate: \"2021-03-22\"\ntitle: \"DeFi Passport\"\nlogline: \"The DeFi Passport is an extension that allows you to sync all your on-chain transaction histories across blockchains in a verifiable manner.\"\ncta: https://github.com/spruceid/degen-passport\nlogo: /img/defipassport.svg\ncategory: DeFi, tools, explorer\nstatus: building\n---\n\nThe DeFi Passport is an extension that allows you to sync all your on-chain transaction histories across blockchains in a verifiable manner, including trading data, liquidity providing, governance participation, NFT creation, and many others. It operates using on-chain information to build a base identity. You can then use your transaction history to demonstrate who you are to anyone both on-chain or off-chain.\n"
  },
  {
    "path": "projects/deficompare.md",
    "content": "---\nslug: \"deficompare\"\ndate: \"2021-03-22\"\ntitle: \"DefiCompare\"\nlogline: \"DeFiCompare is an open and fair DeFi comparison tool across all blockchains and DeFi applications.\"\ncta: https://github.com/solanax/deficompare\nlogo: /img/deficompare.svg\ncategory: explorer, tools, defi\nstatus: building\n---\n\nAn open and fair DeFi comparison tool across all blockchains and DeFi applications.\n"
  },
  {
    "path": "projects/defiland.md",
    "content": "---\nslug: \"defiland\"\ndate: \"2021-07-22\"\ntitle: \"DeFi Land\"\nlogline: \"DeFi Land is a multi-chain agriculture simulation web-game created to gamify decentralized finance.\"\ncta: \"https://defiland.app\"\nlogo: /img/defiland.svg\ncategory: app,defi,nft\nstatus: building\nwebsite: https://defiland.app\ntwitter: https://twitter.com/defi_land\ntelegram: https://t.me/defiland_official\ndiscord: https://discord.com/invite/defiland\n---\n\nDeFi Land is a multi-chain agriculture simulation web-game created to gamify decentralized finance. It will have all the features that traditional platforms have, but it will be gathered all in one place. DeFi Land will be running on top of established platforms, meaning users will be using well-known AMMs/DEXs/lending protocols through our game. For example, when a player tries yield farming in our game they will actually be using different pools and staking platforms through our interface.\n"
  },
  {
    "path": "projects/definer.md",
    "content": "---\nslug: \"definer\"\ntitle: \"DeFiner\"\ndate: 2021-06-22\nlogline: \"DeFiner is a permission-less and configurable decentralized lending protocol with guaranteed privacy protection.\"\ncta: \"https://twitter.com/DeFinerOrg\"\ncategory: defi\nlogo: /img/definer.svg\nstatus: Building\n---\n\nBuilt on Solana, DeFiner enables a scalable DeFi lending market which allows the community members to stake, borrow and lend for any tokens.\n"
  },
  {
    "path": "projects/degenbanana.md",
    "content": "---\nslug: \"degenbanana\"\ndate: \"2021-05-28\"\ntitle: \"degenbanana\"\nlogline: \"degenbanana is leveraged memeing on the Solana blockchain.\"\ntwitter: https://twitter.com/degenbanana\ncta: \"https://degen.finance\"\nlogo: /img/degenbanana.svg\ncategory: defi\nstatus: live\n---\n\ndegenbanana is building a protocol to facilitate leveraged yield farming within the Solana ecosystem, and, later, in a chain agnostic way.\n"
  },
  {
    "path": "projects/degentrashpanda.md",
    "content": "---\nslug: \"degentrashpanda\"\ndate: \"2021-11-10\"\ntitle: \"Degenerate Trash Pandas\"\nlogline: \"An underground collective of scavengers. Frens of degenapeacademy. WAGMI\"\ncta: \"https://degentrashpandas.com/\"\nlogo: /img/degentrashpanda.jpg\ncategory: nft\nstatus: building\nwebsite: https://degentrashpandas.com/\ntwitter: https://twitter.com/DegenTrashPanda\ndiscord: https://discord.com/invite/degentrashpandas\n---\n\nThe Degeniverse is expanding. We are the Degenerate Trash Pandas. A collection of 20K cunning critters that live for one thing and one thing only: To scavenge the blockchain.\n\nInhabiting their own underworld society, the Trash Pandas are governed by no individuals and live by no rules. What they have though is their trash, and their trash is their treasure. \nThey’ll do whatever they can to get their little paws on it, even if it means befriending an Academy of oafish Degenerate Apes.\n"
  },
  {
    "path": "projects/degods.md",
    "content": "---\nslug: \"degods\"\ndate: \"2021-10-09\"\ntitle: \"Degods\"\nlogline: \"10,000 uniquely engineered Solana NFTs.\"\ncta: \"https://degods.com/\"\nlogo: /img/degods.png\ncategory: nft\nstatus: live\nwebsite: https://degods.com/\ntwitter: https://twitter.com/DeGodsNFT\ndiscord: https://discord.com/invite/degods\n---\n\n10,000 uniquely engineered Solana NFTs.\n"
  },
  {
    "path": "projects/deltafi_ai.md",
    "content": "---\nslug: \"deltafi_ai\"\ndate: \"2021-11-08\"\ntitle: \"DeltaFi.ai\"\nlogline: \"The world's most efficient DEX. High Yield, Deep Liquidity, DAO Governed.\"\ncta: \"https://www.deltafi.ai\"\nlogo: /img/deltafi_ai.jpg\ncategory: amm, app\nstatus: building\nwebsite: https://www.deltafi.ai\ntwitter: https://twitter.com/deltafi_ai\ntelegram: https://t.me/deltafi_labs\ndiscord: https://discord.gg/deltafi\n---\n\n**Building the Next Generation Cross-Chain DEX on Solana**\n\nBuilt for traders, market makers, and liquidity providers\nOptimal User Experience\n\n**FOR TRADERS**\n\nLow Price Slippage\n\nAdaptive algorithms are developed for efficient pricing resilient to various market dynamics.\n\n**FOR LIQUIDITY PRODVIDERS**\n\nSustainable Profitability\n\nLiquidity risks are minimized with customized risk tolerances and institutional grade market making algorithms.\n\n**FOR MARKET MAKERS**\n\nPersonalized Pools\n\nMalleable APIs offer market making flexibilities with bidirectional pricing, dynamic fees, and order history.\n"
  },
  {
    "path": "projects/deltaone.md",
    "content": "---\nslug: \"deltaone\"\ndate: \"2021-11-14\"\ntitle: \"Delta One\"\nlogline: \"Safely and simply earn high APY by holding our stablecoin. Powered by delta neutral, leveraged yield farming. \"\ncta: \"https://deltaone.xyz/\"\nlogo: /img/deltaone.jpg\ncategory: amm, app, defi\nstatus: building\nwebsite: https://deltaone.xyz/\ntwitter: https://twitter.com/deltafarming\ndiscord: https://discord.gg/qEaGFrRdCC\n---\n\nDelta One is a stablecoin that allows holders to easily earn high APY from low-risk delta neutral yield farming techniques.\n"
  },
  {
    "path": "projects/dexlab.md",
    "content": "---\nslug: \"dexlab\"\ndate: \"2020-04-03\"\ntitle: \"Dexlab\"\nlogline: \"Dexlab is a decentralized exchange where Solana projects can mint and list their tokens.\"\ncta: \"https://www.dexlab.space\"\nlogo: /img/dexlab.svg\ncategory: DEX\nwebsite: https://www.dexlab.space/#/\ntwitter: https://twitter.com/Dexlab_official\ntelegram: https://t.me/dexlab_official\nstatus: live\n---\n\nDexlab is a decentralized exchange where users can mint and list SPL tokens. It will provide all the standard DeFi tools, as well as a GUI that facilitates the creation of SPL tokens. Our Minting Lab allows users to manage all aspects of a token, as well as the deployment of smart contracts that best suits their needs.\n"
  },
  {
    "path": "projects/dhevas.md",
    "content": "---\nslug: \"dhevas\"\ndate: \"2021-11-06\"\ntitle: \"Dhevas Neon Evolution\"\nlogline: \"Sci-fi Comedy/Action, Web Comic, shorts and Metaverses Supply: 6,666\"\ncta: \"https://dhevas.co\"\nlogo: /img/dhevas.png\ncategory: nft\nstatus: building\nwebsite: https://dhevas.co\ntwitter: https://twitter.com/swans_lab\ndiscord: https://discord.gg/eUWSqgp3mH\n---\n\nDhevas Neon Evolution\n6,666 supply of Dhevas Neon Evolution. 3,333 will be presold mid of November. Characters are inspired by Mythical Gods but we wanted to give Dhevas a \nmodern futuristic spin to the characters 5 traits Dhevas, Yak, Gaurda, Naga and Hanuman, their rarity increases down the list respectively. \nThis project will explore the metaverse space and work on cross chain community building. Dhevas For A\n"
  },
  {
    "path": "projects/dia.md",
    "content": "---\nslug: \"dia\"\ndate: \"2021-11-11\"\ntitle: \"DIA\"\nlogline: \"DIA is an open-source data platform that allows market actors to supply, share and use transparent, crowd-verified data and oracles for DeFi.\"\ncta: \"https://docs.diadata.org/documentation/oracle-documentation/solana-oracle\"\nlogo: /img/dia.svg\ncategory: oracle\nstatus: live\nwebsite: https://www.diadata.org/\ntwitter: https://twitter.com/DIAdata_org\ntelegram: https://t.me/diadata_org\ndiscord: https://discord.gg/zFmXtPFgQj\n---\n\nDIA is an open-source data platform that allows market actors to supply, share and use transparent, crowd-verified data and oracles for DeFi.\n"
  },
  {
    "path": "projects/diabolo.md",
    "content": "---\nslug: \"diabolo\"\ndate: \"2021-06-15\"\ntitle: \"Diabolo\"\nlogline: \"Diabolo provides a complete ecosystem centered around social trading, including CeFi, DeFi and Staking services.\"\ncta: \"https://twitter.com/diabolotrading\"\nlogo: /img/diabolo.svg\ncategory: defi, dex\nstatus: building\n---\n\nDiabolo is a social trading ecosystem providing a complete ecosystem centered around social trading, including CeFi, DeFi and Staking services.\n"
  },
  {
    "path": "projects/dialect.md",
    "content": "---\nslug: \"dialect\"\ndate: \"2021-11-10\"\ntitle: \"Dialect\"\nlogline: \"Building the future of web3 messaging. Launching soon on solana, the world's fastest blockchain\"\ncta: \"https://www.dialect.to\"\nlogo: /img/dialect.jpg\ncategory: app\nstatus: building\nwebsite: https://www.dialect.to\ntwitter: https://twitter.com/saydialect\n---\n\nBuilding the future of web3 messaging. Launching soon on solana, the world's fastest blockchain\n"
  },
  {
    "path": "projects/dimez.md",
    "content": "---\nslug: \"dimez\"\ndate: \"2021-10-27\"\ntitle: \"Dimez\"\nlogline: \"A unique, ranked collection of 2222 3D dime bags\"\ncta: \"https://www.thedimez.com\"\nlogo: /img/dimez.png\ncategory: nft\nstatus: live\nwebsite: https://www.thedimez.com\ntwitter: https://twitter.com/DimezNft\ndiscord: http://discord.gg/AyBaMRAGtC\n---\n\nA unique collection of 2222 dynamically rendered 3D dime bags with hand-illustrated attributes\n"
  },
  {
    "path": "projects/dino.md",
    "content": "---\nslug: \"dino\"\ndate: \"2021-05-24\"\ntitle: \"Dino\"\nlogline: \"DINO is an experiment around community creation and delivering products that aim to bring fun and awareness to the Solana ecosystem.\"\ncta: \"https://www.solanadino.com/\"\nlogo: /img/dino.svg\ncategory: nft, app, game, dex\nstatus: building\nwebsite: https://www.solanadino.com/\ntwitter: https://twitter.com/SolanaDINO\ndiscord: https://discord.gg/BuRMWvRFPm\n---\n\nDino is the ultimate key to enter the Dinoverse. It is issued as a fungible token which allows for the minting of Dino NFTs through a process which creates, incubates, and hatches eggs. The Dino NFT is intended to have a game dynamic to it whereby the NFT’s are characters in a game, and provide additional capability within a game.\n"
  },
  {
    "path": "projects/dinos_zone.md",
    "content": "---\nslug: \"dinos_zone\"\ndate: \"2021-11-18\"\ntitle: \"Dinos Zone\"\nlogline: \"1000 Dinos on Solana\"\ncta: \"https://twitter.com/dinos_zone\"\nlogo: /img/dinos_zone.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/dinos_zone\n---\n\n1000 Dinos on Solana\n"
  },
  {
    "path": "projects/dirtybirds.md",
    "content": "---\nslug: \"dirtbirds\"\ndate: \"2021-10-03\"\ntitle: \"Dirty Birds Fight Club\"\nlogline: \"Dirty Birds Fight Clucb are 9090 unique NFTs generated from over 200 traits.\"\ncta: \"https://dirtybirdrecords.com/pages/flightclub\"\nlogo: /img/dirtybirds.png\ncategory: nft\nstatus: live\nwebsite: https://dirtybirdrecords.com/pages/flightclub\ntwitter: https://twitter.com/DirtybirdArt\ndiscord: https://discord.gg/flightclub\n---\n\nDirty Birds Fight Clucb are 9090 unique NFTs generated from over 200 traits.\n"
  },
  {
    "path": "projects/disorders.md",
    "content": "---\nslug: \"disorders\"\ndate: \"2021-11-18\"\ntitle: \"Sol Disorders\"\nlogline: \"3333 unique mental disorders to mint.The FIRST escape game/riddle project on Solana!\"\ncta: \"https://twitter.com/disordersNFT\"\nlogo: /img/disorders.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/disordersNFT\ndiscord: https://discord.com/invite/up6VtQMsxn\n---\n\n3333 unique mental disorders to mint.The FIRST escape game/riddle project on Solana!\n"
  },
  {
    "path": "projects/dreamversenft.md",
    "content": "---\nslug: \"dreamversenft\"\ndate: \"2021-11-11\"\ntitle: \"Dream Verse\"\nlogline: \"The world in the metaverse with various seasons and dimensions of urban and natural environments powered by Solana\"\ncta: \"https://dreamversenft.com/\"\nlogo: /img/dreamversenft.jpg\ncategory: nft\nstatus: building\nwebsite: https://dreamversenft.com/\ntwitter: https://twitter.com/DreamVerseNFT\ndiscord: https://discord.gg/scKsqVp9\n---\n\nDreamverse is a world in the metaverse with various seasons and dimensions of urban and natural environments, possibilities of future and alternative realities. \nIt is the culmination of hard work and collaboration from project leads who guided this journey to support three digital artists’ imaginative dreamscapes. \nThe artists, each with a distinct style, came together to fuse their unique expression with AI assistants. Each artist worked with an individualized AI assistant, \nwhich the AI team specifically designed to complement defining characteristics of each artist. This experimental environment allowed digital artists and their AI assistants to work together. \nLearning and adapting were iterative processes for the artists and AI agents throughout this project. In total, the artist-AI pairs created 6,180 pieces of NFTs. \nDuring their artistic process, they discovered new possibilities in their art – which culminated in the harmony of the DreamVerse. \nThe artists and three AI assistants built a digital collection with endless possibilities of storytelling through scenes and images that trigger the imagination. \nMay it inspire new possibilities of creative expression at the intersection of art and technology in the metaverse.\n"
  },
  {
    "path": "projects/drift.md",
    "content": "---\nslug: \"drift\"\ndate: \"2021-06-29\"\ntitle: \"Drift Protocol\"\nlogline: \"Drift brings on-chain, cross-margined perpetual futures to Solana, making future DEXs the best way to trade.\"\ncta: https://www.drift.trade\nlogo: /img/drift.jpg\ncategory: DeFi\nstatus: building\nwebsite: https://www.drift.trade\ntwitter: https://twitter.com/DriftProtocol\n---\n\nDrift’s goal is to bring a state-of-the-art trader-centric experience from centralized exchanges on-chain. We’re a team of experienced traders and builders from DeFi and traditional finance working together to make this a reality 👾.\n"
  },
  {
    "path": "projects/drippypenguins.md",
    "content": "---\nslug: \"drippypenguins\"\ndate: \"2021-10-24\"\ntitle: \"Drippy Penguins\"\nlogline: \"A collection of 7000 randomly generated Penguins on Solana.\"\ncta: \"https://magiceden.io/marketplace/drippy_penguins\"\nlogo: /img/drippypenguins.jpg\ncategory: nft\nstatus: live\nwebsite: https://drippy-penguins.com/\ntwitter: https://twitter.com/DrippyPenguins\ndiscord: https://discord.com/invite/BpkThMK7pT\n---\n\nPenguins had enough of not having enough drip, so they started to make their own jewelry and grow long hair to make crazy hairstyles.\n"
  },
  {
    "path": "projects/dtfsprotocol.md",
    "content": "---\nslug: \"dtfs\"\ndate: \"2021-03-22\"\ntitle: \"DTFs Protocol\"\nlogline: \"DTFs Protocol is a Solana and Serum-based system that enables users to implement an asset management strategy in which others can invest.\"\ncta: \"https://p2p-org.github.io/Non-custodial-DEX-Traded-Funds/\"\nlogo: /img/dtfs.svg\ncategory: defi\nstatus: building\n---\n\nDTFs Protocol is a Solana and Serum-based system that enables users to implement an asset management strategy in which others can invest. A strategy consists of a basket of SPL tokens encapsulated in a DTF program which is itself an SPL token. By supporting external integrations with exchanges, lending platforms, automated market makers, and asset protocols, DTFs enables any type of strategy. DTFs aims to be community-owned and will employ decentralized governance.\n"
  },
  {
    "path": "projects/eizperchain.md",
    "content": "---\nslug: \"eizperchain\"\ndate: \"2021-08-30\"\ntitle: \"Eizper Chain\"\nlogline: \"Eizper Chain is F2P-P2E ARPG Game set in a high-fantasy world with steampunk style powered by Solana.\"\ncta: \"https://www.eizperchain.com\"\nlogo: /img/eizperchain.jpg\nstatus: building\ncategory: \"app, game, nft, spl, community, metaplex\"\nwebsite: https://www.eizperchain.com\ninstagram: https://www.instagram.com/eizperchain\ntwitter: https://twitter.com/EizperChain\nmedium: https://medium.com/@eizperchain\ndiscord: https://discord.gg/f38VNccHAm\n---\n\nEizper Chain is a blockchain action online multiplayer role-playing game that celebrates adventure and arena battle. In the adventure, part players roam the fast world of Eizper following an epic story full of twists and turns. While in arena battle, players may compete against each other in battle events for a chance at rewards and recognition.\n\nEizper Chain aims to build triangle connections between Game Play, Free-to-Play (F2P), Play-to-Earn (PTE), NFT-Defi,and DAO.\n\n<b>Website</b>: https://www.eizperchain.com</br>\n<b>Instagram</b>: https://www.instagram.com/eizperchain</br>\n<b>Twitter</b>: https://twitter.com/EizperChain</br>\n<b>Medium</b>: https://medium.com/@eizperchain</br>\n<b>Discord</b>: https://discord.gg/f38VNc\n"
  },
  {
    "path": "projects/elementart.md",
    "content": "---\nslug: \"elementart\"\ndate: \"2021-11-07\"\ntitle: \"Element Art\"\nlogline: \"A mathematical NFT art collection on Solana.First art collection is inspired by Cellular Automata\"\ncta: \"https://element.art\"\nlogo: /img/element.jpg\ncategory: nft\nstatus: building\nwebsite: https://element.art\ntwitter: https://twitter.com/ElementArtNFT\ndiscord: https://discord.com/invite/Q3P7nNmsSF\n---\n\nA mathematical NFT art collection on Solana.First art collection is inspired by Cellular Automata\n"
  },
  {
    "path": "projects/eluune.md",
    "content": "---\nslug: \"eluune\"\ndate: \"2021-10-24\"\ntitle: \"Project Eluune\"\nlogline: \"7,027 founding StarGardens, secured on the Solana blockchain and brought to you by the past metagame designer of Gods Unchained and World of Tanks blitz.\"\ncta: \"https://www.arrivant.com/\"\nlogo: /img/eluune.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://www.arrivant.com/\ntwitter: https://twitter.com/ProjectEluune\ndiscord: https://discord.com/invite/eluune\n---\n\nWhat is a stargarden?\n\nA floating island that is the point of entry to our metaverse. An NFT designed to be used in our upcoming p2e game.\nBy minting a Founding StarGarden, you become the owner of a unique non fungible token, a digital collectible, that will be usable in our upcoming game. The NFT will unlock access to a play space in the game and the owner will be leader of the Tribe that populates it. Your StarGarden in the game will level up along with its members and have play to earn capabilities.\n"
  },
  {
    "path": "projects/endangeredsounds.md",
    "content": "---\nslug: \"endangeredsounds\"\ndate: \"2021-11-06\"\ntitle: \"Endangered Sounds\"\nlogline: \"Soundprint NFTs immortalizing the calls of endangered species on SOL\"\ncta: \"https://endangeredsounds.art/\"\nlogo: /img/endangeredsounds.png\ncategory: nft\nstatus: live\nwebsite: https://endangeredsounds.art/\ntwitter: https://twitter.com/EndangeredSol\ndiscord: https://discord.com/invite/PQyxHS4Dku\n---\n\nEach NFT consists of a circular spectrogram, computed from a unique animal sound. The spectrogram breaks down the sound into its base frequencies, providing a Soundprint which reveals the hidden mathematical beauty of the animals's call.\nWe will mobilise the NFT community in support of wildlife conservation by 1. donating $200,000 from our proceeds to partnered charities and 2. splitting royalties from the secondary market 50% to charity and 50% to the artists.\n"
  },
  {
    "path": "projects/enterthejungle.md",
    "content": "---\nslug: \"enterthejungle\"\ndate: \"2021-11-04\"\ntitle: \"Enter The Jungle\"\nlogline: \"Gangster Gorilla NFTs, 10,028  living in the Sol Jungle of the #Solana Blockchain. Play 2 Earn Shooter Game\"\ncta: \"https://enterthejungle.io\"\nlogo: /img/enterthejungle.jpg\ncategory: nft\nstatus: building\nwebsite: https://enterthejungle.io\ntwitter: https://twitter.com/enter_thejungle\ndiscord: https://discord.gg/4AZuUWkhxJ\n---\n\nGangster Gorillas are a collection of 10,028 hand-drawn, algorithmically generated NFTs living in the Sol Jungle Ecosystem on the Solana Blockchain. \nEach Gorilla has unique random traits generated from well over a million possible combinations.\n\n10,028 Algorithmically Generated NFT's\n\n200+ dope attributes\n\nPassive income for holders\n"
  },
  {
    "path": "projects/entropy.md",
    "content": "---\nslug: \"entropy\"\ndate: \"2021-11-14\"\ntitle: \"EntropyOfficial\"\nlogline: \"Entropy:The First Decentralized Perpetual Contracts and Derivatives On Solana.\"\ncta: \"https://www.entropy.loan/\"\nlogo: /img/entropy.jpg\ncategory: amm, defi, dex\nstatus: building\nwebsite: https://www.entropy.loan/\ntwitter: https://twitter.com/EntropyDEX\ntelegram: https://t.me/entropy_official\ndiscord: https://discord.com/invite/3P8atdyhDK\n---\n\nEntropy is a leading decentralized exchange offering Perpetual, Margin, & Spot trading, as well as borrow / lend pools on Solana\n"
  },
  {
    "path": "projects/everlend.md",
    "content": "---\nslug: \"everlend\"\ntitle: \"Everlend\"\ndate: 2021-07-25\nlogline: \"Everlend is a decentralized, cross-chain lending protocol with yield farming and liquid staking powered by Solana. Built by AtticLab and Everstake.\"\ncategory: defi\nlogo: /img/everlend.svg\ncta: \"https://everlend.finance/\"\nstatus: live\nwebsite: https://everlend.finance/\ntwitter: https://twitter.com/EverlendFinance\ntelegram: https://t.me/joinchat/Znd69xFkYK45NTAy\ndiscord: https://discord.com/invite/wwqnJYQGxM\n---\n\nEverlend is a decentralized, cross-chain lending protocol with yield farming and liquid staking powered by Solana. Built by AtticLab and Everstake.\n"
  },
  {
    "path": "projects/evernew.md",
    "content": "---\nslug: \"evernewcapital\"\ndate: \"2020-07-22\"\ntitle: \"Evernew Capital\"\nlogline: \"Evernew Capital launched a $20 million Solana Ecosystem fund to support DeFi, NFT, and infrastructure projects that add new dimensions of utility to the Solana ecosystem and the multi-chain crypto ecosystem in Taiwan\"\ncta: \"https://forms.gle/K2sgrjRCCHtdCfiz9\"\ncta2: \"https://blog.evernewcap.com/evernew-capital-launches-20-million-solana-ecosystem-fund-to-promote-development-of-decentralized-a289678a3923\"\ncta2text: \"Fund Announcement\"\nlogo: /img/evernew.svg\ncategory: fund\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/evernew.png\nstatus: live\n---\n\nEvernew Capital focuses on supporting DeFi, NFT, and infrastructure projects that add new dimensions of utility to the Solana Ecosystem and the multi-chain crypto ecosystem as a whole.\n\nOur presence and strong network in Taiwan and East Asia enables us to ensure projects most efficiently reach these target markets. $20 million in funding will be available to teams dedicated to building unique value adds to the Solana ecosystem.\n\nThe Evernew Fund will invest in and support early-stage projects developing in the Solana ecosystem with a particular focus on projects from Taiwan. Our team offers:\n\n- Strategic advising\n- Marketing support\n- Tokenomics development\n- Technical feedback\n"
  },
  {
    "path": "projects/excelli.md",
    "content": "---\nslug: \"XLE\"\ndate: \"2021-11-12\"\ntitle: \"Excelli Coin\"\nlogline: \"Excelli Coin (XLE) is the reward token of Excelli Super App platform, that users can redeem for any purchases in the platform.\"\ncta: \"https://excellicoin.com\"\nlogo: /img/excelli.png\ncategory: app\nstatus: building\nwebsite: https://excellicoin.com\ntwitter: https://twitter.com/ExcelliApp\ntelegram: https://t.me/EXCELLI\ndiscord: https://discord.gg/pHzPCDuUFQ\n---\nExcelli Coin (XLE) is the reward token of Excelli Super App platform, that users can redeem for any purchases in the platform. Influencers, affiliates, shoppers,  and  users  of  other  services  receive XLE  tokens. Excelli is a revolutionary Super App that gives its users the power to make shopping a group event powered by integrated Chat and Social network resulting in a monetary benefit both for the buyers and sellers. In addition to shopping, Excelli also offers Payments, Groceries, Food Deliveries, Flights, Hotels and Cabs booking, Gig services, Pharmacy deliveries, Gaming and Entertainment."
  },
  {
    "path": "projects/exchangeart.md",
    "content": "---\nslug: \"exchangeart\"\ndate: \"2021-10-31\"\ntitle: \"Exchange.art\"\nlogline: \"Exchange is the most innovative NFT marketplace on Solana. With the Exchange Notification NFT, every transaction you make increases your status and earns you perks. Bid on almost any NFT you find on Exchange, listed or unlisted. Make a reasonable offer and the owner will receive an alert right in their wallet.\"\ncta: \"https://exchange.art/\"\nlogo: /img/exchangeart.svg\ncategory: nft\nstatus: live\nwebsite: https://exchange.art/\ntwitter: https://twitter.com/exchgART\ndiscord: https://discord.gg/2ambwf3z4A\n---\n\nExchange is the most innovative NFT marketplace on Solana. With the Exchange Notification NFT, every transaction you make increases your status and earns you perks. Bid on almost any NFT you find on Exchange, listed or unlisted. Make a reasonable offer and the owner will receive an alert right in their wallet.\n"
  },
  {
    "path": "projects/exodus.md",
    "content": "---\nslug: \"exodus\"\ndate: \"2020-04-03\"\ntitle: \"Exodus\"\nlogline: \"Exodus is a crypto wallet that supports the SOL asset.\"\ncta: \"https://exodus.io\"\nlogo: /img/exodus.svg\ncategory: wallet\nstatus: live\n---\n\nExodus announced support for the SOL token in late 2020. Our product line of desktop, mobile, and hardware crypto wallets all natively support the SOL asset.\n"
  },
  {
    "path": "projects/exolix.md",
    "content": "---\nslug: \"exolix\"\ndate: \"2020-04-03\"\ntitle: \"Exolix\"\nlogline: \"Exolix is a cryptocurrency exchange that supports the SOL asset.\"\ncta: \"https://exolix.com/\"\nlogo: /img/exolix.svg\ncategory: exchange\ntwitter: https://twitter.com/exolix_com\nstatus: live\n---\n\nExolix is a fast, anonymous, reliable, and fully transparent cryptocurrency exchange that supports SOL.\n"
  },
  {
    "path": "projects/explorer.md",
    "content": "---\nslug: \"explorer\"\ndate: \"2020-04-03\"\ntitle: \"Solana Explorer\"\nlogline: \"The Solana Explorer allows users to look up transactions and accounts on the various Solana clusters.\"\ncta: \"https://explorer.solana.com/\"\nlogo: /img/explorer.svg\ncategory: explorer\nstatus: live\n---\n\nThe Solana Explorer allows users to look up transactions and accounts on the various Solana clusters.\n"
  },
  {
    "path": "projects/exposure.md",
    "content": "---\nslug: \"exposure\"\ndate: \"2021-08-26\"\ntitle: \"Exposure\"\nlogline: \"Crypto ETFs built on Solana.\"\ncta: \"https://exposurefi.com\"\ncategory: DEFI, SPL\nlogo: /img/exposure.svg\nstatus: building\n---\n\nExposure is developing the first automated crypto traded fund (ACTF) that is available on a decentralized application (dApp) built using Solana, a smart contract blockchain. Exposure's goal is to create decentralized investment products that can increase exposure to cryptocurrency markets, while at the same time decreasing portfolio risk.\n\nExposure is being developed by Anaxii Blockchain Group. A collective of developers looking to bridge that gap between traditional finance and blockchain.\n"
  },
  {
    "path": "projects/fabric.md",
    "content": "---\nslug: \"fabric\"\ntitle: \"FABRIC\"\ndate: 2021-06-22\nlogline: \"FABRIC is a synthetic asset issuance protocol that allows users to gain exposure to a variety of asset classes otherwise unavailable on the Solana network.\"\ncta: \"https://twitter.com/official_fabric\"\ncategory: defi\nlogo: /img/fabric.svg\nstatus: Building\nwebsite: https://fsynth.io/\ntwitter: https://twitter.com/official_fabric\ndiscord: https://discord.com/invite/RBxJrKd3X6\n---\n\nFABRIC is built on the Solana Ecosystem and leverages the Serum DEX GUI to allow users to trade FAB.\nThe FABRIC protocol is a decentralized synthetic asset issuance protocol. All synthetic assets are collateralized by FABRIC tokens (FAB) which must be locked in the FABRIC pool to enable issuance of synthetic assets, known as SPL Synthetics. Users directly interact with the FABRIC pool, requiring no counterparties and avoiding common issues experienced on exchanges, such as liquidity or slippage issues. Once minted, users can trade these SPL Synthetics on the Serum DEX. It is not a requirement to hold FAB to trade on the Fsynth.Exchange or Serum DEX.\n"
  },
  {
    "path": "projects/famousfoxfe.md",
    "content": "---\nslug: \"famousfoxfederation\"\ndate: \"2021-10-03\"\ntitle: \"Famous Fox Federation\"\nlogline: \"The Famous Fox Federation is a collection of 7,777 (from over a million combinations) randomly generated and stylistically generated NFTs that exist on the Solana Blockchain.\"\ncta: \"https://famousfoxes.com/\"\nlogo: /img/famousfox.png\ncategory: nft\nstatus: live\nwebsite: https://famousfoxes.com/\ntwitter: https://twitter.com/FamousFoxFed\ndiscord: https://discord.gg/S7cPjuXEUu\n---\n\nThe Famous Fox Federation is a collection of 7,777 (from over a million combinations) randomly generated and stylistically generated NFTs that exist on the Solana Blockchain. The FFF also recognizes all of those less fortunate in the world and as part of our mission we will donate a minimum of 1500 SOL from our proceeds towards causes that the community offers and votes on.\n\nFederation members can participate in exclusive events that will be hosted such as exclusive NFT mints, raffles, community giveaways, and more.\n"
  },
  {
    "path": "projects/fancydiamonds.md",
    "content": "---\nslug: \"fancydiamonds\"\ndate: \"2021-11-17\"\ntitle: \"Fancy Diamonds\"\nlogline: \"The finest collection on solana. 2500 distinctly crafted NFTs inspired by fantasy\"\ncta: \"https://holdfancy.diamonds/\"\nlogo: /img/fancydiamonds.jpg\ncategory: nft\nstatus: building\nwebsite: https://holdfancy.diamonds/\ntwitter: https://twitter.com/fancydiamondSOL\ndiscord: https://discord.gg/fancydiamondsol\n---\n\nThe finest collection on solana. 2500 distinctly crafted NFTs inspired by fantasy\n"
  },
  {
    "path": "projects/fancyfrenchienft.md",
    "content": "---\nslug: \"fancyfrenchienft\"\ndate: \"2021-10-31\"\ntitle: \"Fancy Frenchies\"\nlogline: \"Found in the cute and cuddly section of the metaverse, one can find 10,000 Fancy Frenchies barking all over the Solana network\"\ncta: \"https://fancyfrenchienft.com\"\nlogo: /img/fancyfrenchienft.jpg\ncategory: nft\nstatus: live\nwebsite: https://fancyfrenchienft.com\ntwitter: https://twitter.com/fancyfrenchnft\ntelegram: https://twitter.com/fancyfrenchnft\ndiscord: https://discord.gg/g72anwnEvR\n---\n\nFound in the cute and cuddly section of the metaverse, one can find 10,000 Fancy Frenchies barking all over the Solana network\n"
  },
  {
    "path": "projects/fantasykombat.md",
    "content": "---\nslug: \"fantasykombat\"\ndate: \"2021-10-22\"\ntitle: \"FantasyKombat\"\nlogline: \"A next generation Fantasy Sports game for MMA/UFC fans: Recruit, Train, Fight, Profit\"\ncta: \"https://www.fantasykombat.com/\"\nlogo: /img/fantasykombat.png\ncategory: game, nft\nstatus: live\nwebsite: https://www.fantasykombat.com\ntwitter: https://twitter.com/Fantasy_Kombat\n---\n\nA next generation Fantasy Sports game for MMA/UFC fans: Recruit, Train, Fight, Profit"
  },
  {
    "path": "projects/fantom.md",
    "content": "---\nslug: \"fantom\"\ndate: \"2020-04-03\"\ntitle: \"Fantom\"\nlogline: \"Fantom is a fast, high-throughput open-source smart contract platform for digital assets and dApps.\"\ncta: \"https://fantom.foundation/blog/alameda-research-invests-35m-into-fantom-foundation/\"\nlogo: /img/fantom.svg\ncategory: infra\nstatus: live\n---\n\nThe Fantom Foundation is building a highly scalable blockchain ecosystem that facilitates decentralized, scalable, and secure technologies.\n\nFantom is a fast, scalable, and secure layer-1 platform built on an aBFT consensus protocol.\n\nThe speed, low transaction costs, and high throughput makes Fantom ideal for DeFi applications as well as real world uses.\n\nFantom is pushing towards a non-tribalistic cross-chain ecosystem with other platforms like Solana, while also reducing friction for developers who want to build on multiple ecosystems.\n"
  },
  {
    "path": "projects/fatguy.md",
    "content": "---\nslug: \"FatGuy\"\ndate: \"2020-10-20\"\ntitle: \"FatGuy\"\nlogline: \"3225 Unique NFTs.The metaverse is endless, will you able to find me?\"\ncta: \"https://fatguy.cool\"\nlogo: /img/fatguy.png\ncategory: nft, game\nstatus: building\nwebsite: https://fatguy.cool/\ntwitter: https://twitter.com/fatguynft\ndiscord: https://discord.gg/fatguy\n---\n\n3225 Unique NFTs.The metaverse is endless, will you able to find me?\n"
  },
  {
    "path": "projects/fennecthug.md",
    "content": "---\nslug: \"fennecthug\"\ndate: \"2021-10-27\"\ntitle: \"Fennec Thug Association\"\nlogline: \"Thugest Deflationary NFT made with on Solana | Less than 1,175 NFTs with 100% Royalties to sweep the floor atm\"\ncta: \"https://fennec.associates\"\nlogo: /img/fennecthug.png\ncategory: nft\nstatus: live\nwebsite: https://fennec.associates\ntwitter: https://twitter.com/FennecThugAsso\ndiscord: https://discord.gg/9FwR75JRUc\n---\n\nFennecs were once alone and lost in the desert, trying to survive human invasion. But a group gathered together and founded the most thuggish & unexpected association.\n\nThe Fennec Thug Association is a collection of 1,175 randomly generated & unique art pieces carefully hand drawn and selected by our beloved artist. There are over 250 possible attributes, some rarer than others.\n\nJoin us on our journey & experience where the Wild West meets the Sahara Desert and Cuteness meets Thuggery.\n\nHolding a Fennec ensures you a place of choice in our association and juicy rewards through the redistribution of royalties.\n"
  },
  {
    "path": "projects/finefillies.md",
    "content": "---\nslug: \"finefillies\"\ndate: \"2021-11-01\"\ntitle: \"Fine Fillies\"\nlogline: \"We are building our 3rd horse racing game, which will become THE horse racing virtual universe of the future!\"\ncta: \"https://finefillies.io\"\nlogo: /img/finefillies.jpg\ncategory: nft, game\nstatus: building\nwebsite: https://finefillies.io\ntwitter: https://twitter.com/photofinishgame\ndiscord: https://discord.gg/8wz6hwE\n---\n\nthe Fine Fillies! The Fine Fillies are a brand new and 100% unique collection of only 5,000 NFT's on the Solana blockchain. Each Fine Filly is procedurally generated from a list of over 170+ traits, \nand are your key to earning a real NFT Race Horse in our upcoming horse racing game.\n"
  },
  {
    "path": "projects/fluidity.md",
    "content": "---\nslug: \"fluidity\"\ntitle: \"Fluidity\"\ndate: \"2021-05-28\"\nlogline: \"Fluidity rewards users when they interact with cryptocurrencies.\"\ncta: https://fluidity.money\ncategory: stablecoin, defi\nlogo: /img/fluidity.svg\nstatus: Building\nwebsite: https://fluidity.money\ntwitter: https://twitter.com/fluiditymoney\ntelegram: https://t.me/fluiditymoney\ndiscord: https://discord.gg/CNvpJk4HpC\n---\n\nFluidity allows Solana based assets to be converted into a Fluid version that rewards users when they use them. Fluidity will launch on Solana and integrate with Solana based Defi Protocols. Fluidity is also a Solana Grant recipient.\n"
  },
  {
    "path": "projects/flux.md",
    "content": "---\nslug: \"Flux\"\ndate: \"2021-20-08\"\ntitle: \"Flux\"\nlogline: \"Flux is a cross-chain oracle aggregator that provides smart contracts with access to economically secure data feeds on anything.\"\ncta: \"https://fluxprotocol.org\"\nlogo: /img/flux.svg\ncategory: oracle\nstatus: building\nwebsite: https://fluxprotocol.org\ntwitter: https://twitter.com/fluxprotocol\ntelegram: https://t.me/fluxprotocol\ndiscord: https://discord.com/invite/sJUveAvJHf\n---\n"
  },
  {
    "path": "projects/fluxart.md",
    "content": "---\nslug: \"fluxart\"\ndate: \"2021-10-27\"\ntitle: \"Flux\"\nlogline: \"Long Form Generative Art stored immutably on Solana\"\ncta: \"https://fluxproject.art\"\nlogo: /img/fluxnft.jpg\ncategory: nft\nstatus: building\nwebsite: https://fluxproject.art\ntwitter: https://twitter.com/FluxArtProject\ndiscord: https://discord.gg/6SVng3Q4eR\n---\n\nFlux is an NFT art project on Solana, committed to high quality & unique long form generative art.\nWe're focused on building a great community & minting beautiful art for them to own & enjoy. \nOur first art drop is Evolutions and our vision is to expand the platform to attract our favourite generative artists to Solana.\n"
  },
  {
    "path": "projects/foresight.md",
    "content": "---\nslug: \"foresight\"\ndate: \"2020-11-20\"\ntitle: \"Foresight Prediction Market\"\nlogline: \"We are building a platform/marketplace for prediction using the “wisdom of crowds\"\ncta: \"https://www.foresight.mobi/\"\nlogo: /img/foresight.png\ncategory: app,nft\nstatus: building\nwebsite: https://www.foresight.mobi/\n---"
  },
  {
    "path": "projects/forgebots.md",
    "content": "---\nslug: \"forgebots\"\ndate: \"2021-10-17\"\ntitle: \"ForgeBots\"\nlogline: \"3D generative robots created to live on Solana for eternity. Existing to support STEM/Art non-profits.\"\ncta: \"https://twitter.com/forgebots\"\nlogo: /img/forgeboats.png\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/forgebots\ndiscord: https://discord.com/invite/nZmwCFbtC2\n---\n\n3D generative robots created to live on Solana for eternity. Existing to support STEM/Art non-profits.\n"
  },
  {
    "path": "projects/fractality.md",
    "content": "---\nslug: \"fractality\"\ndate: \"2020-09-30\"\ntitle: \"Fractality\"\nlogline: \"Exploring Fractal Worlds\"\ncta: \"https://www.fractalityworld.io\"\nlogo: /img/fractalityworld.png\ncategory: nft\nstatus: building\nwebsite: https://www.fractalityworld.io\ntwitter: https://twitter.com/FractalityWorld\ndiscord: https://discord.gg/y99tej8FQ2\n---\n\nThere are multiple attributes in each fractal. However only 2 attributes determine the rarity: Zoom and Timeline.\nHigher zooms are more rare and Timelines represent where the fractal exists. Golden Ages and Oblivion Fractals are the most rare.\n"
  },
  {
    "path": "projects/frakt.md",
    "content": "---\nslug: \"FRAKT\"\ndate: \"2021-07-20\"\ntitle: \"FRAKT\"\nlogline: \"Generative art NFT collection on Solana.\"\ncta: https://frakt.art/\nlogo: /img/frakt.svg\ncategory: nft\nstatus: live\nwebsite: https://frakt.art/\ntwitter: https://twitter.com/FraktArt?s=20\ndiscord: https://discord.com/invite/frakt\ntelegram: https://t.me/joinchat/-NQJUXugoFlhZDYy\n---\n\nFRAKT is the first generative art NFT collection on Solana.\n"
  },
  {
    "path": "projects/francium.md",
    "content": "---\nslug: \"francium\"\ntitle: \"Francium\"\ndate: 2021-06-22\nlogline: \"Francium is a DeFi protocol built on Solana.\"\ncta: \"https://francium-protocol.io/\"\ncategory: defi\nlogo: /img/francium.svg\nstatus: Live\nwebsite: https://francium-protocol.io/\ntwitter: https://twitter.com/Francium_Defi\ntelegram: https://t.me/joinchat/zxN7cvrWGmljNDJl\ndiscord: https://discord.com/invite/qNcQwwRHwq\n---\n\nFrancium is an innovative leveraged yield aggregator built on Solana bringing users continuous high APY through diverse community strategies.\n"
  },
  {
    "path": "projects/friktion.md",
    "content": "---\nslug: \"friktion\"\ndate: \"2021-10-29\"\ntitle: \"Friktion\"\nlogline: \"Your on-chain portfolio manager, built to perform across market cycles. Devnet Alpha coming soon Solana\"\ncta: \"https://friktion.finance\"\nlogo: /img/friktion.jpg\ncategory: amm, defi\nstatus: building\nwebsite: https://friktion.finance\ntwitter: https://twitter.com/friktion_labs\nmedium: https://friktionlabs.medium.com\n---\n\nBringing DeFi to 1 billion users\n\nA suite of asset management products powering the evolution of DeFi on Solana, designed to put your capital to better use across market conditions.\n\nFOR INVESTORS\n\nAutomated portfolio management that generates yield across market cycles.\n\nFOR TRADERS\n\nTrade top DeFi names with optionality, the smarter version of leverage, without liquidations. Hedge downside while maximising yield on LP positions.\n\nFOR DAOs\nManage your treasury, build your community, and hire the best talent through IOOs and Structured Liquidity Mining\n"
  },
  {
    "path": "projects/frog.md",
    "content": "---\nslug: frog\ntitle: FROG\ndate: 2021-07-15T00:00:00.000Z\nlogline: FROG is a project rewards creators, across CT and beyond, for their original art and memes.\ncta: \"https://froglana.com/\"\ncategory: NFT\nlogo: /img/frog.svg\nstatus: Live\nwebsite: https://froglana.com/\ntwitter: https://twitter.com/frogsolana\ndiscord: https://discord.gg/kqJtNkb9C3\n---\n\nFROG IS A COMMUNITY MEME TOKEN, BUILT ON SOLANA BLOCKCHAIN.\nIT HAS A GREAT USE CASE OF RATING AND IS REWARDING MEME/ART CREATORS.\n\n<b>Website</b>: https://froglana.com/ </br>\n<b>Twitter</b>: https://twitter.com/frogsolana </br>\n<b>Discord</b>: https://discord.gg/kqJtNkb9C3 </br>\n<b>Medium</b>: https://frogsolana.medium.com </br>\n"
  },
  {
    "path": "projects/frogparty.md",
    "content": "---\nslug: \"frogparty\"\ndate: \"2021-11-18\"\ntitle: \"FrogParty\"\nlogline: \"Frog Party, Solana's Social MMO. PLAY NOW: http://frog.party\"\ncta: \"https://www.frog.party/\"\nlogo: /img/frogparty.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.frog.party/\ntwitter: https://twitter.com/FrogPartyNFT\ndiscord: https://discord.gg/SBEQyfzAFv\n---\n\nFrog Party, Solana's Social MMO. \nPLAY NOW: http://frog.party\n"
  },
  {
    "path": "projects/frontier.md",
    "content": "---\nslug: \"frontier\"\ndate: \"2020-04-03\"\ntitle: \"Frontier\"\nlogline: \"Frontier is a chain-agnostic DeFi aggregation layer.\"\ncta: \"https://frontier.xyz/\"\nlogo: /img/frontier.svg\ncategory: DeFi, SPL\nstatus: building\nwebsite: https://frontier.xyz/\ntwitter: https://twitter.com/FrontierDotXYZ\ntelegram: https://t.me/FrontierDotXYZ\n---\n\nFrontier is a chain-agnostic DeFi aggregation layer. To date, they have added support for DeFi on Ethereum, Binance Chain, BandChain, Kava, and Harmony. Frontier will enter into the Polkadot ecosystem via StaFi Protocol, and it will now put vigorous efforts towards Serum and Solana.\n"
  },
  {
    "path": "projects/furiousflowers.md",
    "content": "---\nslug: \"furiousflowers\"\ndate: \"2021-10-31\"\ntitle: \"Furious Flowers\"\nlogline: \"5000 Furious Flowers on the Solana blockchain.\"\ncta: \"https://www.furiousflowers.art\"\nlogo: /img/furiousflowers.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.furiousflowers.art\ntwitter: https://twitter.com/FuriousFlowers\ndiscord: https://discord.com/invite/AwWkajHrEU\n---\n\nAs humanity’s destruction of nature spread, we were forced to adapt. We grew arms, learned our way around every kind of weapon and gathered on the Solana blockchain to form an army of 5000 Furious Flowers.\nOur Flowers are randomly generated using over 190+ different attributes with varying rarities. The traits include face, stem, petals, hands, teeth, backround, face color and petal color. A list with all attributes and their respective rarities will be available here shortly after the launch.\nAll our flowers are 3D rendered in Blender, using Cycles. Cycles is a ray-trace based render engine, creating realistic lighting, shadows and reflections. With an emphasis on imperfections, realistic materials and gruesome weapons, we aim to create a sinister take on the classic claymation style.\n"
  },
  {
    "path": "projects/future finance.md",
    "content": "---\nslug: \"futurefinance\"\ntitle: \"Future Finance\"\ndate: 2021-07-25\nlogline: \"Fixed rate and swap contracts tokenized on DEX Serum.\"\ncategory: defi\nlogo: /img/futurefinance.svg\ncta: \"https://future-ftr.io/\"\nstatus: live\nwebsite: https://future-ftr.io/\ntwitter: https://twitter.com/ftr_finance\ntelegram: https://t.me/joinchat/5R6McB2bKcA0MTBk\ndiscord: https://discord.com/invite/RdWZsebQfX\n---\n\nFuture Finance offers fixed rate and swap contracts tokenized on $SOL DEX Serum. Risk management designed to disrupt funding, farming, and yield markets.\n"
  },
  {
    "path": "projects/galacticgeckos.md",
    "content": "---\nslug: \"galacticgecko\"\ndate: \"2021-10-03\"\ntitle: \"Galactic Gecko Space Garage\"\nlogline: \"Galactic Gecko Space Garage is an NFT Social Adventure Club featuring 10,000 warrior turned space racing geckos. “Sponsor” a Galactic Gecko by owning its NFT on the Solana Blockchain. \"\ncta: \"https://galacticgeckos.app/\"\nlogo: /img/galacticgecko.png\ncategory: nft, gaming\nstatus: live\nwebsite: https://galacticgeckos.app/\ntwitter: https://twitter.com/galacticgeckosg\ndiscord: https://discord.gg/9pd6fKWdQk\n---\n\nGalactic Gecko Space Garage is an NFT Social Adventure Club featuring 10,000 warrior turned space racing geckos. “Sponsor” a Galactic Gecko by owning its NFT on the Solana Blockchain. Doing so will grant you a spot in the most elite, fierce and thrill-seeking club in the universe. Choose your faction (or factions) wisely. It has cosmic consequences..\n"
  },
  {
    "path": "projects/gate.md",
    "content": "---\nslug: \"gate\"\ndate: \"2020-04-03\"\ntitle: \"Gate\"\nlogline: \"Gate.io listed SOL in the summer of 2020 and currently has multiple SOL spot trading pairs on their exchange.\"\ncta: \"http://gate.io/\"\nlogo: /img/gate.svg\ncategory: exchange\nstatus: live\nwebsite: http://gate.io/\"\ntwitter: https://twitter.com/gate_io\ntelegram: https://t.me/gateio\n---\n\nGate.io is a trading platform that does not charge listing fees, launches quality projects, and provides users with a variety of blockchain asset trading services. After winning the listing vote in June of 2020, SOL was listed on the Gate.io exchange.\n"
  },
  {
    "path": "projects/gatefund.md",
    "content": "---\nslug: \"hackengateeco\"\ndate: \"2021-05-12\"\ntitle: \"Hacken & Gate.io Ecosystem Fund\"\nlogline: \"The Hacken & Gate.io fund will accelerate the growth and development of high quality projects in the Solana Ecosystem in Eastern Europe. Specifically, Russia, Ukraine, and Belarus.\"\nlogo: /img/hackengate.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-secures-60m-fund-to-drive-growth-in-emerging-markets\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/hackeneco.png\nstatus: live\n---\n\nGate.io was established in 2013. As one of the world's top 10 exchanges with real trading volume, the first choice for more than 3 million registered customers, and with business in more than 130 countries around the world, we provide one-stop digital asset solutions.\n\nFrom the very beginning, Hacken considered security and privacy to be fundamental human rights. Now, they are one of the leading cybersecurity consulting companies with an essential focus on blockchain security, with about 300 successful case studies showing their success in providing a variety of services to businesses, such as bug bounty programs, penetration testing.\n\nHacken and Gate.io established the fund to invest in and provide guidance to DeFi and Web3 projects building on Solana. Up to $20M will be invested in some of the most exciting new technologies and projects in the Solana ecosystem.\n"
  },
  {
    "path": "projects/gatelabs.md",
    "content": "---\nslug: \"gatelabs\"\ndate: \"2021-05-07\"\ntitle: \"Gate Labs\"\nlogline: \"Gate.io’s fund provides projects building on Solana the access to growth opportunities within new markets in the Asia-Pacific region.\"\nlogo: /img/gate.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-development-growth-strategic-investment-funds\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/gate.png\nstatus: live\n---\n\nEstablished in January of 2021, Gate Labs was founded to provide entrepreneurs within the blockchain sector the support they need to grow their business.\n\nUp to $20M will be deployed through the Gate.io’s fund across projects building on Solana.\n\nThese projects are granted access to growth opportunities within new markets in the Asia-Pacific region. As the investment arm of the Gate.io exchange, Gate Labs will help projects gain exposure to global audiences and support long-term formulation of brand awareness.\n"
  },
  {
    "path": "projects/gears.md",
    "content": "---\nslug: \"gears\"\ndate: \"2021-08-02\"\ntitle: \"Gears\"\nlogline: \"Tools for tracking on the Solana blockchain.\"\ncta: \"https://decommas.io/gears/\"\nlogo: /img/gears.svg\ncategory: app, defi\nstatus: live\nwebsite: https://decommas.io/gears/\ntwitter: https://twitter.com/decommas\ndiscord: https://t.co/cvobo3OTqF?amp=1\ntelgram: https://t.me/decommas\n---\n\nDeCommas Gears - tools for tracking on the Solana blockchain. Designed for a quick and detailed overview. Decommas Gears is a convenient way to track activity inside Solana blockchain.\n"
  },
  {
    "path": "projects/giraffesol.md",
    "content": "---\nslug: \"giraffesol\"\ndate: \"2021-11-18\"\ntitle: \"GiraffeSol\"\nlogline: \"4069 Algorithmically Generated NFT Giraffes\"\ncta: \"https://www.solanalongnecks.com/\"\nlogo: /img/giraffesol.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.solanalongnecks.com/\ntwitter: https://twitter.com/GiraffeSolNFT\ndiscord: https://discord.com/invite/36ZuG7bAqe\n---\n\n4069 algorithmically generated giraffe NFTs on the Solana blockchain\n"
  },
  {
    "path": "projects/gloompunkclub.md",
    "content": "---\nslug: \"gloompunkclub\"\ndate: \"2021-10-03\"\ntitle: \"Gloom Punk Club\"\nlogline: \"Gloom Punk Club is a dystopian mystery, with beautifully rendered, hand-drawn art. Uncover the secrets with a first of its kind unlockable story told only through NFT drops.\"\ncta: \"https://gloompunkclub.com/\"\nlogo: /img/gloompunk.png\ncategory: nft\nstatus: live\nwebsite: https://gloompunkclub.com/\ntwitter: https://twitter.com/gloompunkclub\ndiscord: https://discord.com/invite/uudGTzvGBu\n---\n\nGloom Punk Club is a dystopian mystery, with beautifully rendered, hand-drawn art. Uncover the secrets with a first of its kind unlockable story told only through NFT drops.\n"
  },
  {
    "path": "projects/goatcollection.md",
    "content": "---\nslug: \"goatcollection\"\ndate: \"2021-10-29\"\ntitle: \"G.O.A.T. Collection\"\nlogline: \"The 3D high-quality collective base of the G.O.A.T.'s of our time. Exclusively on Solana\"\ncta: \"https://goatcollection.io\"\nlogo: /img/goatcollection.jpg\ncategory: nft\nstatus: building\nwebsite: https://goatcollection.io\ntwitter: https://twitter.com/GOAT_SOLNFT\ndiscord: https://discord.com/invite/goatcollection\n---\n\nWe are a 3D high-quality collection that is inspired by the crypto leaders of the New World. Our collection consists of 10,000 unique GOATs ready to dominate the Solana blockchain world. \nJust as the crypto leaders have done.\n\nWe will put everything we have into making this collection better and better for our community. The roadmap justifies our intentions and will show you how far we are willing to go.\n\n220 unique attributes have been crafted through cooperation with some of our favorite influencers. Each attribute will be a signature of someone everyone knows and follows.\n"
  },
  {
    "path": "projects/goblinlab.md",
    "content": "---\nslug: \"goblinlab\"\ndate: \"2021-10-31\"\ntitle: \"Goblin Laboratory\"\nlogline: \"The goblin laboratory is upon us. Upload your consciousness to a wetware surrogate and board the ark into hyperspace. Solana\"\ncta: \"https://goblinlab.io\"\nlogo: /img/goblinlab.jpg\ncategory: nft\nstatus: building\nwebsite: https://goblinlab.io\ntwitter: https://twitter.com/GoblinLabNFT\ndiscord: https://discord.com/invite/mtZKvwzVgh\n---\n\nThe goblin laboratory is upon us. Upload your consciousness to a wetware surrogate and board the ark into hyperspace. Solana\n"
  },
  {
    "path": "projects/godsofsolana.md",
    "content": "---\nslug: \"godsofsolana\"\ndate: \"2021-11-14\"\ntitle: \"Gods of Solana\"\nlogline: \"GodsOfSolana is a NFT project born on Solana blockchain with total of 6,990 hand drawn unique NFTs and 100+ attributes.\"\ncta: \"https://godsofsolana.com/\"\nlogo: /img/godsofsolana.jpg\ncategory: nft\nstatus: building\nwebsite: https://godsofsolana.com/\ntwitter: https://twitter.com/godsofsolananft\ndiscord: https://discord.com/invite/vD4RBA4FbS\n---\n\nIdea behind our project is that each person gets the chance to receive that “Top God” status. When we are born each of us get something that our ancestors left us with and each one of us gets labeled by work that they did, that process reflects minting in our case where you get that status not by your will, but by the will of others. After that you choose your own path, either you continue with what your ancestors left you with, never expanding and never evolving or you continue to fight and improve(in our case buying higher rarity NFTs from others).\n\nThat’s the time where “Clash of Gods” take place where you can prove yourself in many different events(for example art competitions, gaming events, programming, singing etc. everything will be voted by our community) and can earn SOL from our treasury so you can get more exposure and can buy higher value NFT from others moving your status forward.\nIn our lives not everyone can achieve “Top God” status, only a few hard working, lucky, talented can achieve that state. In that process we all go through process of choosing our path, either we choose Angel path or Devil path.\n"
  },
  {
    "path": "projects/godsofsolananft.md",
    "content": "---\nslug: \"godsofsolananft\"\ndate: \"2021-11-08\"\ntitle: \"GodsOfSolanaNFT\"\nlogline: \"GodsOfSolana is a NFT project born on solana blockchain with total of 10,000 hand drawn unique NFTs and 100+ attributes\"\ncta: \"https://linktr.ee/GodsOfSolana\"\nlogo: /img/godsofsolananft.jpg\ncategory: nft\nstatus: building\nwebsite: http://godsofsolana.com\ntwitter: https://twitter.com/godsofsolananft\ndiscord: https://discord.gg/k7tb7EctAW\n---\n\nGodsOfSolana is a NFT project born on solana blockchain with total of 10,000 hand drawn unique NFTs and 100+ attributes\n"
  },
  {
    "path": "projects/golbinlaboratory.md",
    "content": "---\nslug: \"goblinlaboratory\"\ndate: \"2021-10-14\"\ntitle: \"Goblin Laboratory\"\nlogline: \"The goblin laboratory is upon us. Upload your consciousness to a wetware surrogate and board the ark into hyperspace.\"\ncta: \"https://goblinlab.io/#/\"\nlogo: /img/goblin.png\ncategory: nft\nstatus: building\nwebsite: https://goblinlab.io/#/\ntwitter: https://twitter.com/GoblinLabNFT\ndiscord: https://discord.com/invite/12A3bcDE1f\n---\n\nThe goblin laboratory is upon us. Upload your consciousness to a wetware surrogate and board the ark into hyperspace.\n"
  },
  {
    "path": "projects/goodgamesguild.md",
    "content": "---\nslug: \"goodgamesguild\"\ndate: \"2021-09-16\"\ntitle: \"Good Games Guild\"\nlogline: \"A Gaming hub focus on blockchain-based games. #Play2Earn movement! Metaverse for the living\"\ncta: \"http://goodgamesguild.com/\"\nlogo: /img/ggg.svg\ncategory: app\nstatus: Building\nwebsite: http://goodgamesguild.com/\ntwitter: https://twitter.com/goodgamesguild\ntelegram: https://t.me/GoodGamesGuildChat\ndiscord: https://discord.gg/x47U9qkR5K\n---\n\nGood Games Guild (GGG) is a decentralized autonomous organization (DAO) that focus on non fungible tokens (NFTs) that oftenly used in blockchain-based games & virtual product.\n\nWe believe the future of gaming will be on the NFT & Blockchain technology, so we carry the mission to become the biggest hub for virtual world economy, NFT Gaming Community and Marketplace.\n"
  },
  {
    "path": "projects/grape protocol.md",
    "content": "---\nslug: \"grapeprotocol\"\ntitle: \"Grape Protocol\"\ndate: 2021-06-22\nlogline: \"GRAPE is a protocol for building token-based membership communities on the Solana blockchain.\"\ncta: \"https://grapes.network\"\ncategory: app, community\nlogo: /img/grapeprotocol.svg\nstatus: Live\nwebsite: https://grapes.network/\ntwitter: https://twitter.com/grapeprotocol\ndiscord: https://discord.gg/greatape\n---\n\nGRAPE is a decentralized social networking protocol to create, reward, and secure any online community by harnessing the power of Solana. $GRAPE is a currency that powers the Great Ape social eco system and is a utility token that can be used to access our suite of community building features. These features will also be offered to other communities in exchange for project tokens or for burning/spending $GRAPE.\n"
  },
  {
    "path": "projects/graphlinq protocol.md",
    "content": "---\nslug: \"graphlinqprotocol\"\ntitle: \"GraphLinq Protocol\"\ndate: 2021-06-22\nlogline: \"Automate actions on-chain & off-chain without having to code. learn: http://docs.graphlinq.io | build: http://ide.graphlinq.io | instant deploy: http://app.graphlinq.io\"\ncta: \"https://twitter.com/graphlinq_proto\"\ncategory: infra, tools, defi\nlogo: /img/graphlinqprotocol.svg\nstatus: Live\n---\n\nGraphLinq currently has integrations for ethereum, BSC, and Polygon and is now building the following integrations:\n\n1. Integration on our IDE & Engine\n   Logical Solana blocks/connectors for the following:\n   -> Solana Connector\n   -> On Solana Block\n   -> On Solana Transaction\n   -> On Solana Wallet Transaction\n   -> Get SOL Balance\n\nThese blocks are able to connect to any of the other 200+ logical blocks available on our iDE. For example, an on-chain stop loss on Pancakeswap, and many other use cases are possible.\n\nSample: Search for \"Ethereum\" on our IDE and browse all the available blocks.\n\n2. Integration on our App:\n   We have pre-made templates for Solana on our app, so newcomers can just come in, choose a template, change values here and there, and simply deploy!\n\n3. Integration on our Analytics:\n   We display the Solana chain's data visually on our Analytics platform. All of the data we fetch from our Engine/IDE, so we'll be open to adding more connectors depending on what you would like to present onto our analytics.\n\nSample: https://analytics.graphlinq.io/analytics/unicrypt\nWe've partnered with Polygon (Previously Matic), and we're advising them with an analytics platform.\n\nPlease let us know if you are interested in partnering with us. We're looking forward to working with the great minds at Solana.\n"
  },
  {
    "path": "projects/gravity.md",
    "content": "---\nslug: \"gravity\"\ndate: \"2020-04-03\"\ntitle: \"Gravity\"\nlogline: \"Gravity is an all-encompassing blockchain-agnostic oracle system.\"\ncta: \"https://gravity.tech\"\ncategory: oracle\nlogo: /img/gravity.svg\nstatus: building\nwebsite: https://gravity.tech\ntwitter: https://twitter.com/ProtocolGravity\ntelegram: https://t.me/gravity_protocol\ndiscord: https://discord.gg/ANZKhTw\n---\n\nGravity is a blockchain-agnostic oracle system that supports communication of blockchains with the outside world, cross-chain communication, and sidechains within a single unified structure.\n"
  },
  {
    "path": "projects/grimsynicate.md",
    "content": "---\nslug: \"grimsyndicate\"\ndate: \"2021-10-03\"\ntitle: \"Grim Syndicate\"\nlogline: \"Grim Syndicate is a 10,000 generative Grims launching on Solana. Serving the Ethereal Transit Authority since\"\ncta: \"https://grimsyndicate.com/\"\nlogo: /img/grimsyndicate.png\ncategory: nft\nstatus: live\nwebsite: https://grimsyndicate.com/\ntwitter: https://twitter.com/Grim__Syndicate\ndiscord: https://discord.com/invite/grimsyndicate\n---\n\nGrim Syndicate is a 10,000 generative Grims launching on Solana. Serving the Ethereal Transit Authority since\n"
  },
  {
    "path": "projects/grizzlylifting.md",
    "content": "---\nslug: \"grizzlylifting\"\ndate: \"2021-11-13\"\ntitle: \"Grizzly Lifting University\"\nlogline: \"3333 uniquely generated bears, powered by Solana\"\ncta: \"https://grizzlylifting.university/\"\nlogo: /img/grizzlylifting.jpg\ncategory: nft\nstatus: live\nwebsite: https://grizzlylifting.university/\ntwitter: https://twitter.com/GrizzlyLiftingU\ndiscord: https://discord.gg/GXwFnN9SKf\n---\n\nGrizzly Lifting University is a collection of 3333 generative Bears NFTs on Solana with hundreds of variants from their fur type to their clothing, to their accessories.\nDon't be fooled though, these bears may love to lift but they dabble in genetic experimentation. In attempts to continue their reign as the most superior species on earth, \nthese bears will go to extreme lengths!\n"
  },
  {
    "path": "projects/gruesomegoblins.md",
    "content": "---\nslug: \"gruesomegoblins\"\ndate: \"2021-11-1\"\ntitle: \"Gruesome Goblins\"\nlogline: \"An Army, 10,000 strong of the most Gruesome little Goblins invading the Solana blockchain.\"\ncta: \"https://www.gruesomegoblins.com\"\nlogo: /img/gruesomegoblins.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.gruesomegoblins.com/\ntwitter: https://twitter.com/GruesomeGoblins\ndiscord: https://discord.com/invite/Goblins\n---\n\nAn Army, 10,000 strong of the most Gruesome little Goblins invading the Solana blockchain.\n"
  },
  {
    "path": "projects/grumpygrandpasnft.md",
    "content": "---\nslug: \"grumpygrandpasnft\"\ndate: \"2021-11-06\"\ntitle: \"GrumpyGrandpas\"\nlogline: \"10,000 Unique Grumpy Grandpas Retired to the Solana blockchain\"\ncta: \"https://grumpygrandpasnft.com\"\nlogo: /img/grumpygrandpasnft.jpg\ncategory: nft\nstatus: building\nwebsite: https://grumpygrandpasnft.com\ntwitter: https://twitter.com/GrumpyGrandpas\ndiscord: https://discord.gg/JPRFFgBWvf\n---\n\nVerified Grumpy Guardians are given an all-access membership to Del SOL Assisted Living. \nThis is a retirement feature on the Solana blockchain for our retirement community.\nDel SOL puts family first, hosting a monthly bingo night where grandpas and their guardians can socialize and play for a chance at exclusive prizes and member benefits. \nWith all that Del SOL has to offer, it will be a wonder how your grandpa is still so damn grumpy.\n\n"
  },
  {
    "path": "projects/guardians.md",
    "content": "---\nslug: \"guardians\"\ndate: \"2021-11-13\"\ntitle: \"GUARDIANS\"\nlogline: \"Guardians 3333 Unique Guardians ready to protect the Meta Verse exclusively on SOLANA\"\ncta: \"https://guardiansproject.com/\"\nlogo: /img/guardians.jpg\ncategory: nft\nstatus: live\nwebsite: https://guardiansproject.com/\ntwitter: https://twitter.com/guardiansnft\ndiscord: https://discord.gg/guardiansnft\n---\n\nGuardians are a collection of 3,333 extremely detailed, fully 3D rendered Protectors of the Metaverse. \nEach and every Guardian trait has been built from the ground up to ensure that every Guardian has a unique and distinct appearance. \n"
  },
  {
    "path": "projects/guildverse.md",
    "content": "---\nslug: \"guildverse\"\ndate: \"2021-11-11\"\ntitle: \"Guild Verse\"\nlogline: \"Old-School Fantasy RPG NFT Project with 100exclusive NFTs releasing ~10 per week via holaplex Solana\"\ncta: \"https://guildverse.holaplex.com/#/\"\nlogo: /img/guildverse.jpg\ncategory: nft\nstatus: live\nwebsite: https://guildverse.holaplex.com/#/\ntwitter: https://twitter.com/GuildVerse\ndiscord: https://discord.com/invite/DK2MXBCWbC\n---\n\nOld-School Fantasy RPG NFT Project with 100exclusive NFTs releasing ~10 per week via holaplex Solana\n"
  },
  {
    "path": "projects/hapi.md",
    "content": "---\nslug: \"hapi\"\ndate: \"2021-05-19\"\ntitle: \"HAPI\"\nlogline: \"HAPI is a cross-chain protocol, aimed at creating new cybersecurity standards for DeFi market by providing real-time data on stolen funds and compromised wallets.\"\ncta: \"https://www.hapi.one/\"\nlogo: /img/hapi.svg\ncategory: app\nstatus: live\nwebsite: https://www.hapi.one\ntwitter: https://twitter.com/i_am_hapi_one\ntelegram: https://t.me/hapiHF\n---\n\nHAPI allows easy implementation in various use cases. It supports cross-chain solutions for most of the popular blockchains, such as Ethereum, Solana, and Polkadot.\n"
  },
  {
    "path": "projects/harmonia-eko.md",
    "content": "---\nslug: \"harmonia-eko\"\ndate: \"2021-10-24\"\ntitle: \"harmonia-eko\"\nlogline: \"harmonia-eko is the decentralized NFT x CO2 offset marketplace.\"\ncta: \"https://harmonia-eko.ghost.io\"\nlogo: /img/harmonia-eko.png\ncategory: NFT, app\nstatus: building\nwebsite: \"https://www.harmonia-eko.ghost.io\"\ndiscord: \"https://discord.com/invite/Vh84sw3B\"\ntwitter: \"twitter.com/harmonia-eko\"\n---\n\n_harmonia-eko_ is the Solana-powered CO2e offset marketplace, rewarding buyers with collectible and tradable NFT certificates, from the best of the web's artists!\n\n🌳🌍🌏🌌😌\n"
  },
  {
    "path": "projects/hashkey.md",
    "content": "---\nslug: \"hashkey\"\ndate: \"2021-05-07\"\ntitle: \"HashKey\"\nlogline: \"The HashKey fund aims to mobilise resources and provide guidance to Solana projects looking to access institutional and retail markets.\"\nlogo: /img/hashkey.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-development-growth-strategic-investment-funds\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/hashkey.png\nstatus: live\n---\n\nWith up to $20M reserved, teams and developers building on Solana will be eligible for HashKey's specialized ecosystem fund. Hashkey Capital employs a rigorous screening process based on deep knowledge of blockchain and digital asset markets, thematic research, and extensive industry tracking.\n\nSince November 2018, Hashkey has used this approach to evaluate over 1,000 opportunities, and have invested in more than 75 projects.\n\nAs a key member of the APAC blockchain community, the HashKey Capital ecosystem fund is uniquely positioned to support the growth of Solana ecosystem projects in the region.\n"
  },
  {
    "path": "projects/hatchlabz.md",
    "content": "---\nslug: \"hatchlabz\"\ndate: \"2021-11-13\"\ntitle: \"hatch labz\"\nlogline: \"a Solana NFT launchpad project, by thugDAO. Don't be an Egghead\"\ncta: \"https://twitter.com/hatchlabz\"\nlogo: /img/hatchlabz.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.hatchlabz.com/\ntwitter: https://twitter.com/hatchlabz\n---\n\na Solana NFT launchpad project, by thugDAO. Don't be an Egghead\n"
  },
  {
    "path": "projects/hazyhippos.md",
    "content": "---\nslug: \"hazyhippos\"\ndate: \"2021-09-17\"\ntitle: \"Hazy Hippos\"\nlogline: \"5,000 algorithmically generated hippos, all stored & distributed on the Solana blockchain. Over 4 million unique possible combinations.\"\ncta: \"https://hazyhippos.com/\"\nlogo: /img/hazyhippos.png\ncategory: nft\nstatus: live\nwebsite: https://hazyhippos.com/\ntwitter: https://twitter.com/HazyHipposNFT\ndiscord: https://discord.com/invite/SANVYCWsPx\n---\n\n5,000 algorithmically generated hippos, all stored & distributed on the Solana blockchain. Over 4 million unique possible combinations.\n"
  },
  {
    "path": "projects/hedgefinance.md",
    "content": "---\nslug: \"hedgefinance\"\ndate: \"2021-11-03\"\ntitle: \"Hedge Finance\"\nlogline: \"0% interest loans on Solana\"\ncta: \"https://www.hedge.sh\"\nlogo: /img/hedgefinance.jpg\ncategory: investmentfund\nstatus: building\nwebsite: https://www.hedge.sh\ntwitter: https://twitter.com/HedgehogFi\ndiscord: http://discord.gg/qfqegrRWmw\n---\n\n0% Interest Liquidity on Solana\nKeep your Solana and tap into additional liquidity with zero interest using HEDGE.\n\n**Flexible Liquidity**\nUse your USDH for day to day purchases or use it to multiply your crypto exposure at a fixed fee. We currently offer up to 6x exposure.\n\n**Why open a vault with Hedge?\nOpening a vault to generate USDH means that:**\n\nYou don’t need to sell SOL to get access to liquidity\nYou get to keep the upside in SOL price\nYou can do what you want with the generated USDH, since it is always redeemable for SOL\n"
  },
  {
    "path": "projects/hedgehog.md",
    "content": "---\nslug: \"hedgehog\"\ndate: \"2021-03-30\"\ntitle: \"Hedgehog\"\nlogline: \"Hedgehog is a user-centric prediction market platform.\"\ncta: \"https://twitter.com/HedgehogMarket\"\nlogo: /img/hedgehog.png\ncategory: defi, amm\nstatus: live\nwebsite: https://hedgehog.markets/#/\ntwitter: https://twitter.com/HedgehogMarket\ntelegram: https://t.me/hedgehogmarkets\ndiscord: https://discord.gg/vt8Dw5SN58\n---\n\nHedgehog is a lightning-fast prediction market that generates passive yield for LPs while providing users a seamless experience.\n"
  },
  {
    "path": "projects/hellcats.md",
    "content": "---\nslug: \"hellcats\"\ndate: \"2021-10-17\"\ntitle: \"HELLCATS\"\nlogline: \"HELLCATS are uniquely generated digital collectibles living in harmony on Solana Blockchain\"\ncta: \"https://hellcats.io/\"\nlogo: /img/hellcats.png\ncategory: nft\nstatus: building\nwebsite: https://hellcats.io/\ntwitter: https://twitter.com/hellyeahellcats\ndiscord: https://discord.com/invite/pZQrrCPpdG\n---\n\nHellcats features 8,888 hand-drawn wildcat avatars, each with a unique set of generated traits. Your minted Hellcat is your ticket to the Hellcats world.\n"
  },
  {
    "path": "projects/himalayancatcoin.md",
    "content": "---\nslug: \"himalayancatcoin\"\ndate: \"2021-11-14\"\ntitle: \"HimalayanCatCoin\"\nlogline: \"HIMA has become one of Solana’s biggest Cat memecoin, mascot, and ambassador\"\ncta: \"https://www.himalayancatcoin.com/\"\nlogo: /img/himalayancatcoin.jpg\ncategory: app\nstatus: live\nwebsite: https://www.himalayancatcoin.com/\ntwitter: https://twitter.com/yourproject\ntelegram: https://t.me/HimalayanCatCoin\ndiscord: https://discord.com/invite/himacoin\n---\n\nHIMA has become one of Solana’s biggest Cat memecoin, mascot, and ambassador. It is one of the first Solana Cat memecoin listed on Serum DEX. \nThe goal of HIMA is to help build the Solana community through fun and enjoyment.  In addition to our cool vibes and memes, we plan on providing fun games and solutions to the platform in the future. \n\nThe inspiration for HIMA is behind all the fandom and love the #dogcoins are getting. Cats are just as lovable and fun and it’s time they get to share in the spotlight. \nAs we say: It’s time to show the cats some love. \n\nWe admire all of our doggie greats, especially SAMO, but it’s time to make room for the Cats at the table. Join us on the journey.\nMeow.\n\n$HIMA #HIMACOIN\n"
  },
  {
    "path": "projects/hiro launchdao.md",
    "content": "---\nslug: \"hirolaunchdao\"\ntitle: \"Hiro LaunchDAO\"\ndate: 2021-06-22\nlogline: \"Hiro LaunchDAO is a decentralized, meritocratic venture capital protocol that leverages and rewards the wisdom of crowds to sustainably bring impactful projects onto the Solana ecosystem.\"\ncta: \"https://hiro.finance/\"\ncategory: defi\nlogo: /img/Hiro.png\nstatus: live\nwebsite: https://hiro.finance/\ntwitter: https://twitter.com/HiroLaunchdao\ndiscord: https://t.co/2Wdy1FaMHy?amp=1\n---\n\nHiro brings innovation to Solana in a way that holds true to blockchain ethos. It provides not only equitable and open access to venture funding new projects in the Solana ecosystem but also equitable and open access to the stewardship of those funds and decision-making over which projects to incubate. By creating a meritocratic network with an innovative consensus and incentive mechanism. Hiro ensures the longevity of its portfolio projects and moves investor focus into the long term.\n"
  },
  {
    "path": "projects/hoagnetwork.md",
    "content": "---\nslug: \"Hoag\"\ndate: \"2021-10-27\"\ntitle: \"Hoag\"\nlogline: \"A self hosted video platform for every content creator\"\ncta: \"https://hoag.network/\"\nlogo: /img/Hoag_logo.png\ncategory: app, nft, infra\nstatus: building\nwebsite: https://hoag.network/\ntwitter: https://twitter.com/hoagnetwork\ndiscord: https://discord.gg/QeyPpjfbrH\n---\n\nHoag Network is A self-hosted video platform for creators to run their own censorship resistant Twitch. The code is open source and was the latest Solana Hackathon winner on Media Prize.\n\nHoag PlayDAO is a decentralized media network that creates and distributes content. HOAG Play uses HOAG Networks‘ code and guarantees its development.\nMunk is a Solana NFT and the main host of “This is f\\* advice” talk show. There are a total of 5000 Munk Solana NFTs.\n"
  },
  {
    "path": "projects/hollowsoldiers.md",
    "content": "---\nslug: \"hollowsoldiers\"\ndate: \"2021-10-09\"\ntitle: \"Hollow Soldiers\"\nlogline: \"Hollow Soldiers are two groups of 3333 NFTs that are algorithmically generated, undead, and violent soldiers battling (see Battleground) for the reigns of a post-apocalyptic Earth housed on the Solana Blockchain.\"\ncta: \"https://hollowsoldiers.com/\"\nlogo: /img/hollowsoldiers.png\ncategory: nft, game\nstatus: live\nwebsite: https://hollowsoldiers.com/\ntwitter: https://twitter.com/HollowSoldiers\ndiscord: https://discord.com/invite/GkG8gVR6tB\n---\n\nHollow Soldiers are two groups of 3333 NFTs that are algorithmically generated, undead, and violent soldiers battling (see Battleground) for the reigns of a post-apocalyptic Earth housed on the Solana Blockchain.\n\nEach soldier is part of a faction, The Ravagers and The Roamers. Each one is unique and randomly generated with more than 99 traits. The traits will play a part in Generation 2 and an in-browser game which will begin development after launch.\n"
  },
  {
    "path": "projects/honeydao.md",
    "content": "---\nslug: \"honeydao\"\ndate: \"2021-09-06\"\ntitle: \"Honey DAO\"\nlogline: \"Decetralized VC comprised by DeFi developers, founders, influencers and traders, funding early-stage projects related to DeFi and NFT. Our investment size is $50K to $1m+, and funding is processed in 14 days.\"\ncta: \"https://www.honeydao.com/\"\nlogo: /img/honeydao.svg\ncategory: fund, investmentfund, governance\nStatus: live\n---\n\nHoney DAO is a decentralized VC focused in assisting and funding early-stage DeFi projects. Currently, the DAO has 120+ members inlcuding influential devs, founders and traders. Currently, our investment size is $50K to $1m+ (case by case). We help invested projects with community management, code review, graphics, job assistance, expanding partnerships and more. Our portfolio includes Divergence, Thales (Synthetix) and Insure DAO.\n\nProjects can reach us through email - business@honeydao.com, submit proposals through our website or join our Discord.\n"
  },
  {
    "path": "projects/hoo.md",
    "content": "---\nslug: \"hoo\"\ndate: \"2020-04-03\"\ntitle: \"Hoo\"\nlogline: \"Hoo has multiple SOL spot trading pairs on their exchange.\"\ncta: \"http://hoo.com/\"\nlogo: /img/hoo.svg\ncategory: exchange\nstatus: live\n---\n\nHoo is an exchange that listed SOL, Solana's native currency. You can trade SOL on hoo.com and explore their offerings.\n"
  },
  {
    "path": "projects/hornyhedgehogs.md",
    "content": "---\nslug: \"hornyhedgehogs\"\ndate: \"2021-10-16\"\ntitle: \"Horny Hedgehogs\"\nlogline: \"6969 uniquely generated, horny and collectible hedgehogs with proof of ownership stored on the Solana blockchain. The very first hedgehog-based collectibles in the NFT space!\"\ncta: \"https://www.hornyhedgehogs.com/\"\nlogo: /img/hornyhedge.png\ncategory: nft\nstatus: building\nwebsite: https://www.hornyhedgehogs.com/\ntwitter: https://twitter.com/hornyhedgehogs\ndiscord: https://discord.com/invite/eMBmrQtjNh\n---\n\n6969 uniquely generated, horny and collectible hedgehogs with proof of ownership stored on the Solana blockchain. The very first hedgehog-based collectibles in the NFT space!\n"
  },
  {
    "path": "projects/houseofpixel.md",
    "content": "---\nslug: \"houseofpixel\"\ndate: \"2021-11-18\"\ntitle: \"HousesOfPixel\"\nlogline: \"Solana Houses Of pixel collection of 247 homes. Beautiful houses and exclusive address for your NFTs\"\ncta: \"https://twitter.com/HousesOfPixel\"\nlogo: /img/houseofpixel.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/HousesOfPixel\ndiscord: https://discord.com/invite/jCNsNVg8QW\n---\n\nSolana Houses Of pixel collection of 247 homes. Beautiful houses and exclusive address for your NFTs\n"
  },
  {
    "path": "projects/hubblemarkets.md",
    "content": "---\nslug: \"hubblemarkets\"\ndate: \"2021-11-10\"\ntitle: \"Hubble Markets\"\nlogline: \"The Home of DeFi on Solana\"\ncta: \"https://hubble.markets\"\nlogo: /img/hubblemarkets.png\ncategory: defi\nstatus: building\nwebsite: https://hubble.markets\ntwitter: https://twitter.com/HubbleMarkets\ntelegram: https://t.me/hubblemarkets\ndiscord: https://discord.gg/C4jzzFfVRZ\n---\n\nAll Things DeFi on Solana\n\nBorrowing, Lending and Structured Products.\n"
  },
  {
    "path": "projects/humanprotocol.md",
    "content": "---\nslug: \"humanprotocol\"\ndate: \"2020-04-03\"\ntitle: \"Human Protocol\"\nlogline: \"The HUMAN Protocol is a broadly applicable approach to organizing, evaluating, and compensating human labor.\"\ncta: \"https://hmt.ai/\"\nlogo: /img/human.svg\ncategory: app\nstatus: live\nwebsite: https://www.humanprotocol.org/\ntwitter: https://twitter.com/human_protocol\ntelegram: http://hmt.ai/telegram\n---\n\nHuman Protocol helps machines learn by soliciting real people to perform \"labeling tasks\"—identifying raw data, such as videos, images, and text. That, in turn, provides meaningful information for machine learning to improve tasks such as visual or vocal recognition.\n\nThe Singapore-based company is integrating with Solana as scalability is crucial to equipping developers and organizations with additional resources to execute task labeling.\n"
  },
  {
    "path": "projects/hummingbot.md",
    "content": "---\nslug: \"hummingbot\"\ndate: \"2020-04-03\"\ntitle: \"Hummingbot\"\nlogline: \"Hummingbot is working with Solana to integrate their Liquidity mining solution so that miners/traders can earn fees by providing liquidity to Solana across various exchanges.\"\ncta: \"https://hummingbot.io/\"\nlogo: /img/hummingbot.svg\ncategory: infra\nstatus: live\n---\n\nHummingbot is an open-source crypto trading software client that allows users to trade cryptocurrency with high-frequency trading strategies, such as market making and arbitrage. Hummingbot currently supports nine exchanges, both centralized and decentralized.\n"
  },
  {
    "path": "projects/huobi.md",
    "content": "---\nslug: \"huobi\"\ndate: \"2020-04-03\"\ntitle: \"Huobi\"\nlogline: \"Huobi has listed the SOL token, and maintains three trading pairs.\"\ncta: \"https://www.huobi.pr/en-us/exchange/sol_btc/\"\nlogo: /img/huobi.svg\ncategory: exchange\nstatus: live\n---\n\nHuobi provides hundreds of tokens & futures trading pairs to enable traders to optimize their strategies in a seamless trading interface.\n"
  },
  {
    "path": "projects/huobifund.md",
    "content": "---\nslug: \"huobieco\"\ndate: \"2021-05-07\"\ntitle: \"Huobi Ecosystem Fund\"\nlogline: \"Huobi’s fund focuses on Solana ecosystem projects building infrastructure-related products, specifically those constructing middleware and DeFi infrastructure.\"\nlogo: /img/huobi.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-development-growth-strategic-investment-funds\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/huobieco.png\n---\n\nHuobi has long been focused on innovative blockchain infrastructure and brings nearly a decade of experience to the table.\n\nHuobi’s strategic fund will provide projects in the Solana ecosystem with strategic guidance on market insights, financing, mechanism design, and marketing support.\n\nUp to $20M will be allocated to teams developing the next generation of progressive and avant-garde blockchain solutions aiming to accomplish what other public chains cannot support or realize.\n"
  },
  {
    "path": "projects/hxro.md",
    "content": "---\nslug: \"hxro\"\ndate: \"2020-04-03\"\ntitle: \"Hxro\"\nlogline: \"Hxro is a blockchain-based crypto gaming platform that combines skill-based social media gaming with digital currency trading.\"\ncta: \"https://hxro.io/\"\nlogo: /img/hxro.svg\ncategory: defi, exchange\nwebsite: https://hxro.io/\ntwitter: https://twitter.com/RealHxro\ntelegram: https://t.me/Hxro_Consortium\ndiscord: https://discord.com/invite/kFUTYnm\nstatus: live\n---\n\nHxro is a cryptocurrency platform that offers perpetual, time-based digital derivatives markets. We provide a simplified way to interact with the market, giving traders an alternative way to express a view on price, hedge risk, and trade digital assets. Solana was listed on Hxro in Q1 of 2021.\n"
  },
  {
    "path": "projects/hydraswap.md",
    "content": "---\nslug: \"hydraswap\"\ntitle: \"HydraSwap\"\ndate: 2021-06-22\nlogline: \"HydraSwap is a Solana-based dex that is dedicated to providing users with CEX-level trading experience, supported by a revolutionary HMM core, cross-chain technologies, and powerful multi-module components.\"\ncta: \"https://twitter.com/HydraSwap_io\"\ncategory: defi, dex, amm\nlogo: /img/hydraswap.svg\nstatus: building\n---\n\nThe HydraSwap smart contract is built on the Solana network. Solana's leading network performance provides a sound basis for HydraSwap's advanced functionality and superior user experience. HydraSwap's improved infrastructure will also help Solana solidify its own league within the blockchain industry.\n"
  },
  {
    "path": "projects/hypebeastsworld.md",
    "content": "---\nslug: \"hypebeastsworld\"\ndate: \"2021-11-18\"\ntitle: \"HypeBeastsWorld\"\nlogline: \"Long live the Kong!A unique NFT adventure with 5,000 geniously generated Kongs, exclusive to the Solana metaverse\"\ncta: \"http://www.hypebeasts.world/\"\nlogo: /img/hypebeastsworld.jpg\ncategory: nft\nstatus: building\nwebsite: http://www.hypebeasts.world/\ntwitter: https://twitter.com/HypeBeastsWorld\ndiscord: https://discord.com/invite/5Tc4V6v5Gf\n---\n\nLong live the Kong!A unique NFT adventure with 5,000 geniously generated Kongs, exclusive to the Solana metaverse\n"
  },
  {
    "path": "projects/ichi.md",
    "content": "---\nslug: \"ichi\"\ndate: \"2021-04-28\"\ntitle: \"ICHI\"\nlogline: \"ICHI is a self-sustaining, community governed platform that is building Solana's in-house, non-custodial oneToken (a stablecoin valued at $1 called oneSOL) through a Decentralized Monetary Authority (DMA).\"\ncta: \"https://www.ichi.org/\"\nlogo: /img/ichi.svg\ncategory: governance\nstatus: building\nwebsite: https://www.ichi.org/\ntwitter: https://twitter.com/ichifarm\ntelegram: https://t.me/ichifarm\n---\n\nICHI is building a Decentralized Monetary Authority for the Solana community. This will bring the first decentralized stablecoin to the Solana ecosystem. oneSOL will be capital efficient (does not require you take a debt position), decentralized (governed by its holders), growth enabling (putting upward price pressure on the underlying SOL), and 100% on-chain (fully transparent). This will enable Solana to implement its own Monetary Policy through an underlying stable asset.\n"
  },
  {
    "path": "projects/identityswap.md",
    "content": "---\nslug: \"identityswap\"\ndate: \"2020-04-03\"\ntitle: \"IdentitySwap\"\nlogline: \"IdentitySwap is an Automatic Money Market (AMM) dApp that demonstrates decentralized identity on Solana.\"\ncta: \"https://github.com/civicteam/identity-swap\"\nlogo: /img/identityswap.svg\ncategory: AMM\nstatus: closed\nwebsite: https://identity.civic.finance/\ntwitter: https://twitter.com/identityswap\n---\n\nIdentitySwap is an Automatic Money Market (AMM) dApp that demonstrates decentralized identity on the Solana SPL Token-Swap program. The program connects with Civic’s identity verification system.\n"
  },
  {
    "path": "projects/idrs.md",
    "content": "---\nslug: \"idrs\"\ntitle: \"IDRS\"\ndate: 2021-08-11\ncta: \"https://rupiahdigital.com\"\nlogline: \"Rupiah Digital (IDRS) is a stablecoin powered by Solana Blockchain (SOL). By using Solana we provide the most scalable and cheapest Indonesian Rupiah Stablecoin that can be used as a gateway to access crypto, DeFi, and NFTs.\"\nlogo: /img/idrs.svg\ncategory: stablecoin\nstatus: live\nwebsite: \"https://rupiahdigital.com\"\ntelegram: https://t.me/rupiahdigitalcrypto\n---\n\nRupiah Digital - Your Gateway to Access Digital Assets using Indonesian Rupiah Stablecoin"
  },
  {
    "path": "projects/incept protocol.md",
    "content": "---\nslug: \"incept protocol\"\ndate: \"2021-10-15\"\ntitle: \"Incept Protocol\"\nlogline: \"The most user-friendly synthetic asset DEX on Solana\"\ncta: \"https://www.incept.so\"\nlogo: /img/incept_protocol.jpg\ncategory: dex\nstatus: building\nwebsite: https://www.incept.so\ntwitter: https://twitter.com/incept_protocol\ntelegram: https://t.me/InceptProtocol\ndiscord: https://discord.gg/9SzpnQNPcT\n---\n\nIncept protocol enables creation of synthetic assets that captures the real-time price movement of the global assets without the need of collateralized assets.\nThe protocol is decentralized and community governed.\n"
  },
  {
    "path": "projects/infinitydrakes.md",
    "content": "---\nslug: \"infinitydrakes\"\ndate: \"2021-11-19\"\ntitle: \"Infinity Drakes\"\nlogline: \"Collectable, evolvable and playable! 3D-Eggs evolvable over 4 stages to KingDrakes! On Solana.\"\ncta: \"https://infinitydrakes.com/\"\nlogo: /img/infinitydrakes.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://infinitydrakes.com/\ntwitter: https://twitter.com/infinitydrakes\ndiscord: https://discord.com/invite/3McCueksJk\n---\n\nInfinityDrakes are a one-of-a-kind collection of unique InfinityEggs that can be evolved to KingDrakes. We have over 200 different Attributes, every Drake is rendered uniquely in 3D and flying on the SolanaVerse!\nOn Mint Day you may be able to secure yourself your InfinityEggs. Each Egg will hatch after a short time to become a BabyDrake. Afterwards you are able to fuse 2 BabyDrakes together to get a new TeenageDrake! If you are fully immersed in the Kingdom you'll be fusing together 2 TeenageDrakes to get the final KingDrake. Be careful, the FinalDrake is the rarest Drake out here and there are only 2,500 available as only the best can breed them!\nOnce a month a Tribeevent will be held! According to their tribe and evolution, the Drakes have different abilities. You will be able to fight with your Drake(s) against a common enemy and get rewards if you win the battle!\nStarting January 5th!\n"
  },
  {
    "path": "projects/infinitylabs.md",
    "content": "---\nslug: \"infinitylabs\"\ndate: \"2021-09-29\"\ntitle: \"Infinity Labs\"\nlogline: \"Collection of 8888 beautiful scenes. 8 different timelines. Collect & merge together timelines to forge new and rarer realities\"\ncta: \"https://infinitylabsnft.com/\"\nlogo: /img/infinitylabs.png\ncategory: nft\nstatus: live\nwebsite: https://infinitylabsnft.com/\ntwitter: https://twitter.com/InfinityLabsNFT\ndiscord: https://t.co/SE7ARmMWCw?amp=1\n---\n\nInfinity Labs is a small collective of artists, engineers, ML experts and ex-AAA game devs.\nCollection of 8888 beautiful scenes. 8 different timelines. Collect & merge together timelines to forge new and rarer realities\n"
  },
  {
    "path": "projects/inksolum.md",
    "content": "---\nslug: \"inksolum\"\ndate: \"2021-10-23\"\ntitle: \"Inksolum\"\nlogline: \"Generative art on Solana. Psychoanalysis collection, 1100 Psyches.\"\ncta: \"http://inksolum.art/\"\nlogo: /img/inksolum.png\ncategory: nft\nstatus: live\nwebsite: https://inksolum.ai/\ntwitter: https://twitter.com/inksolum\ndiscord: https://discord.com/invite/kTRCJq2DFr\n---\n\nOur project is focused on the beauty of art and the possibilities offered by blockchain and solana to discover, share, value and exchange it. We have a long-term goal of building a community of both artists and collectors that can experiment with emotional art and push it to their bounderies.\n\nThe collections are based on different themes but with a common topic: different cross-cultural phenomenon that has been present in human groups for a long time. We will touch them in different ways without losing the essence of art, which is no other than expressing or comunnicating our mental states in a shared subjective context.\n\nWe have a dynamic mentality and enjoy experimenting with different techniques and processes (both automated and manual ones) without giving up on our vision of art. Our work is framed within the so-called generative art.\n"
  },
  {
    "path": "projects/intersolar.md",
    "content": "---\nslug: \"intersolar\"\ndate: \"2021-11-07\"\ntitle: \"Intersolar\"\nlogline: \"Intersolar is a digital universe of solar systems with planets and suns represented as NFTs on the Solana blockchain.\"\ncta: \"https://intersolar-nft.web.app/\"\nlogo: /img/intersolar.png\ncategory: game, nft\nstatus: building\nwebsite: https://intersolar-nft.com/\ntwitter: https://twitter.com/interSOLarNFT\ndiscord: https://discord.com/invite/XBGb9rhG4h\n---\n\nIntersolar is more than fancy images. Every Intersolar NFT has a unique position in our NFT universe. You will travel from planet to planet, mine resources and build your space empire.\n"
  },
  {
    "path": "projects/investin.md",
    "content": "---\nslug: \"investin\"\ndate: \"2020-09-05\"\ntitle: \"Investin\"\nlogline: \"Investin is a decentralized fund management protocol\"\ncta: \"https://www.investin.pro/\"\nlogo: /img/investin.svg\ncategory: DeFi\nstatus: live\nWebsite: https://www.investin.pro/\nTwitter: https://twitter.com/Investin_pro\nTelegram: https://t.me/Investin_pro1\nDiscord: https://discord.com/invite/Yf54h9B\n---\n\nInvestin is a decentralized fund management protocol that facilitates trustless interactions between prospecting investors and aspiring traders. The contract architecture is very composable which allows us to integerate almost any DeFi protocol on Solana blockchain, thus allowing fund managers/traders one stop dashboard for all things DeFi.\n"
  },
  {
    "path": "projects/irrilevants.md",
    "content": "---\nslug: \"irrilevants\"\ndate: \"2021-10-03\"\ntitle: \"AI: Artificial Irrelevants\"\nlogline: \"AI: Artificial Irrelevants are 4848 collectibles, designed by hand + generated by code\"\ncta: \"https://www.irrelevants.com/\"\nlogo: /img/irrilevant.png\ncategory: nft\nstatus: live\nwebsite: https://www.irrelevants.com/\ntwitter: https://twitter.com/Irrelevants_NFT\ndiscord: https://discord.com/invite/QSTZ2TAVnv\n---\n\nAI: Artificial Irrelevants are 4848 collectibles, designed by hand + generated by code\n"
  },
  {
    "path": "projects/ius.md",
    "content": "---\nslug: \"ius\"\ndate: \"2021-10-20\"\ntitle: \"IUS\"\nlogline: \"Island universe is an ecological currency based on the concept and implementation of meta universe. IUS is mainly committed to ecological construction and ecological empowerment. The birth of Ius is an enabling main chain ecological currency based on the ecological construction of the meta universe.\"\ncta: \"http://theislanduniverse.com/\"\nlogo: /img/ius.png\ncategory: app,nft,game\nstatus: live\nwebsite: http://theislanduniverse.com/\ntwitter: https://twitter.com/hpetkhtqbdq\ntelegram: https://0.plus/IUSAIUNGT\n---\n\nIsland universe is an ecological currency based on the concept and implementation of meta universe. IUS is mainly committed to ecological construction and ecological empowerment. The birth of Ius is an enabling main chain ecological currency based on the ecological construction of the meta universe.\n"
  },
  {
    "path": "projects/jackie.md",
    "content": "---\nslug: \"jackie\"\ndate: \"2021-09-03\"\ntitle: \"Jackie Chan Fan Token\"\nlogline: \"Jackie Chan Fan Token is community driven Crypto\"\ncta: \"https://jackietoken.tk/\"\nlogo: /img/jackie.svg\ncategory: explorer, app, spl\nstatus: live\nwebsite: https://jackietoken.tk/\ntwitter: https://twitter.com/jackie_token/\ntelegram: https://t.me/jackietoken\n---\n\nJackie Chan Fan Token is community driven crypto. Jackie Token is created because of there fan's love as reward, In future this token will be used as payment on ecommerce website while purchasing Master Jackie Chan related products.\n"
  },
  {
    "path": "projects/jambomambo.md",
    "content": "---\nslug: \"jambomambo\"\ndate: \"2021-11-09\"\ntitle: \"Jambo Mambo\"\nlogline: \"A community building a NFT P2E game & ecosystem! Collect Battle Earn \"\ncta: \"https://www.jambomambo.io\"\nlogo: /img/jambomambo.png\ncategory: nft\nstatus: building\nwebsite: https://www.jambomambo.io\ntwitter: https://twitter.com/JamboMamboLand\ntelegram: https://t.me/yourproject\ndiscord: https://discord.com/invite/vTNX7pWyVq\n---\n\nJambo Mambo is a project that builds with NFTs to bring together a community of gaming enthusiasts and creators. We will start with the Origin Drop, \nand the rest of Jambo Land and $Snacko-system will follow as outlined in the Roadmap above!\n\nWe are building in public; creating great experiences is our MO, therefore our community’s ideas and input is absolutely essential. \nIn the future, some prime decisions will be made by JamboDAO votes, and our infrastructure for circulating in-game revenue and enriching Jambo Mambo’s ecosystem will be put to use.\n"
  },
  {
    "path": "projects/jesi.md",
    "content": "---\nslug: \"jesi\"\ndate: \"2021-08-31\"\ntitle: \"Jesi\"\nlogline: \"Jesi is a vertically integrated, Metaverse property developer.\"\ncta: \"https://jesi.app/\"\ntwitter: \"https://twitter.com/jesi_app\"\ndiscord: \"https://t.co/GIGqnURgup?amp=1\"\nlogo: /img/jesi.svg\ncategory: app, metaplex, nft\nstatus: live\n---\n\nJesi is building an NFT marketplace, interactive worlds, and tools for architecture and construction in the Metaverse. Trade buildings and components, broker land, find work, and more.\n"
  },
  {
    "path": "projects/jet.md",
    "content": "---\nslug: \"jet\"\ndate: \"2021-05-11\"\ntitle: \"Jet Protocol\"\nlogline: \"Jet is a lending protocol built on the Solana blockchain with a focus on innovative lending products and cross-chain interest rate arbitrage.\"\ncta: \"https://www.jetprotocol.io/\"\ncategory: defi\nlogo: /img/jet.svg\nwebsite: https://www.jetprotocol.io/\ntwitter: https://twitter.com/jetprotocol\ntelegram: https://t.me/jetprotocol\ndiscord: https://discord.com/invite/RW2hsqwfej\nstatus: live\n---\n\nJet Protocol is a borrowing and lending protocol built on the Solana blockchain.\n\nMost of the widely used DeFi protocols used up until this point have been built on top of and supported by the Ethereum ecosystem. Jet is ready to take borrowing and lending to the next level using Solana’s bleeding edge tech, low transaction costs, speed, and scalability. Users can also look forward to Jet's innovative interest bearing products which will be used to create markets on Serum DEX.\n"
  },
  {
    "path": "projects/joylinascantina.md",
    "content": "---\nslug: \"joylinascantina\"\ndate: \"2021-10-31\"\ntitle: \"Jolina's Cantina\"\nlogline: \"A Universe of Playable Trading Card NFTs on Solana.\"\ncta: \"https://digitaleyes.market/collections/Joylina's%20Cantina\"\nlogo: /img/joylinascantina.png\ncategory: game, nft\nstatus: building\nwebsite: https://www.joylinascantina.com/\ntwitter: https://twitter.com/JoylinasCantina\ndiscord: https://discord.com/invite/VBNWBqYHDf\n---\n\nEmpowered by premier artists from the film and gaming industries, Joylina’s Cantina is connecting art to open source game development through trading card NFTs. All cards wield unique, randomly generated stats, classes, power ups, and scarcity. Each of the 10,000 one-of-a-kind cards will be minted as an NFT on the Solana blockchain. At its heart, Joylina’s Cantina is a creative art project with a mission to elevate artists and build a community-driven universe full of extraordinary characters. We envision a future in which our trading cards are used to build new worlds.\n"
  },
  {
    "path": "projects/jpy coin.md",
    "content": "---\nslug: \"jpycoin\"\ntitle: \"JPY Coin\"\ndate: \"2021-05-28\"\nlogline: \"JPY Coin is a 1:1 JPY-pegged stable coin built on Solana.\"\ncta: \"https://jpyc.jp/\"\ncategory: stablecoin\nlogo: /img/jpycoin.svg\nstatus: building\nwebsite: https://jpyc.jp/\ntwitter: https://twitter.com/jpy_coin\n---\n\nJPY Coin (JPYC) is aiming to bring Japanese yen from the real world to Solana. With an active team and enthusiastic communities, JPYC ’s presence has been growing very rapidly. In Japan legally, JPYC isn’t a collateral-backed cryptocurrency, but a prepaid stablecoin issued by JPYC Inc. Users who have JPYC can shop using JPYC at the rate of 1 JPYC = 1 JPY. JPYC is also planning to support paying hometown tax using JPYC. JPYC is being traded on some DEX by the communities.\n"
  },
  {
    "path": "projects/juiced.md",
    "content": "---\nslug: \"juiced\"\ndate: \"2021-11-10\"\ntitle: \"Juiced Protocol\"\nlogline: \"A juicy basis yield farm built on solana and serum\"\ncta: \"https://www.juiced.fi\"\nlogo: /img/juiced.jpg\ncategory: amm, app\nstatus: building\nwebsite: https://www.juiced.fi\ntwitter: https://twitter.com/JuicedProtocol\ndiscord: https://discord.gg/CatSXrkCAf\n---\n\nA juicy basis yield farm built on solana and serum\n"
  },
  {
    "path": "projects/junglecats.md",
    "content": "---\nslug: \"junglecats\"\ndate: \"2021-10-17\"\ntitle: \"Jungle Cats\"\nlogline: \"5,585 High Quality 3D Generative Jungle Cats incorporating breeding and airdrops to holders. On Solana Blockchain\"\ncta: \"https://junglecats.io/\"\nlogo: /img/junglecats.png\ncategory: nft\nstatus: live\nwebsite: https://junglecats.io/\ntwitter: https://twitter.com/JungleCatsIO\ndiscord: https://discord.com/invite/junglecats\n---\n\n5,585 High Quality 3D Generative Jungle Cats incorporating breeding and airdrops to holders. On Solana Blockchain\n"
  },
  {
    "path": "projects/jupiteraggregator.md",
    "content": "---\nslug: \"jupiteraggregator\"\ndate: \"2021-10-24\"\ntitle: \"Jupiter Aggregator\"\nlogline: \"The best swap aggregator on Solana. Built for smart traders who like money.\"\ncta: \"https://twitter.com/JupiterExchange\"\nlogo: /img/jupiteraggregator.jpg\ncategory: defi\nstatus: live\nwebsite: https://jup.ag\ntwitter: https://twitter.com/JupiterExchange\ndiscord: https://discord.com/invite/WBSDXjYGR3\n---\n\nJupiter Aggregator goal is to provide the best rates by routing across all major liquidity markets,\nwhile giving users and developers the best swapping experience in all of DeFi.\n"
  },
  {
    "path": "projects/kaijucards.md",
    "content": "---\nslug: \"kaijucards\"\ndate: \"2021-11-05\"\ntitle: \"KAIJU CARDS\"\nlogline: \"Welcome to Good Earth\"\ncta: \"https://kaijucards.io\"\nlogo: /img/kaijucards.png\ncategory: nft\nstatus: live\nwebsite: https://kaijucards.io\ntwitter: https://twitter.com/KaijuCards\ndiscord: https://discord.com/invite/CUJfDarkEh\n---\n\nWho are we?\n\nMembers of our team have Created original content for Disney,Nickelodeon, \nCartoon Network, Netflix, Apple, and Facebook, and have led development for several major blockchain projects.\n"
  },
  {
    "path": "projects/kam1.md",
    "content": "---\nslug: \"kam1\"\ndate: \"2021-10-17\"\ntitle: \"KAM1\"\nlogline: \"The KAM1 Are 8888 Randomly Generated NFTs On The #Solana Blockchain.\"\ncta: \"https://solanart.io/collections/kam1\"\nlogo: /img/kam1.png\ncategory: nft\nstatus: live\nwebsite: https://www.kam1.com\ntwitter: https://twitter.com/KAM1NFT\ndiscord: https://discord.com/invite/kam1\n---\n\nThe mythical world of Izuno knew no strife, felt no hunger, and knew only bliss for centuries. That all changed when the demons attacked. Led by the Demon King, the Yokai razed the kingdoms of Izuno and enslaved its citizens. The few remaining prayed to the KAM1 for help, offering their very souls. The KAM1 have heard their prayers and have sent down 8888 of their elite warriors. The fight has begun.\n"
  },
  {
    "path": "projects/kangaroofightclub.md",
    "content": "---\nslug: \"kangaroofightclub\"\ndate: \"2021-10-22\"\ntitle: \"Kangaroo Fight Club\"\nlogline: \"10,000 unique Kangaroos NFTs for use in a boxing blockchain game\"\ncta: \"https://www.kangaroofightclub.io\"\nlogo: /img/kangaroofightclub.png\ncategory: nft\nstatus: building\nwebsite: https://www.kangaroofightclub.io\ntwitter: https://twitter.com/KangarooGangNFT\ndiscord: https://discord.com/invite/2A4rkESAQg\n---\n\nEach Kangaroo is uniquely created and carefully designed by highly experienced artists by overlaying various pre-designed attributes on the base Kangaroo character.\n\nFully integrated gaming platform with exciting features. PVP gameplay with SOL betting or fight for fun against friends!\n"
  },
  {
    "path": "projects/kardia.md",
    "content": "---\nslug: \"kardia\"\ndate: \"2021-11-19\"\ntitle: \"Kardia\"\nlogline: \"Welcome to Kardia, the revolutionary Play to Earn NFT gaming world, built on Solana.\"\ncta: \"https://www.playkardia.com/\"\nlogo: /img/kardia.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://www.playkardia.com/\ntwitter: https://twitter.com/playkardia\ntelegram: https://t.me/kardianft\ndiscord: https://discord.com/invite/kardia\n---\n\nKardia is a play-to-earn trading card game launched with over 100 cards in the Founders Deck. Each card contains balanced stats and amazing, hand-drawn artwork.\nUse your NFTs and play against other opponents in arena games, build your keep, launch and defend against attacks as you earn in-game resources to buy in-game items and other NFTs.\nRarities range from common to mythical cards with incredible total power. Some cards contain elemental properties, have special classifications such as Guardians or Dragons, or contain strategic elements that will help you battle against your opponents.\n"
  },
  {
    "path": "projects/katana.md",
    "content": "---\nslug: \"katana\"\ndate: \"2021-10-23\"\ntitle: \"Katana\"\nlogline: \"Structured products and automated vault strategies on Solana\"\ncta: \"https://katana.so\"\nlogo: /img/katana.png\ncategory: defi\nstatus: building\nwebsite: https://katana.so\ntwitter: https://twitter.com/Katana_HQ\n---\n\nKatana offers a suite of investment products across the risk spectrum,\nenabling users to passively access the best yield-generating opportunities on Solana.\nKatana's goal is to offer sophisticated, sustainable, and composable yield products which users can mix and match to produce their desired exposure.\n\nTo this end, our core product suite is comprised of automated vault strategies and structured products--similar to\nYearn and Ribbon Finance on Ethereum--and we look to expand into more exotic product lines in the near future.\n"
  },
  {
    "path": "projects/kekwcoin.md",
    "content": "---\nslug: \"kekwcoin\"\ntitle: \"Kekwcoin\"\ndate: \"2021-05-28\"\nlogline: \"Kekwcoin is a community platform for content creators to monetize their artwork and get financial support from investors.\"\ncta: \"https://www.kekw.io/\"\ncategory: app\nlogo: /img/kekwcoin.svg\nstatus: Building\nwebsite: https://www.kekw.io/\ntwitter: https://twitter.com/kekwcoin\n---\n\nKEKW is a space allowing creators to engage, collaborate, and fulfill personal initiatives. This space is designed to bring opportunities to new creators, giving them a window to expose their talent and, as a community driven ecosystem, the opportunity to be valued and rewarded for their contributions.\n\nVoting, organizing different collectives, and funding new collaborative efforts will be some of the opportunities KEKW community members will gain.\n\nThis will be of benefit to both the benefactor and the creator himself, as the donor helps enable the creator and provides growth, in turn capitalizing on their investment as the creator’s project\ngets more exposure.\n\n$KEKW coin will serve as a direct mechanism to provide economic support to creators and community members alike by assigning them a direct monetary allocation to be paid in $KEKW. It\nwill also help them exchange services and digital content to be traded directly on our platforms. This\ndigital currency can be distributed as a reward for contest winners or other miscellaneous events. Lastly, $KEKW will act as a governance tool, ensuring the decisions made for the community are also backed in a fair, transparent manner.\n\nSolana's ecosystem provides a basis for our framework, ensuring the space will support a high volume of creators. More information can be found in our Litepaper: https://www.kekw.io/assets/kekwcoin_litepaper_v1.pdf\n"
  },
  {
    "path": "projects/kermit finance.md",
    "content": "---\nslug: \"kermitfinance\"\ntitle: \"Kermit Finance\"\ndate: \"2021-05-28\"\nlogline: \"Kermit is built on Serum, allowing users and artists to trade tokens/NFTs on the most user-friendly UI.\"\ncta: https://twitter.com/kermitfinance\ncategory: defi, dex, exchange, spl\nlogo: /img/kermitfinance.svg\nstatus: live\nwebsite: https://kermitfinance.com/\ntwitter: https://twitter.com/KermitFinance\ntelegram: https://t.me/kermitfin\ndiscord: https://discord.com/invite/ecAnckpcd4\n---\n\nKermit is a decentralized peer-to-peer protocol that eases the interaction between the user and the blockchain. In the world of DeFi, where finance and money does not rely on financial intermediaries such as exchanges, brokerages, and banks, it is important for users to have seamless control of their money and assets. Kermit is built on Serum, allowing users and artists to trade tokens/NFTs on the most user-friendly UI.\n"
  },
  {
    "path": "projects/kin.md",
    "content": "---\nslug: \"kin\"\ndate: \"2020-04-03\"\ntitle: \"Kin\"\nlogline: \"Kin is a thriving community of apps, developers, content creators, and millions of active users that earn and spend Kin, while participating directly in the value generated from their contributions, bolstering the Kin Ecosystem.\"\ncta: \"https://www.kin.org/\"\nlogo: /img/kin.svg\ncategory: app\nwebsite: https://kin.org/\ntwitter: https://twitter.com/kin_ecosystem\ntelegram: https://t.me/TheKinChannel\ndiscord: https://discord.com/invite/S7HawfuDh2\nstatus: live\n---\n\nThe Kin cryptocurrency is used as money within a digital ecosystem of consumer applications and services. It was initially launched as an ERC20 token on the Ethereum blockchain, and was designed to be the main currency in the Kik messenger ecosystem. Kik had initially launched a rewards points system, not a cryptocurrency, called Kik Points that ended in 2017. Kin is short for Kinship, since its aim to strengthen ties within the Kik community. Kik raised around $100 million in the Kin initial coin offering (ICO) in September 2017. In September 2019, Kik shut down its messaging app in order to fight an ongoing lawsuit with the United States Security and Exchange Commission over whether the Kin ICO sold unregistered securities. In October 2019, MediaLab bought Kik messenger, with the goal of preserving Kin.\n\nOn May 22nd, 2020, Kik Interactive Inc. put forth a proposal to the Kin Ecosystem recommending a migration from the Kin Blockchain to the Solana Blockchain. This migration proposal was in response to the continued growth of the Kin Ecosystem, which now has over 3 million active monthly spenders.\n"
  },
  {
    "path": "projects/kingofoceans.md",
    "content": "---\nslug: \"kingofoceans\"\ndate: \"2021-09-14\"\ntitle: \"King Of Oceans\"\nlogline: \"King Of Oceans is an NFT-powered RPG game built natively on the Solana blockchain.\"\ncta: \"https://kingofoceans.com/\"\nlogo: /img/kingofoceans.svg\ncategory: nft, app\nstatus: building\nwebsite: https://kingofoceans.com/\ntwitter: https://twitter.com/KingOfOceansNFT\ndiscord: https://discord.gg/mhDtBMXEyf\n---\n\nKing Of Oceans is an NFT-powered RPG game built natively on the Solana blockchain. Gamers will battle and win NFT characters and NFT gears that can be converted to SOL at the marketplace.\n"
  },
  {
    "path": "projects/kittysolana.md",
    "content": "---\nslug: \"kittysolana\"\ndate: \"2021-11-11\"\ntitle: \"kittysolana\"\nlogline: \"KITTY SOLANA Is Meme & NFT token buidl on Solana Blockchain.\nOur visions on future: NFT Launch, NFT MARKETPLACE, NFT GALLERY APPS AND MANY MORE..\"\ncta: \"https://kittysolana.com/\"\nlogo: /img/KITTY.png\ncategory: amm, app\nstatus: building\nwebsite: https://kittysolana.com/\ntwitter: https://twitter.com/kitty_solana\ntelegram: https://t.me/kittysolana\ndiscord: https://discord.com/invite/XaRfbtsscz\n---\n"
  },
  {
    "path": "projects/koalana.md",
    "content": "---\nslug: \"koalana\"\ndate: \"2021-11-09\"\ntitle: \"Koalana\"\nlogline: \"6969 Hand-drawn Koalanas,9 magical Attributes, $30K+Mint rewards,Airdrop 420 OG's collection ,10% to HospitalKoala| 10% DAO\"\ncta: \"https://www.koalana.io\"\nlogo: /img/koalana.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.koalana.io\ntwitter: https://twitter.com/KoalanaNFT\ndiscord: https://discord.io/koalana\n---\n\n6969 Hand-drawn Koalanas,9 magical Attributes, $30K+Mint rewards,Airdrop 420 OG's collection ,10% to HospitalKoala| 10% DAO\n"
  },
  {
    "path": "projects/korbit.md",
    "content": "---\nslug: \"korbit\"\ndate: \"2021-06-08\"\ntitle: \"Korbit\"\nlogline: \"Korbit, Korea’s first crypto exchange, listed SOL on June 8th, 2021, making it the first listing in KRW market\"\ncta: \"https://exchange.korbit.co.kr/markets/?market=sol-krw\"\nlogo: /img/korbit.svg\ncategory: exchange\nstatus: live\n---\n\nKorbit is Korea’s first crypto exchange. Established in 2013.\n"
  },
  {
    "path": "projects/kreechures.md",
    "content": "---\nslug: \"kreechures\"\ndate: \"2021-03-22\"\ntitle: \"Kreechures\"\nlogline: \"Kreechures is Solana's first crypto-collectible NFT RPG. Generation-0 Kreechure arrivals began in March 2021 and will continue until we hit our limit. Generative NFTs that are yours to level up, collect, trade, or sell\"\ncta: https://www.kreechures.com/\nlogo: /img/kreechures.svg\ncategory: nft\nstatus: building\n---\n\nKreechures, aka crypto-collectible non-fungible tokens (NFTs) stored on the Solana (SOL) blockchain, are one of a kind and yours to level up, collect, trade or sell.\n"
  },
  {
    "path": "projects/kridafans.md",
    "content": "---\nslug: \"Krida Fans\"\ndate: \"2021-06-29\"\ntitle: \"Krida Fans\"\nlogline: \"Krida Fans is a next generation fantasy sports and social platform built on the Solana blockchain.\"\ncta: \"https://krida.fans\"\nlogo: /img/krida-fans.svg\ncategory: app\nstatus: building\n---\n\nKrida Fans is the reimagined Fantasy Sports and Social Platform. It differentiates itself from other blockchain and non-blockchain based platforms in the following ways:\n\nSkill based Scarcity: We have democratized access of the players' cards NFTs to all the participants of the platform. These NFTs will become scarce based on how the participants use them in building their fantasy team for the game.\n\nMultichain Community Reputation: Participants can also discuss and share tips on the discord server for the Krida Fans. Each activity will have points associated with it (negative and positive). Thus creating a unique non-transferrable NFT for each participant which can be used in other blockchains or blockchain-based games.\n\nNFT based Card games: Our players' card NFTs are detail rich in such a way that holders of these NFTs can play card games with their friends. Krida Fans will host card games for top 25 Social Reputation NFT holders with guaranteed prize money.\n"
  },
  {
    "path": "projects/kurobi.md",
    "content": "---\nslug: \"kurobi\"\ndate: \"2021-06-30\"\ntitle: \"Kurobi\"\nlogline: \"A seamless way for experts to host video calls with guests worldwide.\"\ncta: \"https://kurobi.io/\"\nlogo: /img/kurobi.svg\ncategory: app\nstatus: Building\nwebsite: https://kurobi.io\ntwitter: https://twitter.com/kurobi_io\ntelegram: https://t.me/kurobi_io\n---\n\nWhy Kurobi?\n\nKurobi is powered by the Solana blockchain and allows users to host video calls and collect payments in crypto in order to:\n\n- Save time when scheduling\n- Make money when hosting\n- Earn crypto when booking\n\nKurobi supports payments with USDT, USDC, SOL, and KURO. $KURO is our native token which is used to:\n\n- Drive mainstream crypto adoption using commission-based cashback incentives\n- Support experts via tipping\n\nIt's free, seamless, and works on Android phones, iPhones, tablets, and desktops.\n"
  },
  {
    "path": "projects/labyrint.md",
    "content": "---\nslug: \"labyrint\"\ndate: \"2021-10-17\"\ntitle: \"Synesthesia\"\nlogline: \"Labyrinth is a digital art collective creating generative artwork on the Solana blockchain. We strive to create cutting edge digital art that visually stimulates while also inviting introspection and deep reflection.\"\ncta: \"https://labyrinthart.xyz/#/\"\nlogo: /img/labyrint.png\ncategory: nft\nstatus: live\nwebsite: https://labyrinthart.xyz/#/\ntwitter: https://twitter.com/_Labyrinth_Art_\ndiscord: https://discord.com/invite/4Qx4Vnh3Sr\n---\n\nLabyrinth is a digital art collective creating generative artwork on the Solana blockchain. We strive to create cutting edge digital art that visually stimulates while also inviting introspection and deep reflection.\n"
  },
  {
    "path": "projects/lagrange.md",
    "content": "---\nslug: \"lagrange\"\ndate: \"2021-10-14\"\ntitle: \"Lagrange\"\nlogline: \"Remittance and Forex trading based on stablecoins, backed by DeFi on Solana blockchain\"\ncta: \"https://lagrange.fi\"\nlogo: /img/Lagrange.svg\ncategory: defi, app, stablecoin\nstatus: building\ntwitter: \"https://twitter.com/lagrange_fi\"\ndiscord: \"https://discord.gg/lagrange-fi\"\n---\n\nLagrange tries to solve many of the problems of the real world by leveraging Solana’s existing technology. We are building an interface to a decentralized liquidity network similar to FOREX Electronic Communication Network. We are doing this by connecting to liquidity providers on different blockchains. Further, the connection between the Real World Hierarchy and Crypto World Hierarchy will be established with the help of CEX and Stablecoin companies. We are also building a DEX and different tools for creating markets dedicated specifically to Digital Currencies and Forex.\n"
  },
  {
    "path": "projects/laguna finance .md",
    "content": "---\nslug: \"lagunafinance\"\ntitle: \"Laguna Finance \"\ndate: 2021-07-25\nlogline: \"Solana's premier asset management ecosystem.\"\nwebsite: \"https://www.laguna.finance/\"\ncategory: app\ncta: https://twitter.com/Laguna_Finance\nlogo: /img/lagunafinance.svg\nstatus: live\ntwitter: https://twitter.com/Laguna_Finance\ntelegram: https://t.me/lagunafinance\ndiscord: https://discord.com/invite/YeUz5pf5Ys\n---\n\nLaguna Finance is an ecosystem of Decentralized Finance (DeFi) products powered by the Solana blockchain. Our goal is simple: provide users access to the best investment opportunities in the Solana ecosystem from a single platform. We leverage the unique composability of DeFi to build, aggregate, and capitalize on the best yield-generating opportunities for our users. From generating stable returns to complex yield farming strategies, Laguna offers products that serve all risk profiles, enabling users to mix and match strategies to fit their desired risk exposure, all on a single user friendly platform.\n"
  },
  {
    "path": "projects/lanafrogs_nft.md",
    "content": "---\nslug: \"lanafrogs_nft\"\ndate: \"2021-11-18\"\ntitle: \"Lana Frogs\"\nlogline: \"RIBBIT! 4444 deflationary, unique frogs hopping around Solana\"\ncta: \"https://lanafrogs.com/\"\nlogo: /img/lanafrogs_nft.jpg\ncategory: nft\nstatus: building\nwebsite: https://lanafrogs.com/\ntwitter: https://twitter.com/lanafrogs_nft\ndiscord: https://discord.gg/fQqfVtXvPv\n---\n\nRIBBIT! 4444 deflationary, unique frogs hopping around Solana\n"
  },
  {
    "path": "projects/larix.md",
    "content": "---\nslug: \"larix\"\ntitle: \"Larix\"\ndate: 2021-07-25\nlogline: \"Larix, a lending protocol on the Solana blockchain, adopted a dynamic interest rate model and created more capital-efficient risk management pools. As such, a broad selection of collateral types can be fully utilized in a safe way.\"\ncategory: defi\nlogo: /img/larix.svg\nstatus: live\nwebsite: https://projectlarix.com/\ntwitter: https://twitter.com/ProjectLarix\ntelegram: http://t.me/projectlarix\ndiscord: http://discord.gg/hfnRFV9Ngt\n---\n\nLarix — a lending protocol on the Solana blockchain, adopted a dynamic interest rate model and created more capital-efficient risk management pools so a broad selection of collateral types can be fully utilized in a safe way. The reward system is based on a delicately designed token economy enables continuous incentive allocation to boost real demands. It will be the combination of upgraded “Compound” and “MakerDAO” in the ecosystem, which accepts a broad selection of collateral types. Conventional banking business originated from deposit and loan model to reward excessive capital with interest. Lending protocol serves as an essential cornerstone of any Defi ecosystem. Defi lending platforms provide loans to borrowers with no intermediaries, usually enabling participants from both sides to earn stablecoins or cryptocurrencies. Effective decentralized applications (DApps) in lending space have the highest TVL growth rate and are the most prevalent contributors for locking crypto assets via smart contracts.\n"
  },
  {
    "path": "projects/lava.md",
    "content": "---\nslug: \"lava\"\ndate: \"2021-05-11\"\ntitle: \"Lava Cash\"\nlogline: \"Lava Cash is a decentralized privacy preservation protocol built for the Solana blockchain.\"\ncta: \"https://twitter.com/lava_cash\"\ncategory: app\nlogo: /img/lava.svg\nstatus: live\nwebsite: https://lava.cash/\ntwitter: https://twitter.com/lava_cash\ntelegram: https://t.me/lavacash\ndiscord: https://discord.com/invite/3kyCdJMM7D\n---\n\nPrivacy is a vital component of any censorship resistant blockchain. Without it, there are very clear pathways to breaking the network’s fungibility. For example, if fungibility erodes, using SOL in a smart contract that pools user’s funds poses taint risk. Unsuspecting users whose coins are blindly tainted may find that they are demoted to second-class citizens in the network as their deposits to smart contracts are rejected and they are discriminated against when trying to exchange their SOL for goods and services. This would lead to multiple economies of SOL tokens, a clear indication that the network is no longer a truly censorship resistant network.\n\nBut it doesn’t have to be that way! Lava imagines a world in which privacy is fast, cheap, and user friendly Solana users. Privacy should be a default, not a series of protocols that are only used by sophisticated users with large holdings. That’s why we are announcing Lava Cash, the first privacy preserving smart contract on Solana. We have designed Lava Cash as a non-custodial smart contract that utilizes zk-STARKs to break any deterministic links between funds that have entered the “Lava Pool” from those that have exited.\n"
  },
  {
    "path": "projects/lazyheroes.md",
    "content": "---\nslug: \"lazyheroes\"\ndate: \"2021-11-14\"\ntitle: \"Lazy Heroes\"\nlogline: \"2000 Unique and hand drawn Lazy Heroes generated on Solana\"\ncta: \"https://lazyheroes.io/\"\nlogo: /img/lazyheroes.jpg\ncategory: nft\nstatus: live\nwebsite: https://lazyheroes.io/\ntwitter: https://twitter.com/LazyHeroesNFT\ndiscord: https://discord.gg/lazyheroes\n---\n\nMany stories of blockbuster heroes were born in some corporate building in Hollywood, then polished through hours of boring meetings... This is not one of them.\n\nLazy Heroes came to life after hours talking, laughing and farting on discord.\n\nIt's a cartoonesque collection of 2,000 uniquely generated lazy characters - wannabe heroes, inspired by pop-culture, 90's tv shows, memes and the crypto-sphere.\n\nEVery asset has been carefully hand-drawn with love, and we plan on launching a comic book telling little funny stories about those lazy heroes .\n"
  },
  {
    "path": "projects/ledger.md",
    "content": "---\nslug: \"ledger\"\ndate: \"2020-04-03\"\ntitle: \"Ledger\"\nlogline: \"The Ledger Nano X and Nano S support the SOL token.\"\ncta: \"https://docs.solana.com/wallet-guide/hardware-wallets\"\nlogo: /img/ledger.svg\ncategory: wallet\nwebsite: http://ledger.com/\ntwitter: https://twitter.com/Ledger\nstatus: live\n---\n\nLedger is a smart way to secure, buy, exchange and grow your crypto assets. The SOL asset is supported on all Ledger devices, including the Nano X and Nano S.\n"
  },
  {
    "path": "projects/leonidas_token.md",
    "content": "---\r\nslug: \"leonidas_token\"\r\ndate: \"2021-11-19\"\r\ntitle: \"Leonidas Token\"\r\nlogline: \"Our vision is to have a platform people use to send NFT greeting cards to their loved ones.\"\r\ncta: \"https://www.leonidastoken.com/\"\r\nlogo: /img/leonidas_token.png\r\ncategory: defi, dex, nft, wallet, app\r\nstatus: building\r\nwebsite: https://www.leonidastoken.com/\r\ntwitter: https://www.twitter.com/leonidas_token\r\ntelegram: https://www.t.me/leonidas_token\r\ndiscord: https://discord.gg/6QNAgqhzQ2\r\n---\r\n\r\nWe aim to build a strong, and engaged online community. Our vision is to have a platform people use to send NFT greeting cards to their loved ones. This is our shot at getting the dinosaurs onboard. We need our community’s support to get there."
  },
  {
    "path": "projects/lido.md",
    "content": "---\nslug: \"lido\"\ntitle: \"Lido\"\ndate: 2021-07-25\nlogline: \"Lido is a liquid-staking solution\"\nwebsite: \"https://lido.fi/\"\ncategory: app\ncta: https://twitter.com/lidofinance\nlogo: /img/lido.svg\nstatus: live\ntwitter: https://twitter.com/lidofinance\ntelegram: https://t.me/lidofinance\ndiscord: https://discord.gg/vgdPfhZ\n---\n\nLido lets users stake their assets for daily staking rewards. Users can stake any amount of tokens with no minimum. When staking Lido you mint staked tokens which are pegged 1:1 to your initial stake. Your staked tokens can be used across the DeFi ecosystem to compound your yield. Lido lets you use your staked assets to gain yield on top of yield. Use your tokens (which earn daily staking rewards) as collateral for lending, yield farming and more.\n"
  },
  {
    "path": "projects/lifinity.md",
    "content": "---\nslug: \"lifinity\"\ndate: \"2021-10-27\"\ntitle: \"LIFINITY Protocol\"\nlogline: \"The first proactive market maker on Solana\"\ncta: \"https://lifinity.io\"\nlogo: /img/lifintity.jpg\ncategory: amm, dex\nstatus: building\nwebsite: https://lifinity.io\ntwitter: https://twitter.com/Lifinity_io\ndiscord: https://discord.gg/K2tvfcXwWr\n---\n\nA highly optimized proactive market maker designed to improve capital efficiency and reduce impermanent loss.\n"
  },
  {
    "path": "projects/liq protocol.md",
    "content": "---\nslug: \"liqprotocol\"\ntitle: \"LIQ Protocol\"\ndate: 2021-06-22\nlogline: \"A decentralized liquidation engine built for Serum DEX margin markets on the Solana network.\"\ncta: \"https://liqsolana.com/\"\ncategory: dex, defi, spl\nlogo: /img/liqprotocol.png\nstatus: Live\nwebsite: https://liqsolana.com/\ntwitter: https://twitter.com/liqprotocol\ndiscord: http://discord.gg/liq\ntelegram: https://t.me/LIQ_channel\n---\n\nLIQ Protocol processes liquidations on the Solana chain within the serum ecosystem on platforms offering margin and leverage.\n"
  },
  {
    "path": "projects/looksrarestudio.md",
    "content": "---\nslug: \"looksrarestudio\"\ndate: \"2021-11-07\"\ntitle: \"Looks Rare Studio\"\nlogline: \"Looks Rare, a metaverse studio - Entertainment executives bringing top talent to Solana\"\ncta: \"https://looksrarestudio.com\"\nlogo: /img/looksrarestudio.jpg\ncategory: nft\nstatus: building\nwebsite: https://looksrarestudio.com\ntwitter: https://twitter.com/LooksRareStudio\ndiscord: https://discord.com/invite/looksrarestudios\n---\n\nLooks Rare, a metaverse studio - Entertainment executives bringing top talent to Solana\n"
  },
  {
    "path": "projects/lostlynx.md",
    "content": "---\nslug: \"lostlynx\"\ndate: \"2021-10-31\"\ntitle: \"Lost Lynx Society\"\nlogline: \"There was once a society of 3,000 Lynxes who lived in peace ....\"\ncta: \"https://www.lostlynx.io\"\nlogo: /img/lostlynx.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.lostlynx.io\ntwitter: https://twitter.com/lostlynxsociety\ndiscord: https://discord.gg/rKDXwy6hFh\n---\n\nLYNX LORE\n\nThere was once a society of 3,000 Lynxes who lived in peace and prosperity amongst each other with multiple tribes and clans on a world named Lynxenara. \nOne day a Lynx of the mage clan practicing in the dark arts unintentionally caused a dimensional rift tear which resulted in the Lynxes being scattered across multiple dimensions and timelines. \nThe only way to restore balance and order to the Lost Lynx Society is by collecting all 3,000 Lynxes and sending them back to their original world.\n"
  },
  {
    "path": "projects/lotusgang.md",
    "content": "---\nslug: \"lotusgang\"\ndate: \"2021-11-07\"\ntitle: \"Lotus Gang NFT\"\nlogline: \"Lotus Lads and Ladies on Solana | 4,000 Diverse Gang Members to Collect\"\ncta: \"https://lotusgang.com\"\nlogo: /img/lotusgang.png\ncategory: nft\nstatus: live\nwebsite: https://lotusgang.com\ntwitter: https://twitter.com/LotusGangNFT\ndiscord: https://discord.gg/vs8VvHb35k\n---\n\n**What is Lotus Gang?**\n\nThe Lotus Gang is made up of 2,000 Lads and 2,000 Ladies with Asian-inspired attire. \nThe vision of the project is to create a tight knit community where you can safely discuss all things Crypto/NFT with the goal of providing ongoing value to every holder and the community in general.\n\nThe way we aim to do this is through creation and curation of tools and resources that help people navigate this space.\n"
  },
  {
    "path": "projects/lowastral.md",
    "content": "---\nslug: \"lowastral\"\ndate: \"2021-11-06\"\ntitle: \"Low Astral\"\nlogline: \"6666 NFT Halloween Collection on Solana.\"\ncta: \"https://lowastral.com/\"\nlogo: /img/lowastral.png\ncategory: nft\nstatus: building\nwebsite: https://lowastral.com/\ntwitter: https://twitter.com/LowAstral\ndiscord: https://discord.com/invite/k7MwC75PPj\n---\n\nWe are an artistic production company made up of storytellers, photographers, graphic designers, UX / UI developers and blockchain developers. This time we are uniting our talent once again to bring Low Astral to life in tune with Halloween, in the month of October. All the members of the team have a great interest in urban legends and myths.\n"
  },
  {
    "path": "projects/luckydragons.md",
    "content": "---\nslug: \"luckydragons\"\ndate: \"2021-10-04\"\ntitle: \"Lucky Dragons\"\nlogline: \"A unique collection of 10,000 randomly generated NFTs built on Solana.\"\ncta: \"https://lucky-dragons.io\"\nlogo: /img/luckydragons.png\ncategory: metaplex, nft\nstatus: live\nwebsite: https://lucky-dragons.io\ntwitter: https://twitter.com/LuckyDragonsNFT\ndiscord: https://discord.com/invite/6RgGud6Egh\n---\n\nThe Lucky Dragons are an ancestral community of dragons living in the mountains of Shandora. \nSince thousands of years, they are the protectors of the most legendary treasures of their world bringing fortune and peace to the lucky ones who have seen them in their lives."
  },
  {
    "path": "projects/luckykittensnft.md",
    "content": "---\nslug: \"luckykittensnft\"\ndate: \"2021-11-11\"\ntitle: \"Lucky Kittens NFT\"\nlogline: \"Algorithmically generated talisman of prosperity and fortune, living on Solana Blockchain\"\ncta: \"https://luckykittens.io/\"\nlogo: /img/luckykittensnft.png\ncategory: nft, metaplex\nstatus: building\nwebsite: https://luckykittens.io/\ntwitter: https://twitter.com/luckykittensnft\ndiscord: https://discord.gg/445S7RVksP\n---\n\nLucky Kittens is an exclusive NFT community, inspired by the maneki-nekos ubiquitous around Asia.\nComing up with a unique vision and roadmap, this is your chance to be part of a game-changing community.\n\n<b>Website</b>: https://luckykittens.io/ </br>\n<b>Twitter</b>: https://twitter.com/luckykittensnft </br>\n<b>Discord</b>: https://discord.gg/445S7RVksP </br>\n"
  },
  {
    "path": "projects/luckylemursnft.md",
    "content": "---\nslug: \"luckylemursnft\"\ndate: \"2021-10-19\"\ntitle: \"Lucky Lemur\"\nlogline: \"7777 Programmatically Generated NFT Lemurs \"\ncta: \"https://luckylemurs.com/\"\nlogo: /img/luckylemursnft.png\ncategory: nft\nstatus: live\nwebsite: https://luckylemurs.com/\ntwitter: https://twitter.com/luckylemursnft\ndiscord: https://discord.com/invite/H4bAVBfCAS\n---\n\n7777 Programmatically Generated NFT Lemurs\n"
  },
  {
    "path": "projects/ludens3.md",
    "content": "---\nslug: \"ludens3\"\ndate: \"2021-10-09\"\ntitle: \"Ludens n3\"\nlogline: \"Ludens No.3 is an open-world role-playing game\"\ncta: \"https://ludensno3.com/\"\nlogo: /img/ludens.png\ncategory: nft, game\nstatus: building\nwebsite: https://ludensno3.com/\ntwitter: https://twitter.com/ludensno3\ndiscord: https://discord.com/invite/gM7sYnm8m3\n---\n\nLudens No.3 is an open-world role-playing game\n"
  },
  {
    "path": "projects/lumos exchange.md",
    "content": "---\nslug: \"lumosexchange\"\ntitle: \"Lumos Exchange\"\ndate: \"2021-05-28\"\nlogline: \"Lumos is developing the first non-custodial, peer-to-peer exchange for Solana.\"\ncta: \"https://www.lumos.exchange/\"\ncategory: dex\nlogo: /img/lumosexchange.svg\nstatus: building\nwebsite: https://www.lumos.exchange/\ntwitter: https://twitter.com/LumosExchange\ndiscord: https://discord.gg/aNDpkWp9wG\n---\n\nLumos Exchange is currently the only P2P exchange with a focus on Solana. Our solution will integrate with SOL by providing buy/sell features in 186 countries and utilizing more than 100+ payment methods.\n\nEvery project that currently exists on Solana could be accessible by purchasing SOL via Lumos Exchange.\n"
  },
  {
    "path": "projects/lunadex.md",
    "content": "---\nslug: \"lunadex\"\ndate: \"2020-04-03\"\ntitle: \"LunaDEX\"\nlogline: \"LunaDEX is a decentralized exchange built on Serum.\"\ncta: \"https://lunadex.com/\"\nlogo: /img/lunadex.svg\ncategory: DEX\nstatus: live\nwebsite: https://lunadex.com/\ntwitter: https://twitter.com/lunadexcom\ntelegram: https://t.me/luna_network\n---\n\nLunaDEX is a fully decentralized exchange empowered by the high-speed, low-latency, and low-cost layer 1 Solana blockchain and integrated with Serum’s efficient, automated, and on-chain limit Order Book. It deploys a user-friendly interface along with a wide range of differentiated functionalities, optimizing the user experience in cryptocurrency trading.\n"
  },
  {
    "path": "projects/luvnft.md",
    "content": "---\r\nslug: \"luv-nft\"\r\ndate: \"2021-11-13\"\r\ntitle: \"LUV NFT\"\r\nlogline: \"LUV NFT dCommerce market allows 3D LUVRS to run a virtual business in a 5D LUV MetaVerse. Your 3D LUVR is your badge to network on a higher frequency of LUV and support among your spiritual LUV Tribe. Our trickle up barter economy allows you to enjoy discounted virtual and IRL (In real life) products and services backed by LUV NFTs. Your LUV NFT is your virtual business with no middleman.\"\r\ncta: \"https://luvnft.com\"\r\nlogo: /img/luvnft.png\r\ncategory: game, nft, defi\r\nstatus: live \r\nWebsite: https://luvnft.com\r\nTwitter: https://twitter.com/luvnft\r\nTelegram: https://t.me/luvnft\r\nDiscord: https://discord.gg/JyN2ujhwVR\r\n---\r\n\r\nThis project will look nicely on the ecosystem page and very much advance\r\nthe Solana Ecosystem. All while following the community rules, and the ones\r\nstated herein.\r\n"
  },
  {
    "path": "projects/madtrooper.md",
    "content": "---\nslug: \"madtrooper\"\ndate: \"2021-10-09\"\ntitle: \"Mad Trooper\"\nlogline: \"Mad Trooper NFT are on the Solana blockchain, and joining the grand battle that will decide the very fate of the world. Each MadTrooper is completely unique and has been algorithmically generated to possess special attributes and traits. \"\ncta: \"https://madtrooper.com/\"\nlogo: /img/madtrooper.png\ncategory: nft\nstatus: live\nwebsite: https://madtrooper.com/\ntwitter: https://twitter.com/TheMadTrooper\ndiscord: https://discord.com/invite/N7tWFsdPUJ\n---\n\nMad Trooper NFT are on the Solana blockchain, and joining the grand battle that will decide the very fate of the world. Each MadTrooper is completely unique and has been algorithmically generated to possess special attributes and traits.\n"
  },
  {
    "path": "projects/madvikingsnft.md",
    "content": "---\nslug: \"madvikingsnft\"\ndate: \"2021-19-10\"\ntitle: \"Mad Vikings\"\nlogline: \"Warriors of the North | 3D Collection of 10,000 generative NFTs powered by Solana.\"\ncta: \"https://twitter.com/madvikingsnft\"\nlogo: /img/madvikings.png\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/madvikingsnft\ndiscord: https://discord.com/invite/madviking\n---\n\nWarriors of the North | 3D Collection of 10,000 generative NFTs powered by Solana.\n"
  },
  {
    "path": "projects/magic.md",
    "content": "---\nslug: \"magic\"\ndate: \"2020-04-03\"\ntitle: \"Magic\"\nlogline: \"Magic is integrating their SDK into Solana to provide easy-to-use alternatives to web3 wallets (i.e. MetaMask) for users and developers.\"\ncta: \"https://fortmatic.com/\"\nlogo: /img/magic.svg\ncategory: infra, wallet\nstatus: building\nwebsite: https://fortmatic.com/\ntwitter: https://twitter.com/fortmatic\ntelegram: https://t.me/fortmatic\ndiscord: https://discord.com/invite/JqrDbRB\n---\n\nMagic has developed an SDK that allows users to access decentralised applications with a phone number or email address, all without the need for a browser extension, allowing developers to capture a market of users previously unfamiliar with existing wallet providers. It’s as simple as adding 3 code snippets to any existing web3 applications. Magic is integrated in over 20 applications, including Set Protocol and Uniswap.\n"
  },
  {
    "path": "projects/magicland.md",
    "content": "---\nslug: \"magicaland\"\ndate: \"2021-10-18\"\ntitle: \"Magical Land\"\nlogline: \"Magical Land is a collection of 5,555 Cute Creatures from 5 different Species.\nGet FREE Virtual Land Airdrop and 55% Royalties Goes Back to Community Fund.\"\ncta: \"https://magicaland.art/\"\nlogo: /img/magicaland.png\ncategory: nft\nstatus: building\nwebsite: https://magicaland.art/\ntwitter: https://twitter.com/MagiclandNFT\ndiscord: https://discord.gg/magicalandnft\n---\n\nMagical Land is a collection of 5,555 Cute Creatures from 5 different Species.\nGet FREE Virtual Land Airdrop and 55% Royalties Goes Back to Community Fund.\n"
  },
  {
    "path": "projects/mango.md",
    "content": "---\nslug: \"mango\"\ndate: \"2021-03-22\"\ntitle: \"Mango\"\nlogline: \"Mango is a decentralized, cross-margin trading platform with up to 5x leverage with integrated limit orders on Serum DEX’s on-chain order book.\"\ncta: https://mango.markets/\nlogo: /img/mango.svg\ncategory: DeFi, governance\nwebsite: https://mango.markets/\ntwitter: https://twitter.com/mangomarkets\ntelegram: https://t.me/mango_markets\ndiscord: https://discord.com/invite/pV5mybZYY8\nstatus: live\n---\n\nMango is a decentralized, cross-margin trading platform with up to 5x leverage with integrated limit orders on Serum DEX’s on-chain order book. Makers or takers can earn interest on deposits and margin positions, as well as trade with near zero fees thanks to Solana’s high-performance blockchain. Additionally, users can contribute SRM into a shared pool, reducing the for all traders on the platform. Congrats, Team Mango!\n"
  },
  {
    "path": "projects/maps.md",
    "content": "---\nslug: \"maps\"\ndate: \"2020-04-03\"\ntitle: \"Maps\"\nlogline: \"Maps.me 2.0 is one of the world’s premium navigation apps with more than 100 million users worldwide. It is an ultimate travel companion and your passport to the new financial system.\"\ncta: https://maps.me/\nlogo: /img/maps.svg\ncategory: app\nstatus: building\nwebsite: https://maps.me/\ntwitter: https://twitter.com/MAPS_ME\ntelegram: https://t.me/Maps_Official\n---\n\nMaps.me is the world’s leading offline mapping service. In nine years, it has grown to 140 million users, with 60 million people using it to navigate 195 countries in 2020. Pilots, magazine photographers, professional cyclists, aid workers, and everyday travellers love using its turn-by-turn routing, travel guides, and detailed mapping – all available without using costly mobile data.\n\nWith Maps.me 2.0, Maps is embedding DeFi services into an app already used by millions of users. The wallet will be an intuitive part of a familiar platform, meaning there is no learning curve.\n"
  },
  {
    "path": "projects/marinade.md",
    "content": "---\nslug: \"marinade\"\ntitle: \"Marinade\"\ndate: 2021-07-25\nlogline: \"The easiest way to stake your tokens. \"\ncategory: AMM\ncta: \"https://marinade.finance/#/\"\nlogo: /img/marinade.svg\nstatus: live\nwebsite: https://marinade.finance/#/\ntwitter: https://twitter.com/MarinadeFinance\ndiscord: https://discord.com/invite/mGqZA5pjRN\n---\n\nMarinade.finance is a liquid staking protocol built on Solana. Enjoy automatic reinvestment of rewards and immediate access to tokens with no lockup period.\n"
  },
  {
    "path": "projects/maskats.md",
    "content": "---\r\nslug: \"maskats\"\r\ndate: \"2021-10-25\"\r\ntitle: \"Maskats\"\r\nlogline: \"10,000 COVID conscious kitties living together in a carbon friendly environment called Solana.\"\r\ncta: \"http://www.maskatsnft.com\"\r\nlogo: /img/maskats.png\r\ncategory: nft\r\nstatus: building\r\nwebsite: http://www.maskatsnft.com\r\ntwitter: https://twitter.com/maskatsnft\r\ndiscord: https://discord.gg/ft5sc9maE5\r\n---\r\n\r\n10,000 COVID conscious kitties living together in a carbon friendly environment called Solana."
  },
  {
    "path": "projects/math.md",
    "content": "---\nslug: \"mathwallet\"\ndate: \"2020-04-03\"\ntitle: \"Math Wallet\"\nlogline: \"MathWallet is a multi-chain wallet that supports 60+ blockchains including BTC, ETH, Polkadot, Filecoin, Solana, BinanceChain, etc. and spans more than 1.2 million users. MathWallet app is available for iOS and Android users. It can be used to send and receive SOL tokens.\"\ncta: \"https://mathwallet.org\"\ncategory: wallet, SPL\nlogo: /img/math.svg\nwebsite: https://mathwallet.org\ntwitter: https://twitter.com/Mathwallet\ntelegram: https://t.me/mathwallet\ndiscord: https://discord.com/invite/gXSfnk5eP5\nstatus: live\n---\n\nMATH is a multi-chain and cross-chain blockchain assets hub. Products include: MathWallet (supporting 60+ blockchains including BTC, ETH, Polkadot, Filecoin, Solana, BinanceChain, etc. and 1.2 million users), MATH VPoS Pool, MathDAppStore, MathStaking, MathCustody, MathNFT, MathChain, MathHub, MathDEX, MathID, MathPay etc. Our investors includes Fenbushi Capital, Alameda Research, Binance Labs, FundamentalLabs, Multicoin Capital, NGC Ventures. Download the App from Apple Store or Google Play Store to interact with the Solana network on your mobile device. For more information, visit mathwallet.org for more information.\n"
  },
  {
    "path": "projects/matheco.md",
    "content": "---\nslug: \"matheco\"\ndate: \"2021-05-07\"\ntitle: \"MATH Global Foundation\"\nlogline: \"The MATH Global Foundation, the Singapore-based developer of MathWallet, focuses on global investments and interoperable solutions that will bring relationships with over 66+ public chains to the Solana ecosystem. \"\nlogo: /img/math.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-development-growth-strategic-investment-funds\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/math.png\nstatus: live\n---\n\nFollowing its successful integration with Solana into its wallet app, MATH’s investment provides capital and technical resources to new communities wanting to access Solana's fast growing infrastructure and subscriber traffic.\n\nUp to $20M in capital is committed to support the developments of the Solana ecosystem and investing in the best and brightest builders around the world.\n"
  },
  {
    "path": "projects/meanfi.md",
    "content": "---\nslug: \"meanfi\"\ndate: \"2021-09-17\"\ntitle: \"MeanFi\"\nlogline: \"MeanFi gives users the most amazing and simple DeFi experience on Solana.\"\ncta: \"https://meanfi.com\"\nlogo: /img/meanfi.svg\ncategory: defi, amm, dex, exchange, app, governance, sdk\ntwitter: https://twitter.com/meanfinance/\ndiscord: https://discord.meanfi.com\nstatus: live\n---\n\nMeanFi is a user-friendly, self-custody, permissionless & trustless bank bringing crypto and DeFi to everyday banking workflows. It is powered by the Mean Protocol, which provides the foundations for developers to bring TradFi workflows into their a DeFi apps. MeanFi gives everyday banking users the most amazing and simple DeFi experience on Solana with access to (1) A Hybrid Liquidity Aggregator with $1.9+ billion available liquidity (2) A Decentralized DCA for users to invest daily/weekly/monthly, and (3) Money Streaming to schedule recurring remittances and facilitate payroll for businesses. To learn more, visit www.meanfi.com or follow us on Twitter @MeanFinance.\n"
  },
  {
    "path": "projects/meanfinance.md",
    "content": "---\nslug: \"meanfinance\"\ndate: \"2021-10-15\"\ntitle: \"Mean Finance\"\nlogline: \"A self-custody, permissionless & trustless bank bringing #crypto & #DeFi to everyday banking w/ Mean Protocol. Built on Solana\"\ncta: \"https://www.meanfi.com\"\nlogo: /img/meanfinance.jpg\ncategory: app\nstatus: live\nwebsite: https://www.meanfi.com\ntwitter: https://twitter.com/meanfinance\ndiscord: https://discord.gg/qBKDgm49js\n---\n\nA Self-Custody, Permissionless & Trustless Bank.\nMeanFi brings Crypto and DeFi to everyday banking.\n"
  },
  {
    "path": "projects/medianetwork.md",
    "content": "---\nslug: \"medianetwork\"\ndate: \"2020-07-29\"\ntitle: \"Media Network\"\nlogline: \"Media Network is a highly scalable, privacy-oriented, and community-governed CDN\"\ncta: \"https://media.network\"\nlogo: /img/media.svg\ncategory: infra\nstatus: building\n---\n\nMedia Network is a new protocol that foregoes traditional centralized CDN approaches and opts for a self-governed, open source solution. We've created a distributed bandwidth market that enables service providers to hire resources from the network which are variable, as the demand for last-mile data delivery fluctuates.\n"
  },
  {
    "path": "projects/mekasolnft.md",
    "content": "---\nslug: \"mekasolnft\"\ndate: \"2021-11-09\"\ntitle: \"Mekasol NFT\"\nlogline: \"Hand modeled 3D assets, algorithmically generated 3939 unique Mekasols are waiting you to take control on Solana!\"\ncta: \"https://twitter.com/mekasolnft\"\nlogo: /img/mekasolnft.jpg\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/mekasolnft\ndiscord: https://discord.com/invite/5MExtzq9SH\n---\n\nHand modeled 3D assets, algorithmically generated 3939 unique Mekasols are waiting you to take control on Solana!\n"
  },
  {
    "path": "projects/mercurial.md",
    "content": "---\nslug: \"mercurial\"\ndate: \"2020-06-28\"\ntitle: \"Mercurial Finance\"\nlogline: \"Mercurial is Solana's first multi-token stable swap. With the lowest slippage, we're the best place to swap stables.\"\ncta: \"https://mercurial.finance\"\nlogo: /img/mercurial.svg\ncategory: DeFi, AMM\nstatus: live\nwebsite: https://www.mercurial.finance/\ntwitter: https://twitter.com/MercurialFi\ntelegram: https://t.me/MercurialFi\ndiscord: https://discord.com/invite/WwFwsVtvpH\n---\n\nMercurial is building the infrastructure for stable and pegged assets for Solana.\n\nMercurial vaults are market making vaults providing low slippage swaps for stables while also improving LP profits with dynamic fees and flexible capital allocation.\n\nOur focus will be on stable coins because they represent a major part of the DeFi demand across synthetic assets creation, swapping, and lending. Robust availability of Stablecoin liquidity is crucial to any DeFi ecosystem. The DeFi ecosystem on Solana is evolving at an extremely fast pace, with Stablecoins of primary importance. We believe that a dynamic system such as Mercurial will be able to provide a robust platform for users to easily get liquidity for channeling towards the most productive channels.\n"
  },
  {
    "path": "projects/metabaes.md",
    "content": "---\nslug: \"metabaes\"\ndate: \"2021-10-05\"\ntitle: \"Metabaes\"\nlogline: \"8888 algorithmically generated anime styled characters to take part in our anime episodes.\"\ncta: \"https://metabaes.com/\"\nlogo: /img/metabaes.png\ncategory: nft\nstatus: live\nwebsite: https://metabaes.com/\ntwitter: https://twitter.com/MetaBaes\ndiscord: https://discord.com/invite/metabaes\n---\n\nMetabaes are created using a large pool of 300+ custom designed characteristics with the ability of producing over 15 MILLION different unique combinations. To say that every Metabae will be unique is an understatement. The art is not all you get when purchasing a Metabae. The utility that a Metabae possesses is even cooler than the art itself . .\n"
  },
  {
    "path": "projects/metabirds.md",
    "content": "---\nslug: \"metabirds\"\ndate: \"2021-11-07\"\ntitle: \"Metabirds\"\nlogline: \"NFT x P2E Arcade On Solana. Play, Earn, Connect, Wager.\"\ncta: \"https://metabirdsnft.com\"\nlogo: /img/metabirds.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://metabirdsnft.com\ntwitter: https://twitter.com/meta_birds\ndiscord: https://discord.com/invite/9zgYczJRM5\n---\n\nNFT collection x mini-game platform. The NFT Collection is a flock of 5,800 playable birds with long term utility and benefits. Each bird yields weekly rewards in the form of token airdrops, NFTS and more!\n"
  },
  {
    "path": "projects/metahomes.md",
    "content": "---\nslug: \"metahomes\"\ndate: \"2021-10-06\"\ntitle: \"Meta Homes\"\nlogline: \"Deep into the cyberspace exists metaverse where people own Meta Homes a breakthrough NFT project that reflects your taste in home design.\"\ncta: \"https://www.meta-homes.com/\"\nlogo: /img/metahomes.png\ncategory: nft\nstatus: building\nwebsite: https://www.meta-homes.com/\ntwitter: https://twitter.com/MetaHomes\ndiscord: https://discord.com/invite/GhrHmQhXcE\n---\n\nDeep into the cyberspace exists metaverse where people own Meta Homes a breakthrough NFT project that reflects your taste in home design.\n"
  },
  {
    "path": "projects/metamarket.md",
    "content": "---\nslug: \"metamarket\"\ndate: \"2021-03-22\"\ntitle: \"Metamarket\"\nlogline: \"MetaMarket is a Serum DEX with NFT minting and listing with interoperability incentives.\"\ncta: https://github.com/ArcadeCity/metamarket\nlogo: /img/metamarket.svg\ncategory: nft\nwebsite: https://github.com/ArcadeCity/metamarket\nstatus: building\n---\n\nMetaMarket is a Serum DEX with NFT minting and listing with interoperability incentive, growing the open metaverse.\n"
  },
  {
    "path": "projects/metaplex.md",
    "content": "---\nslug: \"metaplex\"\ndate: \"2021-06-02\"\ntitle: \"Metaplex\"\nlogline: \"Metaplex enables artists and creators to launch self-hosted NFT storefronts as easily as building a website. Ultra-fast NFTs with insanely low minting fees.\"\ncta: \"https://metaplex.com\"\nlogo: /img/metaplex.svg\ncategory: nft\nwebsite: https://www.metaplex.com/\ntwitter: https://twitter.com/metaplex\ndiscord: https://discord.com/invite/metaplex\nstatus: building\n---\n\nMetaplex is a Solana-powered protocol that allows for the creation and minting of non-fungible tokens, auctions, and visualizing NFTs in a standard way across wallets and applications, comprised of two core components: an on-chain program, and a self-hosted front-end web2 application.\n"
  },
  {
    "path": "projects/metasafari.md",
    "content": "---\nslug: metasafari\ndate: \"2021-08-28\"\ntitle: MetaSafari\nlogline: We’re a multi-chain, multi-tribe NFT based MetaVerse bridging digital and physical worlds, and gamifying hybrid finance (HyFi).\ncta: \"https://metasafari.world/\"\nlogo: /img/metasafari.svg\ncategory: \"app, defi, metaplex, nft\"\nstatus: building\ntwitter: \"https://twitter.com/metasafari\"\n---\n\nMetaSafari is a multi-chain, multi-tribe NFT based MetaVerse bridging digital and physical worlds, and gamifying hybrid finance (HyFi). Our first tribe--Alt Saints--is a purpose-driven brand pledging that 1% of revenue goes to support environmental organizations.\n\n<b>Website</b>: https://metasafari.world/ </br>\n<b>Twitter</b>: https://twitter.com/metasafari </br>\n<b>Telegram</b>: https://t.me/metasafari </br>\n<b>Discord</b>: https://discord.gg/3NKZxX7QPq </br>\n<b>Instagram</b>: https://www.instagram.com/meta.safari/ </br>\n<b>Medium</b>: https://medium.com/@metasafari </br>\n"
  },
  {
    "path": "projects/metasol.md",
    "content": "---\nslug: \"metasol\"\ndate: \"2021-05-11\"\ntitle: \"MetaSOL\"\nlogline: \"MetaSOL allows meta transactions on the Solana network.\"\ncta: \"https://metasol.xyz/\"\ncategory: app\nlogo: /img/metasol.svg\nwebsite: https://metasol.xyz/\ntwitter: https://twitter.com/sol_meta\ntelegram: https://t.co/A3mh7pGK6M?amp=1\ndiscord: https://discord.gg/invite/HsVP3KP3VD\nstatus: live\n---\n\nTo transfer assets on the Solana network, users must hold SOL. While some users might carry a sufficient amount of SOL, the same cannot always be said for new users. Obtaining SOL can be an arduous process due to the need for centralized exchange, andmsome users may not want to hold SOL at all due to its volatile nature.\n\nMetaSOL was conceived during the Solana Wormhole Hackathon. As a smaller version of SolGSN, it will support meta transactions for SPL tokens. This protocol will allow users to send any SPL token without having SOL in their wallets. The transaction fee will be deducted from the same SPL token, and the protocol will be fully non-custodial.\n\nThis has been achieved using a Solana Program which utilzes cross-program invocation to send SPL tokens to the receiver.\n"
  },
  {
    "path": "projects/metaspheres.md",
    "content": "---\nslug: \"metaspheres\"\ndate: \"2021-10-09\"\ntitle: \"Metaspheres\"\nlogline: \"metaSpheres is a procedurally built 3D geometric artwork collection of 986 high quality renders.  Every sphere is unique and are rendered across 18 different looks of varying rarity.\"\ncta: \"https://www.metaspheres.xyz/\"\nlogo: /img/metaspheres.png\ncategory: nft\nstatus: live\nwebsite: https://www.metaspheres.xyz/\ntwitter: https://twitter.com/Q_Slerp\ndiscord: https://discord.com/invite/txcEMN6z6m\n---\n\nmetaSpheres is a procedurally built 3D geometric artwork collection of 986 high quality renders. Every sphere is unique and are rendered across 18 different looks of varying rarity.\n"
  },
  {
    "path": "projects/metatun.md",
    "content": "---\nslug: \"metatun\"\ndate: \"2021-10-09\"\ntitle: \"Metatun NFT\"\nlogline: \"Metatun is a generative NFT collection of 10,000 magical Crypto babies living as 'Metaplex standard' tokens on the Solana blockchain\"\ncta: \"https://metatun.com\"\nlogo: /img/a_tun.png\ncategory: metaplex, nft\nstatus: live\nwebsite: https://metatun.com\ntwitter: https://twitter.com/__katxii\ndiscord: https://discord.gg/Y7Cs3CaF4y\n---\n\nGuess what? Only 10,000 special crypto babies known as Metatun are able to walk through that magical door that opens up to the A-tun 3D adventure and survival game where rare NFTs and $Sol lies to be found in the fantasy treasure world ~ Ka-Ching!!!\n\nBeing a proud owner of Metatun also marks the beginning of your baby steps to shape our A-tun community! Let's build YOUR game together!\n"
  },
  {
    "path": "projects/millionsols.md",
    "content": "---\r\nslug: \"millionsols\"\r\ndate: \"2021-09-04\"\r\ntitle: \"MillionSols\"\r\nlogline: \"Millionso(u)ls empowers non-profit organizations to collect donations in a fair, transparent and decentralized manner.\"\r\ncta: \"https://millionsols.art/\"\r\nlogo: /img/millionsols.png\r\ncategory: defi, tools\r\nstatus: building\r\n---\r\n\r\nMillionso(u)ls empowers non-profit organizations to collect donations in a fair, transparent and decentralized manner.\r\nDonations and fund-raising campaigns for non-profit organizations.\r\n"
  },
  {
    "path": "projects/millionsy.md",
    "content": "---\nslug: \"millionsy\"\ndate: \"2021-11-14\"\ntitle: \"MILLIONSY\"\nlogline: \"The first Lottery platform and Game Launchpad on Solana.\"\ncta: \"https://www.millionsy.io/\"\nlogo: /img/millionsy.jpg\ncategory: defi, nft\nstatus: live\nwebsite: https://www.millionsy.io/\ntwitter: https://twitter.com/MILLIONSYio\ntelegram: https://t.me/MILLIONSYio\n---\n\nThe first Lottery platform and Game Launchpad on Solana.\n"
  },
  {
    "path": "projects/mim.md",
    "content": "---\nslug: \"mim\"\ndate: \"2021-08-21\"\ntitle: \"MIM\"\nlogline: \"MIM is a swarm for building virtual artists, launching NFTs, and releasing music.\"\ncta: \"https://www.mim-swarm.com\"\nlogo: /img/mim.svg\ncategory: nft, metaplex\nstatus: live\n---\n\nMIM is a swarm for building virtual artists, launching NFTs, and releasing music. Users can use the MIM token to buy NFT's released by artists, services in the marketplace, or access to unique content.\n\nMIM regularly releases new artists from the swarm. Artists are created by different teams and presented on social media. In addition, MIM is releasing a series of sample packs from the swarm. Each sample pack will contain new material from different artists and producers.\n"
  },
  {
    "path": "projects/minibots.md",
    "content": "---\nslug: \"minibots\"\ndate: \"2021-10-29\"\ntitle: \"Mini Bots\"\nlogline: \"MiniBots are 5,999 unique, high tech, collectible high definition art\"\ncta: \"https://www.minibotsnft.com\"\nlogo: /img/minibots.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.minibotsnft.com\ntwitter: https://twitter.com/minibotsNFT\ndiscord: https://discord.com/invite/u7vt5aJ94V\n---\n\nMiniBots are 5,999 unique, high tech, collectible high definition art. Each MiniBot was algorithmically generated on their home planet, \nPlanet Cooper. Each MiniBot has proof of ownership all stored on the Solana Blockchain.\n\nEach MiniBot was created on their home planet, Planet Cooper, with uniqueness in mind. \nEvery MiniBot is special in its own way, and is created from 6 different types of traits like faces, headgear, drills, \nand much more with over 150 unique attributes! Some traits are more rare than others, ranging from Common to Mythic!\nAll of this variation leads to extremely rare MiniBots! Over the course of the next few weeks we will be releasing more and more sneak peaks of MiniBot traits!\n‍\n"
  },
  {
    "path": "projects/minimecha.md",
    "content": "---\nslug: \"minimecha\"\ndate: \"2021-11-05\"\ntitle: \"MiniMecha\"\nlogline: \" 10,000 unique anime Mechs living on Solana\"\ncta: \"https://www.minimecha.io\"\nlogo: /img/minimecha.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.minimecha.io\ntwitter: https://twitter.com/MiniMechaNFT\ndiscord: https://discord.com/invite/TV2VjGRtQs\n---\n\nMiniMecha is a project launched by a team of gaming and crypto enthusiasts with a vision to expand blockchain based, play-to-earn gaming. \nThis will commence with a collection of 10,000 unique NFTs on the Solana blockchain. We will let the art speak for itself.\n"
  },
  {
    "path": "projects/miniroyalenations.md",
    "content": "---\nslug: \"miniroyalenations\"\ndate: \"2021-11-05\"\ntitle: \"Mini Royale: Nations\"\nlogline: \"Come for the shooting, stay for the ruling\"\ncta: \"https://miniroyale.io\"\nlogo: /img/miniroyalenations.jpg\ncategory: game, nft\nstatus: live\nwebsite: https://miniroyale.io\ntwitter: https://twitter.com/MiniNations\ndiscord: https://discord.com/invite/rRssHgK\n---\n\nCome for the shooting, stay for the ruling\n"
  },
  {
    "path": "projects/mixin messenger.md",
    "content": "---\nslug: \"mixinmessenger\"\ntitle: \"Mixin Messenger\"\ndate: \"2021-06-22\"\nlogline: \"A free, lightning fast & decentralized network for transferring digital assets. Secure digital assets and messages on Mixin.\"\ncta: \"https://mixin.one/\"\ncategory: wallet\nlogo: /img/mixinmessenger.svg\nstatus: live\nwebsite: https://mixin.one/\ntwitter: https://twitter.com/Mixin_Network\n---\n\nA free, lightning fast & decentralized network for transferring digital assets. Secure digital assets and messages on Mixin.\n"
  },
  {
    "path": "projects/mobmonkiez.md",
    "content": "---\nslug: \"mobmonkiez\"\ndate: \"2021-11-10\"\ntitle: \"Mob Monkiez\"\nlogline: \"Solana 1,111 hardened, collectible Monkiez. There are three Mob families\"\ncta: \"https://www.mobmonkiez.io/\"\nlogo: /img/mobmonkiez.png\ncategory: nft\nstatus: live\nwebsite: https://www.mobmonkiez.io/\ntwitter: https://twitter.com/MobMonkiez\ndiscord: https://discord.com/invite/mP8RmETMtJ\n---\n\nSolana 1,111 hardened, collectible Monkiez. There are three Mob families\n"
  },
  {
    "path": "projects/molarfinance.md",
    "content": "---\nslug: \"MOF\"\ndate: \"2021-11-21\"\ntitle: \"Molar Finance\"\nlogline: \"We are chemist on the solana ecosystem, Dev ops at its peek. All your favorite tools in one place\"\ncta: \"https://molar.finance/\"\nlogo: /img/molarfinance.png\ncategory: tools,DEX\nwebsite: https://molar.finance/\ntwitter: https://twitter.com/MolarFinance\ndiscord: https://discord.gg/5euk87sWhH\nstatus: building\n---\n\nWe are chemist on the solana ecosystem, Dev ops at its peek. All your favorite tools in one place. we intend to make the solana ecosystem more user friendly so it can actually meet the whole idea od DEFI\n"
  },
  {
    "path": "projects/moonlana.md",
    "content": "---\nslug: \"moonlana\"\ntitle: \"Moonlana\"\ndate: 2021-06-22\nlogline: \"Solana Tipbot, NFTs, DEX, and Memes.\"\ncta: \"https://twitter.com/xmoonlana\"\ncategory: dex, tools\nlogo: /img/moonlana.svg\nstatus: Live\n---\n\nMoonlana created an on-chain tip bot that can currently be used on Discord.\n"
  },
  {
    "path": "projects/moonlet-wallet.md",
    "content": "---\nslug: \"moonletwallet\"\ndate: \"2021-07-15\"\ntitle: \"MoonletWallet\"\nlogline: \"MoonletWallet is a non-custodial virtual asset wallet that enables crypto enthusiasts to securely manage, stake, and swap SOL and SPL tokens.\"\ncta: \"https://moonlet.io/\"\nlogo: /img/moonlet-wallet.svg\ncategory: wallet, spl, defi, dex\nstatus: live\n---\n\nMoonletWallet is a node operator and a non-custodial virtual asset wallet provider that enables crypto enthusiasts to securely manage, stake, and swap cryptocurrency assets. Having been involved in software development for over two decades, the MoonletWallet team posesses strong engineering experience. We are raring to push the envelope in decentralization, and are dedicated to doing so using the Solana ecosystem.\n"
  },
  {
    "path": "projects/moonpay.md",
    "content": "---\nslug: \"moonpay\"\ndate: \"2020-04-03\"\ntitle: \"Moonpay\"\nlogline: \"Moonpay is a fiat on-ramp that allows users to seamlessly integrate cryprocurrency payments into their applications.\"\ncta: \"https://www.moonpay.com/\"\nlogo: /img/moonpay.svg\ncategory: infra\nstatus: live\n---\n\nMoonPay makes it easy to launch cryptocurrency on and off-ramps inside your application in minutes. SOL is supported in international locales.\n"
  },
  {
    "path": "projects/mudao.md",
    "content": "---\nslug: \"muon\"\ndate: \"2021-03-22\"\ntitle: \"Muon\"\nlogline: \"A peer-to-peer fund marketplace that facilitates the creation and management of Index Funds (ETFs).\"\ncta: \"https://projectmuon.com\"\nlogo: /img/muon.svg\ncategory: DeFi, explorer\nstatus: building\n---\n\nEach fund is composed of Muon developed indexes that can track a wide range of investment strategies. Each fund is modular, meaning they can be a component of another fund (fund of funds), which we have termed \"DeFi Lego.\" By leveraging the Solana & Serum ecosystems, Muon delivers a fast, streamlined, and cost-efficient platform for on-chain asset management.\n"
  },
  {
    "path": "projects/mutantmonkeybusiness.md",
    "content": "---\nslug: \"mutantmonkeybusiness\"\ndate: \"2021-11-09\"\ntitle: \"MutantMonkeyBusiness\"\nlogline: \"5000 Mutated Monkes on Solana.\"\ncta: \"https://mutantmonkey.business\"\nlogo: /img/mutantmonkeybusiness.jpg\ncategory: nft\nstatus: live\nwebsite: https://mutantmonkey.business\ntwitter: https://twitter.com/SolanaMMB\ndiscord: https://discord.gg/SolanaMMB\n---\n\nMutant Monkey Business are a collection of 5000 science experiments gone wrong, who have escaped the laboratory and are making their way onto the Solana block chain.\nIf you manage to capture or befriend a monkey you will soon be rewarded, turns out they decided to take most of the $potions with them when they escaped.\n"
  },
  {
    "path": "projects/mxc.md",
    "content": "---\nslug: \"mexc\"\ndate: \"2020-04-03\"\ntitle: \"MEXC\"\nlogline: \"MEXC listed the SOL token in the Summer of 2020, and maintains multiple trading pairs.\"\ncta: \"https://www.mxc.com/\"\nlogo: /img/mxc.svg\ncategory: exchange, spl\ntwitter: https://twitter.com/MEXC_Global\nstatus: live\n---\n\nThe trading pairs live on MEXC are SOL/BTC and SOL/USDT. MEXC is a Hong Kong-based exchange with a global presence.\n"
  },
  {
    "path": "projects/mxcfund.md",
    "content": "---\nslug: \"mxcfund\"\ndate: \"2020-04-03\"\ntitle: \"MXC Ecosystem Fund\"\nlogline: \"MXC's strategic investment fund focuses on accelerating development on the Solana network.\"\nlogo: /img/mxc.svg\ncta2: \"https://www.coindesk.com/okex-mcx-invest-solana-projects-defi-arms-race\"\ncta2text: \"Fund Announcement\"\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/mxceco.png\nstatus: live\n---\n\nMXC is a veteran exchange with a large user base in China and the Asia Pacific regions. Under MXC's strategic investment fund announced in March 2021, up to $20M will be invested within the Solana ecosystem. MXC will focus on providing support for non-fungible tokens and other consumer-centric projects building on Solana. The fund looks for projects developing technology-focused solutions in emerging fields, such as DeFi.\n"
  },
  {
    "path": "projects/mysteriouspharaohs.md",
    "content": "---\nslug: \"mysteriouspharaohs\"\ndate: \"2021-11-06\"\ntitle: \"Mysterious Pharaohs\"\nlogline: \"4444 Mysterious Pharaohs NFT protecting the Solana Treasure\"\ncta: \"https://digitaleyes.market/collections/Mysterious%20Pharaohs\"\nlogo: /img/mysteriouspharaohs.jpg\ncategory: nft\nstatus: live\nwebsite: https://mysteriouspharaohs.io/\ntwitter: https://twitter.com/NFTMysterious\ndiscord: https://discord.com/invite/mysteriouspharaohs\n---\n\nMysterious Pharaohs NFT is the collection of 4,444 programmatically generated ancient-style characters protecting the SOLANA TREASURE.\nEach of the 4,444 Mysterious Pharaohs is generated from over 200 different hand-drawn traits. The Egyptian pharaohs are shrouded in mystery. What are their origins? What are they looking for? For the time being, all we know is that they are guarding the SOLANA TREASURE, which you can obtain by minting your own Pharaoh.\nJoin us on a thrilling adventure to uncover more mysteries and take part in the Treasure Hunt!\n"
  },
  {
    "path": "projects/mywish.md",
    "content": "---\nslug: \"mywish\"\ndate: \"2021-10-30\"\ntitle: \"MyWish\"\nlogline: \"Leading Smart Contract Generator.Create smart contracts with no coding on any blockchain\"\ncta: \"https://mywish.io\"\nlogo: /img/MyWish.png\ncategory: app, explorer\nstatus: live\nwebsite: https://mywish.io\ntwitter: https://twitter.com/mywishplatform\ntelegram: https://t.me/MyWish_platform\nfacebook: https://www.facebook.com/MyWish.io/\n---\n\nThe interest in the blockchain and smart contracts is growing as the digital economy enters everyone's life.\nHowever, their mass adoption is slowed by some inherent conceptual issues.\n"
  },
  {
    "path": "projects/naughtyfingers.md",
    "content": "---\nslug: \"naughtyfingers\"\ndate: \"2021-11-14\"\ntitle: \"Naughty Fingers\"\nlogline: \"Uniquely generated 8,888 middle fingers to fight against all the toxicity on our pale blue plane\"\ncta: \"https://naughtyfingers.io/\"\nlogo: /img/naughtyfingers.png\ncategory: nft\nstatus: building\nwebsite: https://naughtyfingers.io/\ntwitter: https://twitter.com/NaughtyFingerss\ndiscord: https://discord.gg/nVKfkUUFDX\n---\n\nWe are a diligent team of professionals, who have been working on the NFT space. Naughty Fingers are designed by our artists to demonstrate an alternative way of expression.\n"
  },
  {
    "path": "projects/naxar.md",
    "content": "---\nslug: \"naxar\"\ndate: \"2021-10-14\"\ntitle: \"Naxar\"\nlogline: \"Naxar – a utility token aiming to build an ecosystem on the Solana blockchain.\"\ncta: \"https://naxar.ru\"\nlogo: /img/naxar.png\ncategory: defi, wallet, nft\nstatus: building\nwebsite: https://naxar.ru\ntwitter: https://twitter.com/_Naxar\ntelegram: https://t.me/naxar_official\ndiscord: https://discord.com/invite/7DdvxkEh4Q\n---\n\nNaxar not only aims to become the leading mobile app ecosystem in Solana, but it will also provide additional features soon after launch to insure useful space.\n\nNaxar projects:\n\n- Boxch: mobile wallet and main project\n- Wolf DEX\n- NFT Citizenship"
  },
  {
    "path": "projects/neftify.md",
    "content": "---\nslug: \"neftify\"\ndate: \"2021-11-03\"\ntitle: \"Neftify\"\nlogline: \"Lend game #NFTs and earn yield on play-to-earn rewards\"\ncta: \"https://neftify.com\"\nlogo: /img/neftify.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://neftify.com\ntwitter: https://twitter.com/neftify\ndiscord: https://discord.com/invite/p72MzBezKz\n---\n\nNeftify crowdsources game NFTs and loans them to players. Lenders earn a share of play-to-earn rewards, \nwhile players are able to participate in the decentralized game economy.\n"
  },
  {
    "path": "projects/neighborhood.md",
    "content": "---\nslug: \"neighborhood\"\ndate: \"2021-11-18\"\ntitle: \"The Neighborhood\"\nlogline: \"3D homes of solana. A neighborhood so friendly Mr. Rogers would approve. Only 5,555 homes ever\"\ncta: \"https://neighborhood.zone/\"\nlogo: /img/neighborhood.jpg\ncategory: nft\nstatus: live\nwebsite: https://neighborhood.zone/\ntwitter: https://twitter.com/SolNeighborhood\ndiscord: https://discord.gg/3Xg8svAwr2\n---\n\n3D homes of solana. A neighborhood so friendly Mr. Rogers would approve. Only 5,555 homes ever\n"
  },
  {
    "path": "projects/nekoverse.md",
    "content": "---\nslug: \"nekoverse\"\ndate: \"2021-11-21\"\ntitle: \"Nekoverse\"\nlogline: \"Mass multiplayer community driven game built on Solana.\"\ncta: \"https://nekoverse.net\"\nlogo: /img/nekoverse.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://nekoverse.net\ntwitter: https://twitter.com/Nekoverse_NFT\ndiscord: https://discord.com/invite/9wMMGHghcP\n---\n\nNekoverse, resting lands of all Nekos, relentlessly torn apart by yet a mysterious force and casted into various parts within the Nekoverse. These 8 mystic realms has been ever since ruled by most powerful Ancient Nekos, yet the rise of wretched elemental Neko armies are determined to restore the balance to the hereafter.\n"
  },
  {
    "path": "projects/neon.md",
    "content": "---\nslug: \"neon\"\ndate: \"2021-11-14\"\ntitle: \"Neon\"\nlogline: \"Neon enables dApp developers to use Ethereum tooling to scale and get access to liquidity on Solana\"\ncta: \"https://neonswap.live/#/get-tokens\"\nlogo: /img/neon.png\ncategory: infra\nstatus: building\nwebsite: https://neon-labs.org\ntwitter: https://twitter.com/neonlabsorg\ndiscord: https://discord.com/invite/7b7RpfurPV\n---\n\nVirtual machine from Ethereum. Scalability and liquidity from Solana.\n\n- Scalability Benefits:\n  Enjoy low gas fees and high transaction speed on Solana\n- Minimal Contract Changes:\n  Deploy Ethereum dApps without any reconfigurations to smart contracts\n- Growing Solana Market:\n  Get access to SOL, native Solana assets, and other bridged assets\n- Familiar Languages:\n  Write your dApps in languages you know, like Solidity and Vyper\n- Tools You Know:\n  Use Ethereum-based tools you know and love like MetaMask and Truffle\n- Attractive Solana Ecosystem:\n  Enjoy first-mover advantage and reach new customers\n"
  },
  {
    "path": "projects/neonexus.md",
    "content": "---\nslug: \"neonexus\"\ndate: \"2021-10-23\"\ntitle: \"NEONEXUS\"\nlogline: \"A futuristic, cyberpunk city, alive in the metaverse on Solana. Own property, take part in the gameplay, and help us build.\"\ncta: \"https://neonexus.io/auction/\"\nlogo: /img/neonexus.png\ncategory: game, nft\nstatus: building\nwebsite: https://neonexus.io\ntwitter: https://twitter.com/neonexus_world\ndiscord: https://discord.com/invite/6ZAwswhBWe\n---\n\nWith the highest density and diversity of people, the NEONEXUS is an exciting place that never sleeps. Civil life teems within a steel forest of skyscrapers that pierce the sky. Gangs rule the narrow streets. And behind closed doors the money flows... from somewhere.\n\nWord is that the Nantech Corp is the real power behind the scenes, their wealth and power the product of a single invention – the Mind Augmentation Device, which even the lower rungs of society have adopted in droves.\n"
  },
  {
    "path": "projects/nerve.md",
    "content": "---\nslug: \"nerve\"\ndate: \"2021-05-11\"\ntitle: \"Nerve Finance\"\nlogline: \"Nerve is a trustless on-ramp and stableswap built on BSC and Solana.\"\ncta: \"https://nerve.fi/\"\ncategory: amm\nlogo: /img/nerve.svg\nstatus: building\nwebsite: https://nerve.fi/\ntwitter: https://twitter.com/NerveFinance\ntelegram: https://t.me/nervefinance\ndiscord: https://discord.gg/waqfG39F4j\n---\n\nNerve is an automated market-maker (AMM) on the Binance Smart Chain (BSC) designed for low-slippage trading of stablecoins and other pegged assets. Nerve's first pool was launched with a basket of dollar-pegged stablecoins consisting of BUSD, USDT, and USDC. The protocol has since launched pegged BTC and ETH pools, in service of its cross-chain Nerve Bridge, with more pools in development.\n\nNerve's offering on the Solana network is currently in development.\n"
  },
  {
    "path": "projects/nfteepeeclub.md",
    "content": "---\nslug: \"nfteepeeclub\"\ndate: \"2021-10-19\"\ntitle: \"NFTeePee\"\nlogline: \"NFT collectible built on Sol! 7777 available rolls for club.\"\ncta: \"https://nfteepee.club/mint\"\nlogo: /img/teepee.png\ncategory: nft\nstatus: live\nwebsite: https://nfteepee.club/mint\ntwitter: https://twitter.com/NFTeePeeClub\ndiscord: https://discord.com/invite/QAuZWqGHW4\n---\n\nNFT collectible built on Sol! 7777 available rolls for club.\n"
  },
  {
    "path": "projects/ngc.md",
    "content": "---\nslug: \"ngc\"\ndate: \"2021-05-07\"\ntitle: \"NGC Ventures\"\nlogline: \"NGC Ventures is an active investor in projects building on Solana that have innovative use cases and solve pressing issues.\"\nlogo: /img/ngc.svg\ncategory: fund\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2text: \"Fund Announcement\"\ncta2: \"https://www.coindesk.com/solana-development-growth-strategic-investment-funds\"\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/ngc.png\nstatus: live\n---\n\nNGC Ventures' fund emphasizes development, hiring, and prudent treasury and financial management. By leveraging their polished thesis and rich network, NGC Ventures brings invaluable relationships to the Solana ecosystem.\n\nUp to $20M will be deployed to projects with potential for disrupting their target markets. Having a strong team with an innovative project and good product/market fit, strong community participation, and a clear pathway toward community ownership are all examples of criteria that NGC Ventures takes into account.\n\nIn addition to capital, NGC Ventures offers mentorship based on entrepreneurial experience, specifically in regard to company building, hiring, and treasury management.\n"
  },
  {
    "path": "projects/niftynanas.md",
    "content": "---\nslug: \"niftynanas\"\ndate: \"2021-10-16\"\ntitle: \"Nifty Nanas\"\nlogline: \"Nifty Nanas is a collection of 8,888 uniquely generated bananas that was built to represent a commitment to supporting the Solana ecosystem. \"\ncta: \"https://www.niftynanas.com/\"\nlogo: /img/niftynanas.png\ncategory: nft\nstatus: live\nwebsite: https://www.niftynanas.com/\ntwitter: https://twitter.com/NiftyNanas\ndiscord: https://discord.com/invite/niftynanas\n---\n\nNifty Nanas is a collection of 8,888 uniquely generated bananas that was built to represent a commitment to supporting the Solana ecosystem.\n"
  },
  {
    "path": "projects/nightfallzero.md",
    "content": "---\nslug: \"nfz\"\ndate: \"2021-11-14\"\ntitle: \"Night Fall Zero\"\nlogline: \"Night Fall Zero is an NFT collection and a multiplayer battle arena NFT game, set in a post-apocalyptic future.\"\ncta: \"https://twitter.com/night_fall_zero\"\nlogo: /img/nightfallzero.png\ncategory: nft,game\nstatus: building\nwebsite: https://www.nightfallzero.com/\ntwitter: https://twitter.com/night_fall_zero\ndiscord: https://discord.com/invite/NC3RzZa34S\n---\n\nNight Fall Zero is an NFT project on the Solana blockchain with the ultimate goal to build a multiplayer, battle arena game set in a post-apocalyptic future:\n- The first step is to release 3 NFT collection with 10,000 unique generative NFTS with atributes and a rarity system. Those NFTs will be usable in-game.\n- The game will be a Dota-like with a battle royale twist. Free to play and Play to Earn.\n"
  },
  {
    "path": "projects/nina.md",
    "content": "---\nslug: \"nina\"\ndate: \"2020-06-24\"\ntitle: \"Nina\"\nlogline: \"Nina is a self-publishing protocol for musicians, offering decentralized distribution (via Arweave), automated royalty splits, redeemables, and a secondary market.\"\ncta: \"https://nina.market\"\nlogo: /img/nina.svg\ncategory: app\nstatus: building\nwebsite: https://nina.market/\ntwitter: https://twitter.com/nina_market_\ndiscord: https://discord.gg/JSKKcrPUQx\n---\n\nUtilizing innovations of web3, Nina provides the infrastructure for\nartists to control distribution, publication, and revenue streams for\ntheir work in a revolutionary way.\n\nDecentralized file-distribution, tokenized ownership, and transparent\nroyalty payments circumvent the exploitative status-quo of the music\nindustry.\n\nCurrently, nfrastructure providers in the industry profit by\ntaking a piece of the artist’s revenue. Nina deems this unnecessary.\n\nAt Nina, we believe a protocol that provides maximum value to artists\nand fans alike will bring the next wave of users to web3.\n\nArtists, fans, and protocol stakeholders alike will now have a direct say in\nthe evolution of the future of music online via decentralized\ngovernance.\n"
  },
  {
    "path": "projects/ninjaprotocol.md",
    "content": "---\nslug: ninjaprotocol\ndate: \"2021-08-22\"\ntitle: Ninja Protocol\nlogline: Ninja Protocol is an ecosystem product developed on the Solana blockchain with a focus on gaming & NFTs.\ncta: \"https://ninjaprotocol.io/\"\nlogo: /img/ninjaprotocol.svg\ncategory: \"dex, nft, app\"\nstatus: building\ntwitter: \"https://twitter.com/NINJASolProto\"\n---\n\nNinja Protocol is an ecosystem product developed on the Solana blockchain with a focus on gaming & NFTs.\n\n<b>Website</b>: https://ninjaprotocol.io/ </br>\n<b>Ninja Dex</b>: https://betadex.ninjaprotocol.io/ </br>\n<b>Ninja Profile</b>: https://profile.ninjaprotocol.io/ </br>\n<b>Twitter</b>: https://twitter.com/NINJASolProto </br>\n<b>Telegram</b>: https://t.me/joinchat/u1YLLZHQcvM1YTU0 </br>\n<b>Discord</b>: https://discord.gg/ninjaprotocol </br>\n"
  },
  {
    "path": "projects/nitropunk.md",
    "content": "---\nslug: \"nitropunk\"\ndate: \"2021-11-13\"\ntitle: \"Nitropunk\"\nlogline: \"Enter the Nitroverse - Classic arcade racing NFTs on Solana with 10,000 unique animated cars.\"\ncta: \"https://nitropunk.io/\"\nlogo: /img/nitropunk.png\ncategory: game, nft\nstatus: building\nwebsite: https://nitropunk.io/\ntwitter: https://twitter.com/NitropunkNFT\ndiscord: https://discord.com/invite/KWA5sXYV2s\n---\n\nInspired by classic arcade racing games like OutRun and Cruis'n USA, Nitropunk cars are a collection of 10,000 unique, collectable, and soon raceable NFTs on the Solana blockchain!\nEach animated pixel car is randomly crafted from multiple properties like car bodies, paint jobs, wraps, wheels, spoilers, body kits, and more with over 1 billion combinations.\n"
  },
  {
    "path": "projects/nocte.md",
    "content": "---\nslug: \"nocte\"\ndate: \"2020-07-22\"\ntitle: \"Nocte\"\nlogline: \"Nocte is an Automated Market Maker and DEX built on Solana.\"\ncta: \"https://nocte.app/\"\nlogo: /img/nocte.svg\ncategory: amm, dex, defi\nstatus: building\nwebsite: https://nocte.app/\ntwitter: https://twitter.com/nocteapp_\ndiscord: https://discord.gg/xtnxJe9zrF\ntelegram: https://t.me/noctesol\n---\n\nNocte is an Automated Market Maker and DEX built on Solana providing liquidity for SPL tokens and other cross-chain assets, a first for the Solana ecosystem.\n"
  },
  {
    "path": "projects/nogoal.md",
    "content": "---\nslug: \"nogoal\"\ndate: \"2021-08-16\"\ntitle: \"NoGoal\"\nlogline: \"NoGoalFaces is a collection of 512 randomly generated dumb face NFTs, upgradable with useless NoGoalTokens that are tradable on the NoGoalDEX.\"\ncta: https://nogoal.click/\nlogo: /img/nogoal.svg\ncategory: nft, app, spl, dex\nstatus: building\nwebsite: https://nogoal.click/\ntwitter: https://twitter.com/InoSplToken\ndiscord: https://discord.gg/mHS3qbBaZk\n---\n\n<b>NoGoalFaces</b>\nNoGoalFaces is a collection of 512 randomly generated dumb face NFTs. Their metadata is permanently stored on Arweave and is Metaplex compatible. Each face (512x512 pixels) is the combination of 11 layers and 70+ attributes, for a total possibility of over 20 million unique faces! All attributes have rarity levels: Common (default attribute), Uncommon (20% chance), Rare (10%), Epic (4%) and Legendary (1%).\n\nGet yours at: http://faces.nogoal.click/</br>\n\n<b>NoGoalToken</b>\nPreviously I(have)NO(goal), the NoGoalToken $INO is aj SPL token that will enable NoGoalFaces NFT holders to upgrade their faces' attributes. The memetoken was AirDropped to 22,785 unique addresses across the world, mostly without any token holding requirements, making it one of the largest and most equitable Solana AirDrops yet!\n\nRead more at: http://token.nogoal.click/</br>\n\n<b>NoGoalDEX</b>\nNoGoalDEX is a Serum-based DEX that allows for the trading of $INO tokens and numerous meme tokens. As part of the token distribution, $INO holders get 100% of their Serum fees instantly reimbursed in $INO when they trade on the DEX.\n\nTrade on: http://dex.nogoal.click/</br>\n"
  },
  {
    "path": "projects/nonfungiblebees.md",
    "content": "---\nslug: \"nonfungiblebees\"\ndate: \"2021-10-11\"\ntitle: \"NON-FUNGIBLE BEES\"\nlogline: \"3333 Bees Swarming The Solana Ecosystem.\"\ncta: \"https://www.nonfungiblebees.io/\"\nlogo: /img/nonfungiblebees.png\ncategory: metaplex, nft\nstatus: live\nwebsite: https://www.nonfungiblebees.io/\ntwitter: https://twitter.com/NonFungibleBees\ntelegram:\ndiscord: https://discord.gg/p2gcVTGrFv\n---\n\nThis project will look nicely on the ecosystem page and very much advance\nthe Solana Ecosystem. All while following the community rules, and the ones\nstated herein.\n"
  },
  {
    "path": "projects/nonfungiblemeow.md",
    "content": "---\nslug: \"nonfungiblemeow\"\ndate: \"2021-11-18\"\ntitle: \"Non-Fungible Meows\"\nlogline: \"Collection of 3,333 of Charming and Brave Non-Fungible Meows on Solana.\"\ncta: \"https://nfmeow.com/\"\nlogo: /img/nonfungiblemeow.jpg\ncategory: nft\nstatus: live\nwebsite: https://nfmeow.com/\ntwitter: https://twitter.com/nonfungiblemeow\ndiscord: https://discord.gg/nonfungiblemeow\n---\n\nCollection of 3,333 of Charming and Brave Non-Fungible Meows on Solana.\n"
  },
  {
    "path": "projects/nora.md",
    "content": "---\r\nslug: \"nora\"\r\ndate: \"2021-11-02\"\r\ntitle: \"SOLANA NORA\"\r\nlogline: \"NORA TOKEN is a community own token build on solana for community\"\r\ncta: \"https://solananora.com\"\r\nlogo: /img/nora.png\r\ncategory: amm, app\r\nstatus: live\r\nwebsite: https://solananora.com\r\ntwitter: https://twitter.com/SolNoraToken/\r\ntelegram: https://t.me/solnora\r\ndiscord: https://discord.gg/YYmbtvan2K\r\n---\r\n\r\nNORA TOKEN is a community own token build on solana for community"
  },
  {
    "path": "projects/novafinance.md",
    "content": "---\nslug: \"novafinance\"\ndate: \"2021-11-13\"\ntitle: \"NOVA\"\nlogline: \"Building programmable assets and automating investor strategies on Solana\"\ncta: \"https://novafinance.app/\"\nlogo: /img/novafinance.jpg\ncategory: defi, app\nstatus: building\nwebsite: https://novafinance.app/\ntwitter: https://twitter.com/NovaFinance_\ntelegram: https://t.me/NovaAnnouncements\ndiscord: https://discord.gg/WYVUSn56ac\n---\n\nBuilding programmable assets and automating investor strategies on Solana\n"
  },
  {
    "path": "projects/novalaunch.md",
    "content": "---\nslug: \"novalaunch\"\ndate: \"2021-10-05\"\ntitle: \"Nova Launch\"\nlogline: \"The trusted partner in high volume, best-in-class NFT live minting on the Solana network.\"\ncta: \"https://novalaunch.art/\"\nlogo: /img/novalaunch.png\ncategory: nft\nstatus: live\nwebsite: https://novalaunch.art/\ntwitter: https://twitter.com/nova_launch\n---\n\nNova Launch is your full-service development partner working towards your project's successful mint & long term growth. We've launched many successful sold-out mints (including our own) & have a trusted reputation in the Solana NFT space.\n"
  },
  {
    "path": "projects/novanerds.md",
    "content": "---\nslug: \"novanerds\"\ndate: \"2021-11-14\"\ntitle: \"Nova Nerds\"\nlogline: \"1111 randomly generated nerds to dominate the solana world\"\ncta: \"https://www.novanerds.art/\"\nlogo: /img/novanerds.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.novanerds.art/\ntwitter: https://twitter.com/NovaNerdsNFT\ndiscord: https://discord.gg/jjZEWqUhV8\n---\n\n1111 randomly generated nerds to dominate the solana world\n"
  },
  {
    "path": "projects/nyanheroes.md",
    "content": "---\nslug: \"nyanheroes\"\ndate: \"2021-10-25\"\ntitle: \"Nyan Heroes\"\nlogline: \"Become a Nyan Hero & save real cats! Play2Earn\"\ncta: \"https://nyanheroes.com/\"\nlogo: /img/nyan.png\ncategory: nft\nstatus: building\nwebsite: https://nyanheroes.com\ntwitter: https://twitter.com/nyanheroes\ntelegram: https://t.me/nyanheroes\ndiscord: https://discord.gg/nyanheroes\n---\n\nNekovia was once the greatest civilization in the metaverse. After centuries of peace, wealth and technological advancement, its citizens, the Nyans, began to believe themselves to be Gods in their own right.\nAt the top of the evolutionary food chain, they eventually saw fit to mold the world to suit their needs, rather than respect the laws of nature. They denounced their ancestors,\ntheir religions, and their cultures, and in doing so ruined their world.\n\nBy unlocking their secrets with blockchain technology and cryptography, you adventurers have given the Nyans a new power that is limitless in its potential.\nAs your Heroes embrace this new world paradigm and understand the potential that is offered, they call forth mighty Guardians and seek to take back what was once lost.\n"
  },
  {
    "path": "projects/o3.md",
    "content": "---\nslug: \"o3\"\ndate: \"2020-04-03\"\ntitle: \"O3Labs\"\nlogline: \"O3Labs maintains O3 Wallet, a mobile wallet, and O3 Swap, a cross-chain aggregation protocol.\"\ncta: \"https://o3.network/\"\nlogo: /img/o3.svg\ncategory: wallet, amm\nstatus: live\nwebsite: https://o3.network/\ntwitter: https://twitter.com/O3_Labs\ntelegram: https://t.me/O3LabsOfficial\n---\n\nO3 Wallet and O3 Swap announced that they will soon support Solana’s native token SOL and SPL tokens.\n\nUsers will be able to import SOL wallets and transfer SOL & SPL tokens to on-chain addresses with O3. O3 Swap will also enable cross-chain transactions for Solana users.\n"
  },
  {
    "path": "projects/offpiste.md",
    "content": "---\nslug: \"offpiste\"\ndate: \"2021-08-02\"\ntitle: \"off-piste\"\nlogline: \"Off-Piste is a decentralized pre-IPO synthetic derivatives protocol, leveraging Serum's order book-based DEX.\"\ncta: https://offpsite.io\nlogo: /img/offpiste.svg\ncategory: defi\nstatus: building\n---\n\nOff-piste is a decentralized platform allowing retail and institutional participants to gain exposure to pre-IPO markets through synthetic derivatives. These digital assets are financially settled at closing price on IPO day, enabling the protocol to be a price and demand discovery mechanism for private companies. This will help facilitate less volatile IPOs and democratize access to private capital markets for the global population. The protocol leverages Serum's on-chain order book based DEX to give users a familiar experience and to truly enable price and demand discovery.\n"
  },
  {
    "path": "projects/okex.md",
    "content": "---\nslug: \"okex\"\ndate: \"2020-04-03\"\ntitle: \"OKEx\"\nlogline: \"OKEx, one of the world's leading crypto exchanges, listed SOL on September 30th, 2020.\"\ncta: \"https://www.okex.com/\"\nlogo: /img/okex.svg\ncategory: exchange\nstatus: live\n---\n\nThe SOL token has proven to be a strong addition to the OKEx ecosystem, with trading volume ranked in the top 9 on the exchange. This listing is an exciting new development and we’re delighted Solana will now be traded on one of the largest exchanges in Asia.\n"
  },
  {
    "path": "projects/only1.md",
    "content": "---\nslug: \"only1\"\ndate: \"2021-05-28\"\ntitle: \"Only1\"\nlogline: \"Only1 is an NFT-powered social engagement platform built on Solana.\"\ncta: \"https://twitter.com/only1nft\"\nlogo: /img/only1.svg\ncategory: nft\nwebsite: https://only1.io/\ntwitter: https://twitter.com/only1nft\ntelegram: https://t.me/only1nft\ndiscord: https://discord.com/invite/sUu7KZwNCB\nstatus: building\n---\n\nOnly1 is an NFT-powered social engagement platform built on Solana.\nBuy and sell NFTs from your favorite content creators, earn crypto through interactions, or mint your own NFTs and start earning rewards today. Powered by Solana.\n"
  },
  {
    "path": "projects/oogi.md",
    "content": "---\nslug: \"oogi\"\ndate: \"2021-11-15\"\ntitle: \"OOGI\"\nlogline: \"OOGI Token on Solana \"\ncta: \"https://oogi.com\"\nlogo: /img/oogi.jpg\ncategory: app\nstatus: live\nwebsite: https://oogi.com/\ntwitter: https://twitter.com/oogicoin\ntelegram: https://t.me/oogicoin\ndiscord: https://discord.gg/oogi\n---\n\n$OOGI is a token made on Solana by the BabyApes development team. \nIt was introduced as a meme token for the BabyApes community but with the partnership it with Turtles Launchpad, \nnow it has utility and staking features.\n"
  },
  {
    "path": "projects/openera.md",
    "content": "---\nslug: \"openera\"\ndate: \"2021-05-11\"\ntitle: \"OpenEra\"\nlogline: \"OpenEra is a DeFi MMORPG built on Solana and powered by Serum.\"\ncta: \"https://twitter.com/OpenEraHQ\"\ncategory: app\nlogo: /img/openera.svg\nstatus: building\ntwitter: https://twitter.com/OpenEraHQ\ndiscord: http://discord.gg/Tg9dXcnSM4\n---\n\nOpenEra is a MMORPG built on the Solana blockchain and powered by Serum. It is inspired by classic games, such as RuneScape, and modern MMOs like Albion Online. OpenEra is about uncovering your destiny and taking part in an evolving timeline — traveling through space and time together, as an ever expanding community.\n"
  },
  {
    "path": "projects/openocean.md",
    "content": "---\nslug: \"openocean\"\ntitle: \"OpenOcean\"\ndate: 2021-07-25\nlogline: \"OpenOcean is the first DeFi & CeFi full aggregator. It finds the best price and lowest slippage for traders by applying a deeply optimized intelligent routing algorithm. As a one-stop entrance, we have aggregated ETH, ETH Layer2, BSC, TRON, and Solana.\"\nlogo: /img/openocean.svg\nstatus: live\ncategory: DEX\nwebsite: https://openocean.finance/\ntwitter: https://twitter.com/OpenOceanGlobal\ntelegram: http://t.me/OOFinance\ndiscord: https://discord.com/invite/cxK6CCYcGp\n---\n\nOpenOcean is the world’s first leading full aggregator, providing an entrance to crypto trading and pools liquidity from both the DeFi and CeFi, and offering crypto traders the best possible price with lowest slippage. Our protocol implements an optimized version of the Dijkstra algorithm called D-star, which splits routing between different protocols for better rates. Following this, OpenOcean then compares the best prices on DEXs and CEXs, empowering users to have their order executed at the best possible rate.\n\nOpenOcean supports cross-chain interaction between the BSC and Ethereum and other public chains via Binance Bridge, and will eventially support direct cross-chain transactions. By aggregating the DEX of the Polkadot system, we support cross-chain transactions. After completing the transaction, withdraw seamlessly to any wallet from any chain.\n"
  },
  {
    "path": "projects/opto_nuke.md",
    "content": "---\nslug: \"optonuke\"\ndate: \"2020-04-03\"\ntitle: \"Opto_nuke\"\nlogline: \"Opto_nuke is an NFT firm digitalizing physical electronics in the form of 3D NFTs to provide a decentralized trustless exchange of electronics.\"\ncta: \"https://optonuke.io/\"\nlogo: /img/opto_nuke.svg\ncategory: NFT\nstatus: building\nwebsite: https://optonuke.io/\ntwitter: https://twitter.com/Nukeopto\ntelegram: https://t.me/opto_nuke\ndiscord: https://discord.gg/8hUp2cCJ\n---\n\nOpto_nuke is an NFT firm specializing in representing real computers as 3D NFTs, currently working towards our first drop. The first collection contains unique 3D NFTs (Opto_Nuke_IRLs) of nostalgically re-colored Dell Optiplex 9020s, featuring iconic color schemes.\n"
  },
  {
    "path": "projects/orca.md",
    "content": "---\nslug: \"orca\"\ndate: \"2020-04-03\"\ntitle: \"Orca\"\nlogline: \"Orca is the first user-friendly cryptocurrency exchange built on Solana.\"\ncta: \"https://orca.so\"\nlogo: /img/orca.svg\ncategory: DeFi, AMM, exchange\nwebsite: https://www.orca.so/\ntwitter: https://twitter.com/orca_so\ntelegram: https://t.me/orca_so\ndiscord: http://discord.gg/nSwGWn5KSG\nstatus: live\n---\n\nOrca is the easiest way to exchange cryptocurrency on the Solana blockchain. Here, you can exchange tokens with minimal transaction fees and lower latency than any DEX on Ethereum, all while knowing that you’re getting a fair price. Additionally, you may provide liquidity to a trading pool to earn a share of trading fees.\n"
  },
  {
    "path": "projects/oxygen.md",
    "content": "---\nslug: \"oxygen\"\ndate: \"2020-04-03\"\ntitle: \"Oxygen\"\nlogline: \"Oxygen.org is a DeFi Prime Brokerage Protocol built for the future to support hundreds of millions of people.\"\ncta: \"https://www.oxygen.org/\"\nlogo: /img/oxygen.svg\ncategory: DeFi\nwebsite: https://www.oxygen.org/\ntwitter: https://twitter.com/oxygen_protocol\ntelegram: https://t.me/oxygen_protocol\ndiscord: https://discord.com/invite/hbKAb2TAvc\nstatus: live\n---\n\nOxygen is a DeFi prime brokerage service built on Solana and powered by Serum's on-chain infrastructure, centered around Pools, or baskets of assets that take collective actions. Starting with a borrow-lending facility, users earn yield and get leverage against their portfolios, setting the foundation for a vibrant and decentralized financial ecosystem.\n\nIt allows for a more efficient use of assets in three key ways:\n\n1. Multiple use of the same collateral - Oxygen enables you to generate yield on your portfolio through lending out your assets  \n   and borrowing other assets at the same time.\n2. Cross-collateralization - Portfolios can be used as collateral when you want to borrow other\n   assets, allowing for lower margin call/liquidation risk for portfolios.\n3. Market-based pricing - Our protocol is order-book based, opting not to follow a manually adjusted, pre-set market model. This means we offer the fairest price for borrowing and lending every time.\n"
  },
  {
    "path": "projects/pandastreet.md",
    "content": "---\nslug: \"pandastreet\"\ndate: \"2021-10-02\"\ntitle: \"Panda Street\"\nlogline: \"Panda Street is a collection of 7,777 algo-generated and hand-drawn Panda NFTs, housed on the Solana Blockchain.\"\ncta: \"https://www.pandastreet.art/\"\nlogo: /img/pandastreet.png\ncategory: nft\nstatus: live\nwebsite: https://www.pandastreet.art/\ntwitter: https://twitter.com/PandaStreetNFT\ndiscord: https://discord.gg/Zm5yfkE4sG\n---\n\nPanda Street is a collection of 7,777 algo-generated and hand-drawn Panda NFTs, housed on the Solana Blockchain.\n"
  },
  {
    "path": "projects/pangaeaprotocol.md",
    "content": "---\nslug: \"pangaeaprotocol\"\ndate: \"2021-11-10\"\ntitle: \"Pangaea Protocol\"\nlogline: \"Accelerating Data-Centric AI Through Decentralized Dataset Generation and Augmentation, powered by solana\"\ncta: \"https://pangaeaprotocol.com\"\nlogo: /img/pangaeaprotocol.jpg\ncategory: app\nstatus: building\nwebsite: https://pangaeaprotocol.com\ntwitter: https://twitter.com/pangaeaprotocol\n---\n\nAccelerating Data-Centric AI Through Decentralized Dataset Generation and Augmentation.\n"
  },
  {
    "path": "projects/panzerdogs.md",
    "content": "---\nslug: \"panzerdogs\"\ndate: \"2021-11-19\"\ntitle: \"Panzer Dogs\"\nlogline: \"5555 unique dog cadets preparing for PVP tank battles on Solana.\"\ncta: \"https://www.panzerdogs.io/\"\nlogo: /img/panzerdogs.png\ncategory: game, nft\nstatus: building\nwebsite: https://www.panzerdogs.io/\ntwitter: https://twitter.com/panzerdogs\ndiscord: https://discord.com/invite/dSbEq6fBA2\n---\n\nPanzerdogs is a Solana NFT gaming project where users can own each in-game asset and use them to battle against each other in tanks. Think Brawl Stars, but with tanks and play to earn mechanics.\nOur focus is game first, then blockchain. By using blockchain technology, we believe players of Panzerdogs will have a new way of interactions with gaming. Together with the community we are building a game that is accessible for a wide audience and fun to play.\n"
  },
  {
    "path": "projects/parametrise.md",
    "content": "---\nslug: \"parametrise\"\ndate: \"2021-09-29\"\ntitle: \"Parametrise\"\nlogline: \"A growing library of parametric NFT collections.\"\ncta: \"https://parametrise.com/\"\nlogo: /img/parametrise.png\ncategory: nft\nstatus: live\nwebsite: https://parametrise.com/\ntwitter: https://twitter.com/Parametrise_NFT\ndiscord: https://discord.gg/kMkMKp8aCs\n---\n\nAnchor is a savings protocol that aims to produce a simple and\nconvenient savings product with broad appeal to everyday users.\n"
  },
  {
    "path": "projects/parrot.md",
    "content": "---\nslug: \"parrot\"\ndate: \"2021-03-22\"\ntitle: \"Parrot\"\nlogline: \"Parrot is a liquidity network for lending and borrowing on Solana.\"\ncta: https://github.com/defactojob/partyparrot\nlogo: /img/parrot.svg\ncategory: DeFi\nwebsite: https://partyparrot.finance/vaults/\ntwitter: https://twitter.com/gopartyparrot\ntelegram: https://t.me/gopartyparrot\ndiscord: https://discord.com/invite/gopartyparrot\nstatus: live\n---\n\nThe Parrot Protocol is a DeFi network built on Solana that includes the stablecoin PAI, a non-custodial lending market, and a margin trading vAMM.\n"
  },
  {
    "path": "projects/parsiq.md",
    "content": "---\nslug: \"parsiq\"\ndate: \"2020-04-03\"\ntitle: \"Parsiq\"\nlogline: \"PARSIQ introduced Smart Triggers to the crypto world, allowing real-time on-chain events to trigger off-chain actions, which gives developers the possibility to automate workflows. Now, there are endless ways to interact with real-world applications, maximizing possibilities while still being cost effective.\"\ncta: \"https://blog.parsiq.net/parsiqs-real-time-monitoring-now-on-solana/\"\nlogo: /img/parsiq.svg\ncategory: infra\nwebsite: https://www.parsiq.net/en/\ntwitter: https://twitter.com/parsiq_net\ntelegram: https://t.me/parsiq_group\ndiscord: https://discord.com/invite/RXRTx4dGwQ\nstatus: live\n---\n\nPARSIQ is a blockchain monitoring and automation work platform that acts as a multi-layer bridge between blockchain and off-chain applications. We automate the blockchain analysis and monitoring process, and provide a customizable workflow with real-time intelligence.\n\nPARSIQ announced their integration with the Solana blockchain on February 26th, 2021, enabling users on the Solana network to reap the benefits of the PARSIQ ecosystem. Our push-based data-stream aggregator adds programmability on top of real time data-streams. Users can combine independent data streams and write arbitrary scenarios in reactive style using our easy scripting language.\n"
  },
  {
    "path": "projects/pawnshopgnomies.md",
    "content": "---\nslug: \"pawnshopgnomies\"\ndate: \"2021-11-06\"\ntitle: \"Pawnshop Gnomies\"\nlogline: \"5555 Pawnshop Gnomies are highly educated creatures who run a DAO-based NFT Pawnshop on solana\"\ncta: \"https://pawnshopgnomies.com\"\nlogo: /img/pawnshopgnomies.png\ncategory: nft\nstatus: building\nwebsite: https://pawnshopgnomies.com\ntwitter: https://twitter.com/pawnshopgnomies\ndiscord: https://discord.gg/CF3SZ5qAYc\n---\n\nThe Gnomies are the most trusted creatures in the Solana universe, they are complete control-freaks when it comes to accounting stuff, smart-contracts and transactions.\n\nTheir main mission is to create financial services and passive incomes to benefit the community. The Gnomies make moni for you fren, own the Gnomie for your family and sleep well.\n"
  },
  {
    "path": "projects/peeps.md",
    "content": "---\nslug: \"peeps\"\ndate: \"2021-10-16\"\ntitle: \"The Peeps\"\nlogline: \"PEEPs are 10,000 unique block peeple for you to collect! Minted on the Solana blockchain, PEEPs are quirky, chirpy, and every single one has an incredibly unique personality!\"\ncta: \"https://thepeeps.show/\"\nlogo: /img/peeps.png\ncategory: nft\nstatus: live\nwebsite: https://thepeeps.show/\ntwitter: https://twitter.com/thepeepsnft\ndiscord: https://discord.com/invite/n9QATdQWYc\n---\n\nPEEPs are 10,000 unique block peeple for you to collect! Minted on the Solana blockchain, PEEPs are quirky, chirpy, and every single one has an incredibly unique personality!\n"
  },
  {
    "path": "projects/pepepunks.md",
    "content": "---\nslug: \"pepepunks\"\ndate: \"2021-11-06\"\ntitle: \"pepepunks\"\nlogline: \"10,000 unique ai generated collectible pepes. OG CryptoPunks parody. Minting Nov 2021\"\ncta: \"https://pepepunks.net\"\nlogo: /img/pepepunks.jpg\ncategory: nft\nstatus: building\nwebsite: https://pepepunks.net\ntwitter: https://twitter.com/pepepunksnft\ndiscord: https://discord.gg/DqxGXBQBpz\n---\n\nPepePunks are 10,000 hand drawn, randomly generated, pixel pepes. \nTheir traits are pulled from all reaches of the metaverse and include surprising mashups of 350 unique attributes all the way down to 1 of 1 rarities.\n"
  },
  {
    "path": "projects/personifynft.md",
    "content": "---\nslug: \"personifynft\"\ndate: \"2021-11-06\"\ntitle: \"Personify\"\nlogline: \"8,888 truly unique art pieces. The personification of art. Launching on Solana\"\ncta: \"https://www.personifynft.io\"\nlogo: /img/personifynft.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.personifynft.io\ntwitter: https://twitter.com/personifynft\n---\n\nThe Personify Team is here to bring you 8,888 unique pieces of art. These art pieces are used to describe events, emotions, people, etc. Our goal is to create art pieces that are beautiful to look at. We are not here to create template art for flippers. Our team of artists, innovators, and developers hope to create work based on the voice of our community. Being the first and only limited NFT drop to provide truly unique images, we are committed to giving each and every art piece value. The rarity of the art will be set solely on the owner's taste and preferences, \njust like how real art should be. We hope you'll support us on this journey and become a part of Personify.\n"
  },
  {
    "path": "projects/peskyicecube.md",
    "content": "---\nslug: \"peskyicecube\"\ndate: \"2021-11-18\"\ntitle: \"PESKY ICE CUBE\"\nlogline: \"The coldest cubes of Antarctica\"\ncta: \"https://peskyicecube.xyz/\"\nlogo: /img/peskyicecube.jpg\ncategory: nft\nstatus: live\nwebsite: https://peskyicecube.xyz/\ntwitter: https://twitter.com/PeskyIceCube\ndiscord: https://discord.gg/bmxHxQ8GRk\n---\n\nFrom the depths of Antarctica, the Noot Gang's\nmost desired ice cubes have appeared.\nThree types of ice cubes, will you get the rarest?\n"
  },
  {
    "path": "projects/peskypenguin.md",
    "content": "---\nslug: \"peskypengiun\"\ndate: \"2021-10-14\"\ntitle: \"Pesky Penguin Club\"\nlogline: \"8776 deflationary, uniquely generated Penguins running from THE SNOWBALL so they aren’t swept from circulation. \"\ncta: \"https://peskypenguinclub.com/\"\nlogo: /img/peskypenguin.png\ncategory: nft\nstatus: live\nwebsite: https://peskypenguinclub.com/\ntwitter: https://twitter.com/PeskyPenguinNFT\ndiscord: https://discord.com/invite/akwKnaKzRy\n---\n\n8776 deflationary, uniquely generated Penguins running from THE SNOWBALL so they aren’t swept from circulation.\n"
  },
  {
    "path": "projects/phant.md",
    "content": "---\nslug: \"phant\"\ndate: \"2021-10-18\"\ntitle: \"phant\"\nlogline: \"play to earn. make money via crypto\"\ncta: \"www.wecap.io\"\nlogo: /img/phant.png\ncategory: metaplex, game, nft, spl, wallet, app\nstatus: building and integration\nwebsite: www.wecap.io\ntwitter: https://twitter.com/wefinph\ntelegram: https://t.me/wefinc\ndiscord: https://discord.gg/8vsBHQwhTc\n---\n\nWhite Elephant is an ecosystem of crypto products under solana network. Offering Play to Earn, NFT Marketplace, Wallet, DEX on its platform and SPL Token Phant (PNT)\n"
  },
  {
    "path": "projects/phantom.md",
    "content": "---\nslug: \"phantom\"\ndate: \"2020-04-03\"\ntitle: \"Phantom\"\nlogline: \"Phantom is a digital wallet tailored for Solana and Ethereum.\"\ncta: \"https://phantom.app/\"\nlogo: /img/phantom.svg\ncategory: wallet\nstatus: live\nwebsite: https://phantom.app/\ntwitter: https://twitter.com/phantom\n---\n\nPhantom is a digital wallet reimagined for DeFi, making it safe and easy to store, send, receive, collect, and swap tokens on the Solana blockchain.\n"
  },
  {
    "path": "projects/pigeonsol.md",
    "content": "---\nslug: \"pigeonsol\"\ndate: \"2021-05-16\"\ntitle: \"PigeonSol\"\nlogline: \"PigeonSol($PGNT) is a DEX and NFT marketplace.\"\ncta: \"https://twitter.com/PigeonSol\"\nlogo: /img/pigeonsol.svg\ncategory: dex,metaplex\nstatus: live\nWebsite: http://solavatars.pigeonsol.xyz/\nTwitter: https://twitter.com/PigeonSol\nDiscord: https://discord.com/invite/KHZGhJktYm\n---\n\nPigeonSol is a deflationary token powered by Solana with a user friendly DEX and NFT marketplace.\n"
  },
  {
    "path": "projects/piggysolgang.md",
    "content": "---\nslug: \"piggysolgang\"\ndate: \"2021-10-01\"\ntitle: \"Piggy Sol Gang\"\nlogline: \"NFT platform of 10,000 cute & cruel piggies living on Solana.\"\ncta: \"https://market.piggygang.com/\"\nlogo: /img/piggygang.png\ncategory: nft\nstatus: live\nwebsite: https://market.piggygang.com/\ntwitter: https://twitter.com/PiggySolGang\ndiscord: https://t.co/VWWdllhRBz?amp=1\n---\n\nNFT platform of 10,000 cute & cruel piggies living on Solana.\n"
  },
  {
    "path": "projects/pixelpuffins.md",
    "content": "---\nslug: \"pixelpuffins\"\ndate: \"2021-11-18\"\ntitle: \"Pixel Puffins\"\nlogline: \"7,777 Puffins to collect on the Solana chain.\"\ncta: \"https://pixelpuffins.io/\"\nlogo: /img/pixelpuffins.png\ncategory: nft\nstatus: live\nwebsite: https://pixelpuffins.io/\ntwitter: https://twitter.com/PixelPuffins\ndiscord: https://discord.gg/72cA8KYk3U\n---\n\n7,777 Puffins to collect on the Solana chain.\n"
  },
  {
    "path": "projects/plasmapay.md",
    "content": "---\nslug: \"plasmapay\"\ndate: \"2020-04-03\"\ntitle: \"PlasmaPay\"\nlogline: \"PlasmaPay is a fiat on-ramp that allows users to seamlessly integrate cryptocurrency payments into their applications.\"\ncta: \"https://plasmapay.com/\"\nlogo: /img/plasmapay.svg\ncategory: infra\nstatus: live\nwebsite: https://plasmapay.com\ntwitter: https://twitter.com/0xPlasma\ntelegram: https://t.me/plasmapay_community\n---\n\nPlasmaPay makes it easy to launch cryptocurrency on and off-ramps inside your application in minutes. SOL is supported on the platform.\n"
  },
  {
    "path": "projects/playground.md",
    "content": "---\nslug: \"playground\"\ndate: \"2021-10-01\"\ntitle: \"Playground\"\nlogline: \"Generative artwork immutably stored on the Solana blockchain.\"\ncta: \"https://www.playground.ink/\"\nlogo: /img/playground.png\ncategory: nft\nstatus: live\nwebsite: https://www.playground.ink/\ntwitter: https://twitter.com/playground_sol\ndiscord: https://discord.com/invite/9gzHXgZKUK\n---\n\nGenerative artwork immutably stored on the Solana blockchain.\n"
  },
  {
    "path": "projects/plushfightleague.md",
    "content": "---\nslug: \"plushfightleague\"\ndate: \"2021-10-24\"\ntitle: \"Plush Fight League\"\nlogline: \"PvP fighting Game backed by Solana.\"\ncta: \"https://plushfightleague.com\"\nlogo: /img/plushfightleague.png\ncategory: game, nft\nstatus: building\nwebsite: https://plushfightleague.com\ntwitter: https://twitter.com/pfl_game\ndiscord: https://discord.com/invite/pfl\n---\n\nPlush Fight League is a PvP fighting game with the fighting record stored on chain. It will have Play-To-Earn mechanics and will be built on Solana due to fast and low fee transactions."
  },
  {
    "path": "projects/plutos network.md",
    "content": "---\nslug: \"plutosnetwork\"\ntitle: \"Plutos Network\"\ndate: \"2021-05-28\"\nlogline: \"Plutos Network is a cross-chain synthetic issuance and derivative trading platform which offers mining incentives and staking rewards to users.\"\ncta: https://twitter.com/PlutosNetwork\ncategory: defi\nlogo: /img/plutosnetwork.svg\nstatus: live\nwebsite: https://plutos.network/\ntwitter: https://twitter.com/PlutosNetwork\ntelegram: https://t.me/plutosnetwork\n---\n\nPlutos Network will integrate Solana in its synthetic issuance and trading platform for increased scalability.\n\nPlutos Network is built on leading blockchains, including Polkadot, BSC, and Solana, enabling on-chain and cross-chain liquidity and trading. Users can take advantage of sustainable synthetic issuance and trading services, lucratively disrupting the current derivative market.\n"
  },
  {
    "path": "projects/pocket.md",
    "content": "---\nslug: \"pocket\"\ndate: \"2020-04-03\"\ntitle: \"Pocket\"\nlogline: \"Pocket is integrating with Solana to enable primitives for a new censorship-resistant web3 stack, providing users with 100% redundant infrastructure.\"\ncta: \"https://medium.com/solana-labs/pocket-announces-its-integration-with-solana-providing-decentralized-api-solutions-for-developers-a1b514459018\"\nlogo: /img/pocket.svg\ncategory: infra\nstatus: building\n---\n\nPocket Network is an inclusive relay network for API requests to be sent to major blockchains, with a crypto-economic model that minimizes costs for developers while passing the value directly onto the full-nodes.\n"
  },
  {
    "path": "projects/polarity.md",
    "content": "---\nslug: \"polarity\"\ndate: \"2021-05-11\"\ntitle: \"Polarity\"\nlogline: \"Polarity is building a community-owned, decentralized advertising network on Solana.\"\ncta: \"https://www.polarity-network.com/\"\ncategory: app\nlogo: /img/polarity.svg\nwebsite: https://www.polarity-network.com/\ntwitter: https://twitter.com/PolarityNetwork\ndiscord: https://discord.gg/yJf2vjBbRz\nstatus: building\n---\n\nCurrently, there is no easy, non-technical interface for end-users to exchange services or bid for responses from specific user groups on the blockchain. Polarity implements a protocol which enables regular consumers to cryptographically represent themselves with a pseudonymous identity in order to interact with others and fairly exchange information or other specific services.\n\nTraditional Web 2.0 practices involve an agreement that provides a user's internet data for sophisticated advertising, tracking, and data mining. In the end, regular consumer data is given for free and the only thing received in return is permission to interact with a website. There is more money exchanged for our personal data than we might think, and this data is cleverly used to favor some and discriminate others.\n\nPolarity's goal is to secure user data and unethical solicitation of personal details.\n"
  },
  {
    "path": "projects/polin.md",
    "content": "---\nslug: \"polin\"\ndate: \"2021-11-09\"\ntitle: \"Polin\"\nlogline: \"Polin, a Sci-Fi gaming project using #NFT’s 10,000 Polinians on Solana, focused on diversity & inclusion. SolanaGaming\"\ncta: \"https://polinproject.com\"\nlogo: /img/polin.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://polinproject.com\ntwitter: https://twitter.com/PolinProject\ntelegram: https://t.me/PolinProject\n---\n\nPolin, a Sci-Fi gaming project using #NFT’s 10,000 Polinians on Solana, focused on diversity & inclusion. SolanaGaming\n"
  },
  {
    "path": "projects/popsicle.md",
    "content": "---\nslug: \"popsicle\"\ndate: \"2021-04-12\"\ntitle: \"Popsicle Finance\"\nlogline: \"Popsicle finance is a cross-chain yield enhancement platform focusing on Automated Market-Making (AMM) Liquidity Providers (LP).\"\ncta: \"https://popsicle.finance/\"\nlogo: /img/popsicle.svg\ncategory: amm\nstatus: building\nwebpage: https://popsicle.finance/\ntwitter: https://twitter.com/popsiclefinance\ndiscord: https://discord.gg/JkEwq5amqw\n---\n\nPopsicle finance is a next-gen cross-chain yield enhancement platform focusing on Automated Market-Making (AMM) Liquidity Providers (LP).\n"
  },
  {
    "path": "projects/port finance.md",
    "content": "---\nslug: \"portfinance\"\ntitle: \"Port Finance\"\ndate: \"2021-05-28\"\nlogline: \"Port Finance is a non-custodial lending protocol on Solana.\"\ncta: https://twitter.com/port_finance\ncategory: defi\nlogo: /img/portfinance.svg\nstatus: Live\nwebsite: https://port.finance/\ntwitter: https://twitter.com/port_finance\ntelegram: https://t.me/port_finance\ndiscord: https://discord.com/invite/nAMXAYhTb2\n---\n\nPort Finance is a non-custodial money market protocol providing a suite of fixed income products, including variable rate lending, fixed rate lending, and interest rate swaps all on the Solana network.\n"
  },
  {
    "path": "projects/portals.md",
    "content": "---\nslug: \"portals\"\ndate: \"2021-11-01\"\ntitle: \"Portals\"\nlogline: \"The place for you and your community in the #solana metaverse.Display NFTs, build, explore & chat!\"\ncta: \"https://theportal.to\"\nlogo: /img/theportal.jpg\ncategory: game\nstatus: building\nwebsite: https://theportal.to\ntwitter: https://twitter.com/_portals_\ndiscord: https://discord.gg/9uMBaCPW3f\n---\n\nPortals is a web-based metaverse platform that we’ve been working on this year that we’re really excited to finally reveal and bring to the Solana ecosystem.\nWe started building Portals in early 2021 because we didn’t see a compelling and accessible metaverse emerging on the web.\n\nWe want to be able to explore a dense, virtual Neo-Tokyo/New York and explore a single city block with hundreds of fun things to do and discover. \nWe are building a framework so that everyone is incentivised to invite cool people and create cool spaces for a thriving downtown.\n\nReal estate and token incentives will be distributed in a way that ensures a dense, interesting city center for new users to explore. Instead of big land sales,\nwe’re starting with user experience first to build a grassroots community of builders and players.\n"
  },
  {
    "path": "projects/professor.md",
    "content": "---\nslug: \"professor\"\ndate: \"2021-09-27\"\ntitle: \"Professor NFTs\"\nlogline: \"One of the very first NFT with real time utility based on Solana ecosystem\"\ncta: \"https://professor.finance/\"\nlogo: /img/professor-finance.png\ncategory: metaplex, nft\nstatus: building\nwebsite: https://professor.finance/\ntwitter: https://twitter.com/professornfts\ndiscord: https://discord.com/invite/AE8f99df\n---\n\nProfessor .finance is a decentralized community based on Solana blockchain. We use SPL token standards for our non-fungible tokens. Each character NFT on our platform is individually designed with attention to detailing. Our NFT characters range from common characters to super rare character such as The professor, which will 10-20% expensive as compared to regular NFTs. Users are encouraged to try their luck. Initially we will offer 8760 NFTs. Each NFT minted by users is a randomly generated character totally by chance. Users can mint up to max 5 characters at a time. Users can participate in our Minoberries by holding their character NFTs for at least a period of 15 days. Users can also implement their idea regarding the execution, location and date of minoberries by conducting a poll among the community using their governance tokens.\n"
  },
  {
    "path": "projects/project seed.md",
    "content": "---\nslug: \"projectseed\"\ntitle: \"Project SEED\"\ndate: 2021-06-22\nlogline: \"Project SEED is an on-chain A-RPG game app designed to bring players a DAO virtual world that features an action based battle system with cooperative multiplayer mode and uses NFT & DeFi monetization.\"\ncta: \"https://ProjectSeed.io\"\ncategory: app\nlogo: /img/projectseed.svg\nstatus: Building\nwebsite: https://projectseed.io/\ntwitter: https://twitter.com/ProjectSeedGame\ntelegram: https://t.me/projectseed\ndiscord: https://discord.gg/wDSyjZ7HvH\n---\n\nProject SEED is one of the first gaming platforms built on the Solana blockchain. The ecosystem includes a Game Studio, DEX, NFT marketplace, and a wallet. We bring one of the world's first blockchain games to players in mobile phones and devices.\n\nThe lauch will take place in an integrated Game App, where players can interact with their beasts, or \"Zeds,\" and explore the world alone or in a team. Players can battle against each other in tournaments, join co-op adventures to gain experiences, tame Zeds, join guilds, build dungeons, and much more. A DEX, an NFT marketplace, and a crypto wallet will also be integrated inside the game.\n\nThe application requires affordable gas fees, fast TPS, and also robust blockchain networks, which we could fulfil using the Solana blockchain. Even though players will need to spend gas for interacting with the blockchain, Project SEED aims to be a Play-to-Earn game, instead of Pay-to-Win. In the ecosystem, players earn SHILL tokens for completing certain tasks or quests created by GMs and other players, by leveling up and gathering enough materials to unlock a new variety of weapons or equipment, or by evolving their Zeds and selling them as an NFT.\n\nSHILL token will be the utility token used in the ecosystem, whether it be used for trading, staking, or voting (DAO). It will be presented as a multi-chain currency, where we will perform mint-and-burn to equalize the circulation and total supply of our token.\n\nFinally, Project SEED will bring the blockchain gaming ecosystem to the masses, suitable for both blockchain-savvy gamers as well as non-blockchain gamers. This game will be the first blockchain game Project SEED launch, and more games are in the pipeline.\n"
  },
  {
    "path": "projects/projectnoise.md",
    "content": "---\nslug: \"projectnoise\"\ndate: \"2021-11-07\"\ntitle: \"Project Noise\"\nlogline: \"2,222 Gen-art experiments on Solana\"\ncta: \"https://www.projectnoise.io\"\nlogo: /img/projectnoise.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.projectnoise.io\ntwitter: https://twitter.com/Prjctnoise\ndiscord: https://discord.gg/2AXCqUWX5J\n---\n\n2,222 Gen-art experiments on Solana\n"
  },
  {
    "path": "projects/psyoptions.md",
    "content": "---\nslug: \"psyoptions\"\ndate: \"2021-03-22\"\ntitle: \"PsyOptions\"\nlogline: \"PsyOptions is a vanilla options protocol built to fill a gap in Solana’s DeFi ecosystem.\"\ncta: https://psyoptions.io/\nlogo: /img/psyoptions.svg\ncategory: DeFi\nwebsite: https://psyoptions.io/\ntwitter: https://twitter.com/PsyOptions/photo\ntelegram: https://t.me/psyoptions\ndiscord: https://discord.com/invite/MgDdJKgZJc\nstatus: live\n---\n\nPsyOptions is an American-style options protocol built on the Solana blockchain. Conceived when a large traditional brokerage wouldn’t allow retail traders API access to automate an options trading strategy, PsyOptions is a vanilla options protocol built to fill a gap in Solana’s DeFi ecosystem. With the speed of Solana and Serum’s flexibility to trade arbitrary SPL markets, all we needed was an options protocol to automate our strategy, yet none existed. Starting with American-style options (European style coming soon after), users can write and sell covered calls or cash secured puts to generate yield or hedge. These option “contracts” are represented as SPL tokens, which allows them to be traded on Serum’s order book.\n"
  },
  {
    "path": "projects/pyth.md",
    "content": "---\nslug: \"pyth\"\ndate: \"2021-07-02\"\ntitle: \"Pyth\"\nlogline: \"Pyth Network is a specialized oracle solution for latency-sensitive financial data typically guarded by centralized institutions. Pyth Network is focused on bringing this unique data on-chain and aggregating it securely. Pyth connects high-fidelity market data from the world’s largest professional traders and exchanges to any smart contract. Anywhere.\"\ncta: \"https://pyth.network\"\nlogo: /img/pyth.svg\ncategory: oracle\nstatus: building\nwebsite: https://pyth.network/\ntwitter: https://twitter.com/PythNetwork\ntelegram: https://t.me/Pyth_Network\ndiscord: https://discord.com/invite/Ff2XDydUhu\n---\n\nPyth Network is an oracle network built by some of the biggest names in traditional finance and DeFi, providing the infrastructure for DeFi to support reliable, institutional-grade market data oracles. Pyth is focused on continuous data originating off-chain and disseminating it at sub-second speeds, while maintaining advanced security.\n\nInstitutional-grade market data oracles are lacking in DeFi. Pyth is focused on finding a new and cheaper way to bring high-fidelity financial services data on-chain and aggregate it securely.\n"
  },
  {
    "path": "projects/quackz.md",
    "content": "---\r\nslug: quackz\"\r\ndate: \"2021-10-25\"\r\ntitle: \"Quackz\"\r\nlogline: \"10,000 guardians of the uncharted magical underwater world in Solana.\"\r\ncta: \"http://www.quackznft.com\"\r\nlogo: /img/quackz.png\r\ncategory: nft\r\nstatus: building\r\nwebsite: http://www.quackznft.com\r\ntwitter: https://twitter.com/quackznft\r\ndiscord: https://discord.gg/N87nwtwyHx\r\n---\r\n\r\n10,000 guardians of the uncharted magical underwater world in Solana."
  },
  {
    "path": "projects/quasarprotocol.md",
    "content": "---\nslug: \"quasarprotocol\"\ndate: \"2021-11-03\"\ntitle: \"Quasar Protocol\"\nlogline: \"QuasarProtocol creates leveraged tokens in a fully decentralized manner, powered by Solana.\"\ncta: \"https://quasarprotocol.io\"\nlogo: /img/quasarprotocol.png\ncategory: amm, defi\nstatus: building\nwebsite: https://quasarprotocol.io\ntwitter: https://twitter.com/quasar_protocol\n---\n\nQuasarProtocol creates leveraged tokens in a fully decentralized manner, powered by Solana.\n"
  },
  {
    "path": "projects/rabbit_punks.md",
    "content": "---\nslug: \"rabbit_punks\"\ndate: \"2021-11-18\"\ntitle: \"RABBIT PUNKS\"\nlogline: \"Unique, sweet and humanoid Rabbit Punks created by random algorithms. No Bunny Punk is the same. If you own a Rabbit Punks you can join the Rabbit Dao.\"\ncta: \"https://www.rabbitpunks.io/\"\nlogo: /img/rabbit_punks.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.rabbitpunks.io/\ntwitter: https://twitter.com/rabbit_punks\n---\n\nIt is a system in which only beneficiaries can participate and which determines what secondary market commissions will be used for. In the system determined by the votes of the owners; such as sweeping the base price with commissions, \nfurther marketing, sweepstakes or distribution to commission holders. RabbitDAO also has a say in the future of the collection.\n"
  },
  {
    "path": "projects/radiant-wallet.md",
    "content": "---\nslug: \"radiant-wallet\"\ndate: \"2021-11-08\"\ntitle: \"Radiant Wallet\"\nlogline: \"The simplest and sexiest mobile wallet & exchange in the solana ecosystem. Launching at IGNITE\"\ncta: \"https://devpost.com/software/radiant-wallet\"\nlogo: /img/radiant-wallet.jpg\ncategory: wallet, exchange\nstatus: building\nwebsite: https://devpost.com/software/radiant-wallet\ntwitter: https://twitter.com/RadiantWallet\n---\n\nInspiration\nWhere do you go to trade the Solana ecosystem on mobile?\n\nThis is the question we asked ourselves as we started spending more time in Solana and we weren't super impressed with the answers.\n\nWhat it does\nIt's a non-custodial mobile wallet that let's you trade Solana ecosystem tokens that are available through project serum (60 token pairs currently)\n\nHow we built it\nWe come from a design background so we spent as much time as we could coming up with something simple and unique.\n\nOn the technical side we used Expo/React-Native, solanaweb3.js and project-serum/serum libraries.\n\nChallenges we ran into\nThe project-serum/serum and solanaweb3.js libraries take some jiggering to work with react native because both use desktop related node libraries under the hood.\n\nBuilding using the project-serum and solanaweb3.js boilerplate was much more difficult than expected, mostly due to lack of documentation. What's been done is great but it still requires a great deal of context and hearsay on Discord. In 6 months or so I imagine it will be much better.\n\nAccomplishments that we're proud of\nKick-ass branding in such a short amount of time. And just getting over the humps of working with project serum and solanaweb3 and react-native all together.\n\nWhat we learned\nHow to work in the Solana and Serum ecosystems. In retrospect we would have spent more time building relationships and getting help in Discord. It's also just inherently a little tricky dealing with a lot of encrypting and decrypting of things because it's inherently more opaque.\n\nWhat's next for Radiant Wallet\nKeep building and ironing out bugs until its a delight to use!\n"
  },
  {
    "path": "projects/ramp.md",
    "content": "---\nslug: \"ramp\"\ndate: \"2020-04-03\"\ntitle: \"Ramp\"\nlogline: \"RAMP is a decentralized protocol that boosts DeFi adoption. RAMP DeFI uses Solana to deliver staked liquidity and cross-chain yield farming for SOL token holders.\"\ncta: \"https://medium.com/rampdefi/ramp-defi-empowering-sol-users-with-staked-liquidity-and-cross-chain-defi-farming-8861af6a6e62\"\nlogo: /img/ramp.svg\ncategory: DeFi\nwebsite: https://rampdefi.com/\ntwitter: https://twitter.com/RampDefi\ntelegram: https://t.me/rampdefiofficial\ndiscord: https://discord.com/invite/WY5TU7b\nstatus: live\n---\n\nRAMP DeFI is committed to releasing liquidity from mortgaged digital assets. Our solution enables SOL users to obtain additional liquidity without giving up their mortgage rewards or capital appreciation potential.\n\nThrough the RAMP smart contract, users can mortgage SOL to obtain the local stable currency solUSD on the Solana network, and then exchange the solUSD into the stable currency rUSD with the equivalent value of 1:1 on the Ethereum network.\n\nUsers who hold rUSD can borrow or exchange stable currencies equivalent to legal currencies, such as USDT or USDC. These stable currencies can be used to invest in new DeFi projects, transactions, or exchange into legal currencies.\n"
  },
  {
    "path": "projects/ratbastard.md",
    "content": "---\nslug: \"ratbastard\"\ndate: \"2021-11-15\"\ntitle: \"Rat Bastards\"\nlogline: \"Released from the Bastard Labs, into the Solana sewage systems : Genetically mutated 6,969 vicious Bastard Rats\"\ncta: \"https://www.ratbastard.io/\"\nlogo: /img/ratbastard.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.ratbastard.io/\ntwitter: https://twitter.com/RatSolBastards\ndiscord: https://discord.gg/ratbastard\n---\n\nRat Bastard Labs is an NFT club featuring only 6,969 unique, laboratory-bred, vicious, cheese hungry Rats..By owning a Rat you become a part of the Rat Bastard club, \nthat despite the name, houses one of theclosest and warmest communities out there.\n\n"
  },
  {
    "path": "projects/ratio.md",
    "content": "---\nslug: \"ratio\"\ndate: \"2021-09-08\"\ntitle: \"Ratio Finance\"\nlogline: \"Ratio Finance is a collateralized debt position (CDP) platform that allows you to leverage your Solana LPs while still gaining yield from farming.\"\ncta: \"https://ratio.finance/\"\nlogo: /img/ratio.svg\ncategory: defi, tools\nstatus: building\nwebpage: https://ratio.finance/\ntwitter: https://twitter.com/ratiofinance\ntelegram: https://t.me/ratiofinance\ndiscord: https://discord.gg/5v8AYva8nU\n---\n\nRatio Finance is a collateralized debt position (CDP) platform that allows you to leverage your Solana LPs while still gaining yield from farming.\n"
  },
  {
    "path": "projects/raydium.md",
    "content": "---\nslug: \"raydium\"\ndate: \"2020-04-03\"\ntitle: \"Raydium\"\nlogline: \"Raydium is the first AMM built on Solana to leverage a fully decentralised central limit order book.\"\ncta: \"https://raydium.io\"\nlogo: /img/raydium.svg\ncategory: AMM\nwebsite: https://raydium.io/\ntwitter: https://twitter.com/raydiumprotocol\ntelegram: https://t.me/raydiumprotocol\ndiscord: https://discord.com/invite/6EvFwvCfpx\nstatus: live\n---\n\nRaydium is an Automated Market Maker (AMM) and liquidity provider built on the Solana blockchain for the Serum Decentralized Exchange (DEX). Raydium has first-mover advantage as an AMM within Serum and it will be an integral part of bringing new and existing projects and protocols into the ecosystem. The protocol will be a bridge for projects looking to expand to Solana and Serum, and in the process Raydium and the RAY token will become a foundation for enabling further development with partners, its own platform, and the ecosystem as a whole.\n\nUnlike any other AMMs, Raydium provides on-chain liquidity to a central limit order book, meaning that Raydium LPs get access to the entire order flow and liquidity of Serum.\n\nIn the long term, Raydium aims to emerge as a leading protocol among AMMs and liquidity providers on Serum, while leveraging the power of Solana to drive the evolution of Decentralized Finance (DeFi).\n"
  },
  {
    "path": "projects/realy.md",
    "content": "---\nslug: Realy\ndate: \"2020-10-22\"\ntitle: realy\nlogline: \"The 1st Solana 3A Graphics Metaverse - “Live to Earn” Gamefi\"\ncta: \"https://realy.pro/\"\nlogo: /img/Realy.png\ncategory: app\nstatus: live\ntwitter: \"https://twitter.com/RealyOfficial\"\n---\n\nRealy: The 1st Solana 3A Graphics Metaverse - “Live to Earn” Gamefi\n\n<b>Website</b>: https://realy.pro/ </br>\n<b>Twitter</b>: https://twitter.com/RealyOfficial </br>\n<b>trlegram</b>: https://t.me/realyofficial </br>\n"
  },
  {
    "path": "projects/redpandasquad.md",
    "content": "---\nslug: \"redpandasquad\"\ndate: \"2021-10-09\"\ntitle: \"Red Panda Squad\"\nlogline: \"Hand-drawn from scratch by our truly skilled artist JK, there will only exist a maximum of 10.000 algorithmically generated, unique, cute red panda NFTs in this space. Ever.\"\ncta: \"https://redpandasquad.com/\"\nlogo: /img/redpandasquad.png\ncategory: nft\nstatus: live\nwebsite: https://redpandasquad.com/\ntwitter: https://twitter.com/Red_Panda_Squad\ndiscord: https://discord.com/invite/redpandasquad\n---\n\nHand-drawn from scratch by our truly skilled artist JK, there will only exist a\nmaximum of 10.000 algorithmically generated, unique, cute red panda\nNFTs in this space. Ever.\n"
  },
  {
    "path": "projects/reedifyfinance.md",
    "content": "---\nslug: \"reedifyfinance\"\ndate: \"2021-09-05\"\ntitle: \"Reedify Finance\"\nlogline: \"Reedify Finance is a solution for staking and farming, based on decentralized applications as the next generation of community based blockchain explorer based on Solana\"\ncta: \"https://reedify.finance/\"\nlogo: /img/reedify.svg\ncategory: APP,DEFI,METAPLEX\nstatus: building\nwebsite: https://reedify.finance/\ntwitter: https://twitter.com/ReedifyFinance/\ntelegram: https://t.me/ReedifyFinance/\ndiscord: https://discord.gg/f3VXDfwKNb/\n---\n\nReedify Finance is a solution for staking and farming, based on decentralized applications as the next generation of community based blockchain explorer based on Solana ?\n"
  },
  {
    "path": "projects/ren.md",
    "content": "---\nslug: \"ren\"\ntitle: \"Ren\"\ndate: 2021-07-25\nlogline: \"Cross-chain interoperability and liquidity.\"\ncategory: infra\ncta: https://twitter.com/renprotocol\nlogo: /img/ren.svg\nstatus: live\nwebsite: https://renproject.io/\ntwitter: https://twitter.com/renprotocol\ntelegram: https://t.me/renproject\n---\n\nA secure network of virtual computers that facilitatess interoperability for decentralized applications, enabling cross-chain lending, exchanges, collateralization, and more.\n"
  },
  {
    "path": "projects/resdoges.md",
    "content": "---\nslug: \"resdoges\"\ndate: \"2021-11-18\"\ntitle: \"Reservoir Doges\"\nlogline: \"Reservoir Doges NFTs 4444 uniquely generated Solana NFTs. Gamification, Doge down, royalties to holders, lotteries, and merch\"\ncta: \"https://twitter.com/ResDoges\"\nlogo: /img/ResDoges.jpg\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/ResDoges\ntelegram: https://t.me/yourproject\ndiscord: https://discord.com/invite/reservoirdogesnft\n---\n\nReservoir Doges NFTs 4444 uniquely generated Solana NFTs. Gamification, Doge down, royalties to holders, lotteries, and merch\n"
  },
  {
    "path": "projects/riskswap.md",
    "content": "---\nslug: riskswap\ndate: \"2021-07-27\"\ntitle: Riskswap\nlogline: RiskSwap is the first decentralized trading platform built on Solana allowing for both futures and options trading.\ncta: \"https://riskswap.com\"\nlogo: /img/riskswap.svg\ncategory: defi\nstatus: building\ntwitter: \"https://twitter.com/risk_swap\"\n---\n\nRiskSwap offers a suite of trading tools allowing for efficient use of capital and high returns. Traders will be able to create and trade futures and options, as well as easily create complex trading strategies using proprietary portfolio builders and Singleblock solutions for simultaneous transaction execution. All the contracts represented by SPL tokens are tradable on Serum's central limit order book.\n\nwebsite: https://riskswap.com</br>\ntwitter: https://twitter.com/risk_swap</br>\n"
  },
  {
    "path": "projects/rocketsola.md",
    "content": "---\r\nslug: \"rocketsola\"\r\ndate: \"2021-11-16\"\r\ntitle: \"A SMM Tool RocketSola\"\r\nlogline: \"Rocket Sola allows you to promote your social media accounts through NFTs on the Solana blockchain.\"\r\ncta: \"https://rocketsola.com/\"\r\nlogo: /img/rocketsola.png\r\ncategory: app,tools,nft\r\nstatus: live\r\nwebsite: https://rocketsola.com/\r\ntwitter: https://twitter.com/rocketsola\r\n\r\n---\r\n\r\nSocial Media Marketing integrated with NFTs powered by Solana Blockchain. Rocket Sola allows you to promote your social media accounts through Minting NFTs on the Solana blockchain."
  },
  {
    "path": "projects/roguesharks.md",
    "content": "---\nslug: \"roguesharks\"\ndate: \"2021-10-05\"\ntitle: \"Rogue Sharks\"\nlogline: \"3D High-quality collection of 5,000 Rogue Shark NFTs swimming on the Solana blockchain \"\ncta: \"https://www.roguesharks.org/\"\nlogo: /img/roguesharks.png\ncategory: nft\nstatus: live\nwebsite: https://www.roguesharks.org/\ntwitter: https://twitter.com/RogueSharkTank\ndiscord: https://discord.com/invite/roguesharks\n---\n\n3D High-quality collection of 5,000 Rogue Shark NFTs swimming on the Solana blockchain\n"
  },
  {
    "path": "projects/rokfund.md",
    "content": "---\nslug: \"rokcapital\"\ndate: \"2020-04-03\"\ntitle: \"ROK Capital\"\nlogline: \"ROK Capital will provide guidance to Solana ecosystem projects to accelerate mass adoption in the Korean Market.\"\ncta: \"https://share.hsforms.com/1n1sF6nFhTMqKSiJY_yXK5Q5lohw\"\ncta2: \"https://www.coindesk.com/solana-launches-20m-fund-to-advance-ecosystem-in-korea\"\ncta2text: \"Fund Announcement\"\nlogo: /img/rok.svg\ncategory: fund\nctatext: \"Apply Now\"\nfeaturedPartnerImage: ../img/illustrations/rokeco.png\nstatus: live\n---\n\nROK Capital, founded by a group of blockchain experts with over 20 years of far-reaching experience in Korea, announced an ecosystem fund of up to $20M in partnership with the Solana Foundation focusing on incubation and support of Solana-based projects. Trusted by many of Korea's top conglomerates, ROK Capital aims to help accelerate entry and development of supported projects across Korea.\n\nThe ROK Capital Solana ecosystem fund will be providing the following value-add to the projects:\n\n- Market strategy and execution\n- Strategic introductions and BD support\n- Mainstream PR with over 5m+ exposure\n- 100k+ reach across 10+ distribution channels\n- IDO, NFT, and Token Sale localisation support and deep community penetration\n"
  },
  {
    "path": "projects/rope.md",
    "content": "---\nslug: \"rope\"\ndate: \"2021-04-12\"\ntitle: \"ROPE\"\nlogline: \"ROPE is a decentralized ecosystem that brings the well known 'market volatility index' to the crypto market.\"\ncta: \"https://ropesolana.com\"\nlogo: /img/rope.svg\ncategory: app\nwebsite: https://ropesolana.com\ntwitter: https://twitter.com/Rope_Official\ndiscord: https://discord.gg/rope\nstatus: live\n---\n\nROPE is the central token of the ROPE ecosystem. The ROPE token holds the following utility:\n\n1. Stake ROPE tokens to generate additional yield earned from trading fees.\n\n2. Stake ROPE for additional multipliers on yield.\n\n3. Participate and vote on community proposals and amendments.\n\nThe ROPE ecosystem is comprised of two tokens, ROPE and ROPEV, and is built on high-performing Proof of History (PoH) technology implemented by the Solana network.\n\nROPEV is a DeFi-based volatility index providing a volatility index for the DeFi ecosystem, allowing users to trade or hedge with a volatility index within the entire cryptocurrency market. The details on technical implementation will be published according to the roadmap. Users will be able to trade ROPEV using the ROPEx trading platform.\n"
  },
  {
    "path": "projects/router protocol.md",
    "content": "---\nslug: \"routerprotocol\"\ntitle: \"Router Protocol\"\ndate: 2021-07-25\nlogline: \"Router Protocol is the best crosschain liquidity aggregator and the future of Smart Order Routing.\"\nwebsite: \"https://www.routerprotocol.com/\"\ncategory: defi\ncta: https://twitter.com/routerprotocol\nlogo: /img/router protocol.svg\nstatus: live\ntwitter: https://twitter.com/routerprotocol\ntelegram: https://t.me/routerprotocol\n---\n\nRouter Protocol developed bridging infrastructure to allow for contract level data flow across various blockchains, thus enabling asset level data transfer.\n"
  },
  {
    "path": "projects/rowdyrex.md",
    "content": "---\nslug: \"rowdyrex\"\ndate: \"2021-11-14\"\ntitle: \"RowdyRex\"\nlogline: \"RowdyRex is a deflationary collection of 5000 NFTs on Solana.\"\ncta: \"https://www.rowdyrex.com/\"\nlogo: /img/rowdyrex.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.rowdyrex.com/\ntwitter: https://twitter.com/RowdyRex\ndiscord: https://discord.gg/rowdyrex\n---\n\nRowdyRex is a deflationary collection of 5000 NFTs on Solana.\n"
  },
  {
    "path": "projects/rox.md",
    "content": "---\nslug: \"rox\"\ndate: \"2021-10-01\"\ntitle: \"ROX\"\nlogline: \"Generative dArt. A first-of-its-kind generative, data-driven NFT project on the Solana blockchain.\"\ncta: \"https://rox.cards/\"\nlogo: /img/rox-logo.svg\ncategory: nft\nstatus: live\nwebsite: https://rox.cards/\ntwitter: https://twitter.com/anchor_protocol\ndiscord: https://discord.gg/DJFG4jvehF\n---\n\nGenerative dArt. A first-of-its-kind generative, data-driven NFT project on the Solana blockchain.\n"
  },
  {
    "path": "projects/rpc pool.md",
    "content": "---\nslug: \"rpcpool\"\ntitle: \"rpc pool\"\ndate: 2021-07-25\nlogline: \"Fast and reliable Solana RPC\"\nwebsite: \"https://www.rpcpool.com/\"\ncategory: infra, rpc\ncta: \"https://www.rpcpool.com/\"\nlogo: /img/rpcpool.svg\nstatus: live\ntwitter: https://twitter.com/rpcpool\ntelegram: https://t.me/joinchat/K0ONdq7fE4s0Mjdl\n---\n\nEach region has multiple servers for redundancy with customized health checking that automatically routes traffic to servers which can provide correct answers.\nWith operators in Asia, EU and US we can provide 24/7 support, ensuring high uptime.\n"
  },
  {
    "path": "projects/runnodes.md",
    "content": "---\nslug: \"runnode\"\ndate: \"2021-05-11\"\ntitle: \"RunNode\"\nlogline: \"RunNode is a scaling solution built for Solana developers powered by $RUN.\"\ncta: \"https://runnode.com/\"\ncategory: app\nlogo: /img/runnode.png\nstatus: building\nwebsite: https://runnode.com/\ntwitter: https://twitter.com/RunNodes\ntelegram: https://t.me/runnode\ndiscord: https://discord.gg/V2f74X8Zrt\n---\n\nRunNode is a Solana RPC Node Provider that allows developers to connect and get RPC access in just a few minutes. The RunNode node RPC architecture allows for high throughput and unlimited scalability with geoDNS capabilities. \n\nThere are FREE developer plans available to get your project started and we can help you scale as necessary as your project grows!\n\nGet your project started in just a few minutes. \n"
  },
  {
    "path": "projects/rushdownrevolt.md",
    "content": "---\nslug: \"rushdownrevolt\"\ndate: \"2021-11-01\"\ntitle: \"Rushdown Revolt\"\nlogline: \"Rushdown Platform Fighter with electric, combo-centric, and expressive gameplay!\"\ncta: \"https://www.rushdownrevolt.com\"\nlogo: /img/rushdownrevolt.jpg\ncategory: game\nstatus: building\nwebsite: https://www.rushdownrevolt.com\ntwitter: https://twitter.com/RushdownRevolt\ndiscord: http://discord.gg/rushdownrevolt\n---\n\nTHE MOST ELECTRIC, COMBO-CENTRIC, AND EXPRESSIVE FIGHTING GAME.\n"
  },
  {
    "path": "projects/rustbots.md",
    "content": "---\nslug: \"rustbots\"\ndate: \"2021-10-17\"\ntitle: \"Rust Bots\"\nlogline: \"An advanced NFT collection like you've never seen. Joining all aspects of robot society! The bots of Solana have arrived! Find your RustBot and join the swarm!\"\ncta: \"https://twitter.com/RustBots\"\nlogo: /img/rustbots.png\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/RustBots\ndiscord: https://discord.com/invite/ZnXWmQjMgu\n---\n\nAn advanced NFT collection like you've never seen. Joining all aspects of robot society! The bots of Solana have arrived! Find your RustBot and join the swarm!\n"
  },
  {
    "path": "projects/saber.md",
    "content": "---\nslug: \"saber\"\ndate: \"2020-04-03\"\ntitle: \"Saber\"\nlogline: \"Saber is the leading cross-chain stablecoin exchange on Solana.\"\ncta: \"https://saber.so\"\nlogo: /img/saber.svg\ncategory: defi, amm, dex, app\ntwitter: https://twitter.com/Saber_HQ/\nstatus: live\n---\n\nSaber is the leading cross-chain stablecoin exchange on Solana, providing the liquidity foundation for stablecoins, or a cryptocurrency whose value is pegged to another asset. As Solana’s core cross-chain liquidity network, Saber facilitates the transfer of assets between Solana and other blockchains. Market makers deposit crypto into a Saber liquidity pool to earn passive yield from transaction fees, token-based incentives, and eventually automated DeFi strategies. To learn more visit www.saber.so or follow us on Twitter @Saber_HQ.\n"
  },
  {
    "path": "projects/safecity.md",
    "content": "---\nslug: \"Safecoin\"\ndate: \"2021-10-19\"\ntitle: \"Safecoin\"\nlogline: \"The bridge between the real world and the virtual world\"\ncta: \"https://safe.city/\"\nlogo: /img/safecity.png\ncategory: defi\nstatus: live\nwebsite: https://safe.city/\ntwitter: https://twitter.com/safecity\n---\n\nSafecoin bridges the gap between the real world and the virtual world\n"
  },
  {
    "path": "projects/saibagang.md",
    "content": "---\nslug: \"saibagang\"\ndate: \"2021-11-14\"\ntitle: \"Saiba Gang\"\nlogline: \"Saiba Gang - 4,444 Cybernetically Enhanced Collectible NFTs on Solana\"\ncta: \"https://www.saibagang.com/\"\nlogo: /img/saibagang.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.saibagang.com/\ntwitter: https://twitter.com/SaibaGang\ndiscord: https://discord.gg/aRPTxj5FMA\n---\n\nIt is the year 2167 in Wintermoon City, and technology has advanced to the point where human cybernetic enhancement is commonplace in the underground community.\n\nThe nefarious technocrats that control Wintermoon City, the Kaze Collective, make life on the streets a brutal existence. Teens are force to fight and steal to survive.\n\nAlone they struggle to get by, but together... they just might make it. That is why these cybernetically enhanced street punks came together to form the Saiba Gang.\n\nThese eccentric rebels are bound to have some adventures. They might even be the only force that can topple the system and overthrow the Kaze Collective.\n"
  },
  {
    "path": "projects/salty.md",
    "content": "---\nslug: \"salty\"\ndate: \"2020-04-03\"\ntitle: \"Salty.ai\"\nlogline: \"Salty is a validator explorer that aggregates data across Mainnet Beta, Tour de SOL, and Wormhole.\"\ncta: \"https://salty.ai/\"\nlogo: /img/salty.svg\ncategory: explorer\nstatus: live\n---\n\nSalty Stats is a comprehensive validator explorer that aggregates multiple data points across Mainnet Beta, Tour de SOL, and Wormhole.\n"
  },
  {
    "path": "projects/saltybutlers.md",
    "content": "---\nslug: \"saltybuttlers\"\ndate: \"2021-11-14\"\ntitle: \"Salty Butlers\"\nlogline: \"10,000 rare and unique butlers on Solana.\"\ncta: \"https://www.saltybutlers.com/\"\nlogo: /img/saltybutlers.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.saltybutlers.com/\ntwitter: https://twitter.com/Salty_Butlers\ndiscord: https://discord.com/invite/6jXnqUFvCN\n---\n\nGood day sir or madam and welcome to the Salty Butlers. Do make yourself at home and allow me to get you a refreshment. As you will see there are 10,000 of us butlers here to wait on you hand and foot. Some of us are more, shall we say 'run of the mill', while others of us are much more unique in our skills and appearance.\n"
  },
  {
    "path": "projects/samo.md",
    "content": "---\nslug: \"samo\"\ndate: \"2021-05-11\"\ntitle: \"Samoyedcoin\"\nlogline: \"Samoyedcoin ($SAMO) is Solana’s ambassador.\"\ncta: \"https://samoyedcoin.com/\"\ncategory: app\nlogo: /img/samoyedcoin.svg\nwebsite: http://samoyedcoin.com/\ntwitter: https://twitter.com/samoyedcoin\ntelegram: https://t.me/samoyedcoin\ndiscord: http://discord.gg/caEepqZVcb\nstatus: live\n---\n\nEven though it was originally released as a memecoin, SAMO is becoming a real Solana ambassador, introducing Solana to new people, building new and exciting solutions for the ecosystem.\n\nNot only is it the most adorable dog on any blockchain, it also bears the name of one of Solana’s ecosystem most prominent figures: Sam Bankman-Fried, CEO of FTX, making it the perfect Solana doge!\n\nIt’s community-owned and fun!\n"
  },
  {
    "path": "projects/satellite.md",
    "content": "---\nslug: \"satellite\"\ndate: \"2021-05-11\"\ntitle: \"Satellite.im\"\nlogline: \"Satellite.im is a multi-platform messaging app built on Solana and IPFS.\"\ncta: \"https://site.satellite.im/\"\ncategory: app\nlogo: /img/satellite.svg\nwebsite: https://satellite.im/\ntwitter: https://twitter.com/Satellite_im\ndiscord: discord.gg/MeF4d6KSvN\nstatus: live\n---\n\nSatellite.im is a multi-platform messaging app built on Solana and IPFS. Satellite is built using server-less technology with peer-to-peer workflows. Satellite is also built to be offline-first, providing peace of mind with end-to-end encryption without sacrificing quality. Stream in 4K, chat in 500kbs+, and share 10GB files.\n"
  },
  {
    "path": "projects/sator.md",
    "content": "---\nslug: \"sator\"\ndate: \"2021-10-30\"\ntitle: \"Sator\"\nlogline: Blockchain-enabled TV engagement Earn crypto rewards for watching TV Preparing for takeoff\"\ncta: \"https://www.sator.io\"\nlogo: /img/sator.jpg\ncategory: app\nstatus: live\nwebsite: https://www.sator.io\ntwitter: https://twitter.com/SatorSAO\ntelegram: https://t.me/SatorSAO\ndiscord: https://discord.gg/mqcpTKngx7\n---\n\nSAO is the social utility token that fuels the Sator network. SAO gets distributed to viewers and content creators depending on their engagement with the system. At a high level, \ntelevision creators and distributors need SAO to have their product (e.g. network series) activated on the Sator platform and are rewarded by gaining engagement and growth of their viewership.\nAt the same time, viewers that hold SAO are rewarded for interacting with the series content. In essence, this democratizes the typical television paradigm in which viewers generate the value of a show.\n"
  },
  {
    "path": "projects/satori.md",
    "content": "---\nslug: \"satori\"\ndate: \"2020-08-19\"\ntitle: \"Satori Ventures\"\nlogline: \"Satori Ventures supports the long-term growth of Solana and Serum by providing incubation to early-stage projects in the ecosystem.\"\ncta: \"https://www.satorivc.com/\"\nlogo: /img/satori.svg\ncategory: fund\nstatus: live\n---\n\nSatori VC, based in Hong Kong, is a multi-strategy VC and research firm established by a group of crypto-veteran with a mission to advance the ecosystem by supporting promising projects in the space. Leverage our connections, advisory and support to build the next cornerstone of the ecosystem.\n"
  },
  {
    "path": "projects/sauerbot.md",
    "content": "---\nslug: \"sauerbot\"\ndate: \"2021-09-17\"\ntitle: \"SauerBot\"\nlogline: \"A simple to use Solana/Serum price tracker bot.\"\ncta: \"https://t.me/sauerbot_bot\"\nlogo: /img/sauerbot.svg\ncategory: tools\nstatus: live\n---\n\nSauerbot is a telegram bot that helps to track different assets on the Serum ecosystem and more. For example, you can check out the current staking statistics of Solana, set up notifications for price changes of SPL tokens and SOL. Now with the integrated\nwallet tracker, you can track any wallet address for new transactions.\n\n<b>Features</b>\n\n1. Show Solana staking stats\n2. Show SPL token prices on Serum\n3. Subscribe to SPL token price changes\n4. Wallet tracker\n\nAnd many more features are on the way!\n\n<b>Telegram Bot</b>: https://t.me/sauerbot_bot</br>\n\n<b>Telegram Announcements</b>: https://t.me/sauer_announcements</br>\n\n<b>Telegram Support & Feedback</b>: https://t.me/joinchat/Vd5RcbqCLHg5Yzhi</br>\n"
  },
  {
    "path": "projects/scallop.md",
    "content": "---\nslug: \"scallop\"\ndate: \"2021-06-19\"\ntitle: \"Scallop\"\nlogline: \"Scallop is a DeFi game on Solana. Stake to win tokens and NFTs✨!\"\ncta: \"https://www.scallop.io/\"\nlogo: /img/scallop.svg\ncategory: defi, app, game, NFT\nstatus: building\nwebsite: https://www.scallop.io/\ntwitter: https://twitter.com/Scallop_io\ntelegram: https://t.me/scallop_io\n---\n\nScallop is a Defi game on Solana. Users can stake their SOL to grow a \"scallop\" and have chances at winning tokens and NFTs. At the end of each week, one or more winners will be chosen at random to share out some of the stake. 7% of SOL reward will be kept in the staking pool, 93% will be SCA buyback. During the game, users can win Scallop Decorations by carrying out tasks✨!\n\n<b>Website</b>: https://www.scallop.io/ </br>\n<b>Twitter</b>: https://twitter.com/Scallop_io </br>\n<b>Discord</b>: https://discord.gg/F7umecFArJ </br>\n<b>Telegram</b>: https://t.me/scallop_io </br>\n<b>Instagram</b>: https://www.instagram.com/scallop.io </br>\n<b>Facebook</b>: https://www.facebook.com/Scallop.io </br>\n<b>Medium</b>: https://scallopio.medium.com </br>\n"
  },
  {
    "path": "projects/scoopshop.md",
    "content": "---\nslug: \"scoopshop\"\ndate: \"2021-11-13\"\ntitle: \"Autonomous Scoop Shop\"\nlogline: \"750 cool and delicious treats, staying frosty on the Solana blockchain.\"\ncta: \"https://magiceden.io/marketplace/autonomous_scoop_shop\"\nlogo: /img/scoopshop.jpg\ncategory: nft\nstatus: live\nwebsite: https://scoopshop.io/\ntwitter: https://twitter.com/ScoopShopNFT\ndiscord: https://discord.com/invite/kTmhStmCK4\n---\n\nThe Autonomous Scoop Shop is a collection of 750 cool and delicious NFT treats, staying frosty on the Solana blockchain.\nWe used the latest and greatest in realtime rendering technology to build a fully dynamic generative 3D art system, which allows us to do some pretty neat stuff.\n10% of all proceeds, including future royalties, will be donated to The International Child Art Foundation, to support creative programs for global youth.\n"
  },
  {
    "path": "projects/seasocorns.md",
    "content": "---\nslug: \"seasocorns\"\ndate: \"2021-11-14\"\ntitle: \"Seasocorns on SOL\"\nlogline: \"The most amazing and cutest Unicorns floating around the blockchain hemisphere\"\ncta: \"https://seasocorns.com/\"\nlogo: /img/seasocorns.png\ncategory: nft\nstatus: building\nwebsite: https://seasocorns.com\ntwitter: https://twitter.com/SeasocornNFT\ndiscord: https://discord.com/invite/zFWvGzbENt\n---\n\nThe most amazing and cutest Unicorns floating around the blockchain hemisphere\n"
  },
  {
    "path": "projects/seedednetwork.md",
    "content": "---\nslug: \"seedednetwork\"\ndate: \"2021-11-10\"\ntitle: \"Seeded Network\"\nlogline: \"Borrow, Lend and Stake your favourite Solana tokens.\"\ncta: \"https://seeded.network\"\nlogo: /img/seedednetwork.jpg\ncategory: defi, app\nstatus: building\nwebsite: https://seeded.network\ntwitter: https://twitter.com/seedednetwork\ndiscord: https://seeded.network/discord\n---\n\n**What is Seeded Network?**\n\nSeeded network is an upcoming incubator on Solana offering unique borrowing, lending, and staking solutions to users allowing them to safely participate in the seeded incubation projects.\nSeeded aims to provide equal and fair opportunity to investors who actively want to take part in the pre-sale rounds by making sure even the average user can afford to do so. \nProjects will go through rigorous background checks from the team and community before being part of the seeded incubation process to maximise the user safety.\nSeeded aims to incubate blue chip projects which have a similar goal of changing the defi landscape by offering something unique to the industry and having real world applications.\n"
  },
  {
    "path": "projects/seic.md",
    "content": "---\nslug: \"seic\"\ndate: \"2021-10-08\"\ntitle: \"Serious Eagle Investors Club\"\nlogline: \"SEIC is the exclusive investment club with Serious Eagle NFT owners in pursuit of environmental, social and governance (ESG)-themed.\"\ncta: \"https://seriouseagleinvestors.club\"\nlogo: /img/seic.svg\ncategory: nft, fund, investmentfund, governance\nstatus: live\nwebsite: https://seriouseagleinvestors.club\ntwitter: https://twitter.com/SeriousEagleIC\ndiscord: https://discord.gg/EdZRgVUYrT\n---\n\nSEIC is the exclusive investment club with Serious Eagle NFT owners in pursuit of environmental, social and governance (ESG)-themed.\n"
  },
  {
    "path": "projects/sendit.md",
    "content": "---\nslug: \"sendit\"\ndate: \"2020-06-28\"\ntitle: \"SendIt Finance\"\nlogline: \"SendIt is a mobile cross-device portfolio management solution for Solana.\"\ncta: \"https://sendit.finance/\"\nlogo: /img/sendit.svg\ncategory: defi, wallet, explorer, app\nstatus: live\nwebsite: https://sendit.finance/\ntwitter: https://twitter.com/sendit_finance\ntelegram: https://t.me/sendit_finance\ndiscord: https://discord.gg/UcMXyGa7Mm\n---\n\nSendIt is a mobile cross-device portfolio viewer and wallet for Solana that prioritizes user experiencr. With a few clicks, view in full your token holdings, farming/staking positions, portfolio history, and much more. Visit [sendit.finance](https://sendit.finance/) today to get started.\n"
  },
  {
    "path": "projects/senswap.md",
    "content": "---\nslug: \"senswap\"\ndate: \"2020-04-03\"\ntitle: \"SenSwap\"\nlogline: \"SenSwap is an open liquidity protocol and the first AMM built on Serum and Solana.\"\nlogo: /img/senswap.svg\ncta: \"https://senswap.com\"\nstatus: \"building\"\ncategory: AMM\nwebsite: https://senswap.com\ntwitter: https://twitter.com/SenSwap\ntelegram: https://t.me/SenSwap\ndiscord: https://discord.gg/X3YndHAA\n---\n\nSenSwap: An open liquidity protocol for token swap on Solana designed to remove technical barriers to bring AMM to more regular users. In SenSwap, the pool is no longer organized into two tokens. Now a trilogy pool, the protocol will automatically balance the deposit in the case of single-sided deposits (Simulated Single Exposure-SSE), and the native token, SEN, will be the heart of the protocol and connects all pools (Simulated Mesh Exchange-SME).\nIn addition, SenSwap shares the common cash-flow interface based on SEN that allows services to easily capture the profit and feed it to other services.\nMoreover, SenSwap encourages community contribution by serving a well-designed toolchain and provides groundwork for DeFi’s sustainable development.\n"
  },
  {
    "path": "projects/sentre.md",
    "content": "---\nslug: \"sentreprotocol\"\ndate: \"2021-11-08\"\ntitle: \"Sentre Protocol\"\nlogline: \"All-in-One Solana Open Platform with DApps Store and Universal Protocol for Liquidity.\"\ncta: \"https://sentre.io/#/\"\nlogo: /img/sentre.png\ncategory: defi, app\nstatus: building\nwebsite: https://sentre.io/#\ntwitter: https://twitter.com/SentreProtocol\ntelegram: https://t.me/Sentre\n---\n\nAll-in-One Solana Open Platform with DApps Store and Universal Protocol for Liquidity.\n"
  },
  {
    "path": "projects/seoulstars.md",
    "content": "---\nslug: \"seoulstars\"\ndate: \"2021-11-06\"\ntitle: \"Seoul Stars\"\nlogline: \"10,000 unique NFT's of Yuna, Korea's No.1 virtual K-pop artist designed by Korea’s leading K-pop agency.\"\ncta: \"https://seoulstars.io\"\nlogo: /img/seoulstars.png\ncategory: nft\nstatus: building\nwebsite: https://seoulstars.io\ntwitter: https://twitter.com/SeoulStarsNFT\ndiscord: https://discord.gg/seoulstars\n---\n\nDesigned by a leading Korean K-pop artist agency, HUMAP, with input from famous K-pop stars, \nYuna will release her own album and host virtual concerts across the world. Just like BTS and BlackPink, Yuna is going to take the world by storm.\n\nThe first phase: 10,000 limited edition and unique NFT illustrations of Yuna by Korea’s leading artist, SONGBLY84\nFans will own a one-of-a-kind scarce digital asset which will yield royalties from Yuna’s future albums, concerts, and sponsorships, \nand exclusive access to private performances. Lucky fans will be able to provide input into the lyrics of Yuna’s songs and participate in vocal training \nfrom a famous K-pop song producer.\n"
  },
  {
    "path": "projects/serumtaxtime.md",
    "content": "---\nslug: \"serumtaxtime\"\ndate: \"2021-03-22\"\ntitle: \"SerumTaxTime\"\nlogline: \"Serum Tax Time is a trade exporter for the Serum GUI that allows users to download their historical trades into a CSV for tax purposes.\"\ncta: https://github.com/SerumTaxTime\nlogo: /img/serumtaxtime.svg\ncategory: explorer\nstatus: live\n---\n\nSerum Tax Time is a trade exporter for the serum GUI. It allows users to download their historical trades into a CSV for tax purposes.\n"
  },
  {
    "path": "projects/sfgunited.md",
    "content": "---\nslug: \"sfgunited\"\ndate: \"2021-10-16\"\ntitle: \"SFG United\"\nlogline: \"1st community-owned sci-fi media house on Solana.\"\ncta: \"https://solanart.io/collections/sgfunitedgeneration1\"\nlogo: /img/sfgunited.jpg\ncategory: nft\nstatus: live\nwebsite: https://sgfunited.com/\ntwitter: https://twitter.com/SGFUnited\ndiscord: https://discord.com/invite/Rm7y3tZe4X\n---\n\nSGF Cyborgs are our first intellectual property (IP) drop. It is going to be algorithmically generated 10,000 NFT Cyborg Suits.\nReady for an On-chain Decentralized Galactic Adventure? Come join the SGF Community, where Sci-Fi meets NFTs.\n"
  },
  {
    "path": "projects/sfs.md",
    "content": "---\nslug: \"sfs\"\ndate: \"2020-04-03\"\ntitle: \"Fantasy Sports\"\nlogline: \"Solana Fantasy Sports is an on-chain app where users can start a league by setting an entry amount in SOL.\"\ncta: \"https://solanafantasy.netlify.app/\"\nlogo: /img/sfs.svg\ncategory: app\nstatus: closed\n---\n\nSolana Fantasy Sports is an on-chain app where users can start a league by setting an entry amount in SOL. Friends pay an entry fee to join and choose players in the initial draft. Users can swap players during the game, and scores are published weekly by owner wallets fetched from an API. The highest scorer in each league gets to withdraw the entry amount collected.\n"
  },
  {
    "path": "projects/sgfunited.md",
    "content": "---\nslug: \"sgfunited\"\ndate: \"2021-11-11\"\ntitle: \"SGF UNITED\"\nlogline: \"1st community-owned sci-fi media house on Solana\"\ncta: \"https://sgfunited.com/\"\nlogo: /sgfunited.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://sgfunited.com/\ntwitter: https://twitter.com/SGFUnited\ndiscord: https://discord.com/invite/bBeHKHHSu5\n---\n\n1st community-owned sci-fi media house on Solana\n"
  },
  {
    "path": "projects/shatteredmarble.md",
    "content": "---\nslug: \"shatteredmarble\"\ndate: \"2021-10-16\"\ntitle: \"Shattered Marble\"\nlogline: \"Abstract broken marble NFT's on Solana blockchain.\"\ncta: \"https://digitaleyes.market/collections/shatteredmarble\"\nlogo: /img/shatteredmarble.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.shatteredmarble.com/\ntwitter: https://twitter.com/PArtefacts\ndiscord: https://discord.com/invite/J7DpZYmNwC\n---\n\nThe abstract broken marbles are part of a 1000-piece collection. They are generative, algorithm-driven NFTs with glitches that are neither predictable nor intentional, making them an unusual kind of rarity. The speed of light is the algorithm seed.\n"
  },
  {
    "path": "projects/shoebill coin.md",
    "content": "---\nslug: \"shoebillcoin\"\ntitle: \"Shoebill coin\"\ndate: 2021-06-22\nlogline: \"Shoebill Coin is a meme coin designed to turn attention to endangered species, like the Shoebill, and increase exposure to the need for environmental conservation.\"\ncta: \"https://shoebillco.in/\"\ncategory: app, dex\nlogo: /img/shoebillcoin.svg\nstatus: Live\nwebsite: https://shoebillco.in/\ntwitter: https://twitter.com/ShoebillCoin\ntelegram: https://t.co/OSxFlbOX4C?amp=1\ndiscord: https://t.co/TqOjU40spT?amp=1\n---\n\nShoebill Coin is a meme coin designed to turn attention to endangered species, like the Shoebill, and increase exposure to the need for environmental conservation.\n"
  },
  {
    "path": "projects/sighducks.md",
    "content": "---\nslug: \"sighducks\"\ndate: \"2021-11-10\"\ntitle: \"Sigh Ducks\"\nlogline: \"777 pixelated Sigh Ducks hitting the Solana blockchain\"\ncta: \"https://sighducks.com/\"\nlogo: /img/sighducks.jpg\ncategory: nft\nstatus: building\nwebsite: https://sighducks.com/\ntwitter: https://twitter.com/sighducks\ndiscord: https://discord.com/invite/sighducks\n---\n\n777 pixelated Sigh Ducks hitting the Solana blockchain\n"
  },
  {
    "path": "projects/simplio.md",
    "content": "---\nslug: \"simplio\"\ndate: \"2021-11-04\"\ntitle: \"Simplio\"\nlogline: \"Simplio is a cryptocurrency ecosystem, which aggregates and simplifies the services necessary to manage, hold, swap, buy and sell any digital asset in one user-focused and easy to use platform.\"\ncta: \"https://simplio.io\"\nlogo: /img/simplio.svg\ncategory: app, defi, dex, spl, wallet\nwebsite: https://simplio.io/\ntwitter: https://twitter.com/simplioOfficial\ntelegram: https://t.me/simplioofficial\ndiscord: https://discord.com/invite/aKhjuwZmdP\nstatus: live\n---\n\nThe key foundation of the Simplio ecosystem is its non-custodial wallet, where the user will not only be able to manage and hold crypto, but also conduct simplified crypto transactions.\n\nThese transactions will include any-to-any swaps and buying of crypto directly in-wallet with their own payment card, easily adding custom token wallets for unsupported coins, and also enjoying passive income through staking, all whilst removing the hassle of dealing directly with exchanges.\n\nFurthermore, Simplio is building complementary layers to drive the value of Simplio's utility token and increase wallet functionality, including an NFT marketplace as well as asset tokenisation via Real Estate Staking Pools.\n"
  },
  {
    "path": "projects/sinr.md",
    "content": "---\nslug: \"SINR\"\ntitle: \"SNIR\"\ndate: \"2021-09-10\"\nlogline: \"SINR is a 1:1 INR pegged stable asset built on the Solana network.\"\ncta: https://cloudflare-ipfs.com/ipfs/QmW963A7i4z3peNL8zVSMVEfwVPWaC7tjKyNcQcBKagZNa/\ncategory: stablecoin\nlogo: /img/SINR-white.png\nstatus: building\n---\n\nSINR brings real-world Indian Rupees to the Solana network. SINR enables users to supply liquidity in DEX and exchange other tokens within the Solana network. These features allow users to easily participate in DeFi, and increases cryptocurrency adoption in Southeast Asia.\n"
  },
  {
    "path": "projects/skatepunkz.md",
    "content": "---\nslug: \"skatepunkz\"\ndate: \"2021-11-21\"\ntitle: \"SkatePunkz\"\nlogline: \"Original Skatepunkz - 10,000 Unique Skaterz grinding on Solana Blockchain!\"\ncta: \"https://skatepunkz.io\"\nlogo: /img/skatepunkz.jpg\ncategory: nft\nstatus: building\nwebsite: https://skatepunkz.io\ntwitter: https://twitter.com/SkatepunkzNFT\ndiscord: https://discord.com/invite/skatepunkz\n---\n\nSkatepunkz is a collection of 10,000 radical and unique NFT Skaters shredding across the Solana Blockchain.\nThese wild Skatepunkz are obsessed with attention and will unlock new skateboarding tricks based on how many times they’re viewed! There are over 300 distinct characteristics in Skatepunkz and 11 different properties, including facial expressions, clothing, skate gear, and more!\n"
  },
  {
    "path": "projects/skeletoncrew.md",
    "content": "---\nslug: \"skeletoncrew\"\ndate: \"2021-10-01\"\ntitle: \"Skeleton Crew\"\nlogline: \"SKULLS are a collection of 6,666 hand-drawn and algorithmically generated NFTs on the Solana blockchain. Every SKULL features original artwork and is randomly and uniquely assembled from over 400k total options.\"\ncta: \"https://skeletoncrew.rip/\"\nlogo: /img/skelcrew.png\ncategory: nft\nstatus: live\nwebsite: https://skeletoncrew.rip/\ntwitter: https://twitter.com/skeletoncrewrip\ndiscord: https://t.co/zyDmzV8CYH?amp=1\n---\n\nSKULLS are a collection of 6,666 hand-drawn and algorithmically generated NFTs on the Solana blockchain. Every SKULL features original artwork and is randomly and uniquely assembled from over 400k total options.\n"
  },
  {
    "path": "projects/skulltoons.md",
    "content": "---\nslug: \"skulltoons\"\ndate: \"2021-10-02\"\ntitle: \"Skulltoons\"\nlogline: \"Skulltoons is a collection of 10,000 randomly generated skull NFTs on the blockchain. Hodlers of these rare collectibles make up our amazing community.\"\ncta: \"https://skulltoons.com/\"\nlogo: /img/skulltoons.png\ncategory: nft\nstatus: building\nwebsite: https://skulltoons.com/\ntwitter: https://twitter.com/myskulltoons\ndiscord: https://discord.com/invite/cGSq6Btm\n---\n\nSkulltoons is a collection of 10,000 randomly generated skull NFTs on the blockchain. Hodlers of these rare collectibles make up our amazing community.\n"
  },
  {
    "path": "projects/skullyboys.md",
    "content": "---\nslug: \"skullyboys\"\ndate: \"2021-09-30\"\ntitle: \"Skully Boys\"\nlogline: \"Skully Boys is the NFTs project by the artist Jaleye\"\ncta: \"https://skullyboys.io/\"\nlogo: /img/skully.png\ncategory: nft\nstatus: live\nwebsite: https://skullyboys.io/\ntwitter: https://twitter.com/SkullyBoysBC?s=09\ndiscord: https://discord.gg/w75NRgMc7V\n---\n\nSkully Boys is the NFTs project by the artist Jaleye\n"
  },
  {
    "path": "projects/skylinenft.md",
    "content": "---\nslug: \"skylinenft\"\ndate: \"2021-10-23\"\ntitle: \"Skyline NFT\"\nlogline: \"Generative header art on Solana.\"\ncta: \"https://solanart.io/collections/skyline\"\nlogo: /img/skylinenft.png\ncategory: nft\nstatus: live\nwebsite: https://skylinenft.art/\ntwitter: https://twitter.com/skylineNFT\ndiscord: https://discord.com/invite/UKfrNYyBBs\n---\n\nSkyline is the first generative art series to launch on Solana designed specifically for headers and cover photos on social media.\n\nEach skyline is designed to showcase a unique scene inspired by love for travel and the occasional chaos of generative art – with a few easter eggs.\n"
  },
  {
    "path": "projects/sleepr.md",
    "content": "---\nslug: \"sleepr\"\ndate: \"2021-11-07\"\ntitle: \"Sleepr\"\nlogline: \"Strange psychedelic visions on the #solana blockchain. 1/1 digital art pieces spanning a 10-year body of work\"\ncta: \"https://sleeprnft.holaplex.com/#/\"\nlogo: /img/sleepr.jpg\ncategory: nft\nstatus: building\nwebsite: https://sleeprnft.holaplex.com/#/\ntwitter: https://twitter.com/sleeprNFT\ndiscord: https://discord.com/invite/GBfeBPDEHx\n---\n\nStrange psychedelic visions on the #solana blockchain. 1/1 digital art pieces spanning a 10-year body of work\n"
  },
  {
    "path": "projects/slimeland.md",
    "content": "---\nslug: \"Slimeland\"\ndate: \"2021-11-09\"\ntitle: \"Slimeland\"\nlogline: \"NFT Play2Earn Game.\"\ncta: \"https://slimeland.de/\"\nlogo: /img/Slimeland.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://slimeland.de/\ntwitter: https://twitter.com/Slimelandnft\ndiscord: https://discord.com/invite/5x92Nrf3C5\n---\n\nSlimeland its upcoming Play2Earn NFT Game \n"
  },
  {
    "path": "projects/slope.md",
    "content": "---\nslug: \"slope\"\ntitle: \"Slope\"\ndate: 2021-07-25\nlogline: \"Slope is the first Serum-based mobile DEX APP with a decentralized, automated full-limit orderbook.\"\ncategory: wallet\nlogo: /img/slope.svg\ncta: \"https://slope.finance/#/\"\nstatus: live\nwebsite: https://slope.finance/#/\ntwitter: https://twitter.com/slope_finance\ndiscord: https://discord.com/invite/3n6vg89v3M\n---\n\nSlope is a community-based decentralized exchange built on Solana, providing blazing-fast speed,\nnearly-zero transaction fees, and intuitive interface for users.\n1.Slope DEX is the first Serum-based mobile app with a decentralized, automated full-limit orderbook. Users have a streamlined experience with an interface echoing other exchanges'.\n2.Slope Wallet, as an indispensable component of Slope DEX, is the first cross-platform wallet built for Solana.\n3.Slope's NFT Market's primary function is embedded in Slope Wallet, empowering creators and brands to mint NFTs, and for users to store and auction.\n4.Slope is governed by Slope DAO. All community members who hold SLOPE can participate in project governance.\n"
  },
  {
    "path": "projects/sneakywitches.md",
    "content": "---\nslug: \"sneakywitches\"\ndate: \"2021-10-24\"\ntitle: \"Sneaky Witches\"\nlogline: \"7777 Unique witches taking over the town! More than just an NFT project..\"\ncta: \"https://sneakywitches.com\"\nlogo: /img/sneaky_witches.png\ncategory: nft\nstatus: building\nwebsite: https://sneakywitches.com\ntwitter: https://twitter.com/sneaky_witches\ndiscord: http://discord.gg/sneakywitches\n---\n\n7777 Unique witches taking over the town! More than just an NFT project..\n"
  },
  {
    "path": "projects/snowballednoot.md",
    "content": "---\nslug: \"snowballednoot\"\ndate: \"2021-11-18\"\ntitle: \"Snowballed Noot\"\nlogline: \"Deflationary Snowball inspired by Pesky Penguins, We are here to revenge our noot friends fallen by the paperhands!\"\ncta: \"https://twitter.com/SnowballedNoot\"\nlogo: /img/snowballednoot.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/SnowballedNoot\ndiscord: https://discord.com/invite/NtcEnHGE\n---\n\nDeflationary Snowball inspired by Pesky Penguins, We are here to revenge our noot friends fallen by the paperhands!\n"
  },
  {
    "path": "projects/snowflake.md",
    "content": "---\nslug: \"snowflake\"\ndate: \"2021-10-12\"\ntitle: \"Snowflake\"\nlogline: \"Snowflake is the first on-chain scheduling and automation platform built for Solana.\"\ncta: \"https://snowflake.so\"\nlogo: /img/snowflake.svg\ncategory: app, dapp, tools, infra,defi\nstatus: building\nwebsite: https://snowflake.so/\ntwitter: https://twitter.com/snowflake_sol\n---\n\nSnowflake is the first on-chain automation platform built for Solana. We are committed to building the most user-friendly, yet sophisticated automation layer that helps to connect hundreds of smart contracts in one unified on-chain platform.\n"
  },
  {
    "path": "projects/snowshoe.md",
    "content": "---\nslug: \"snowshoe\"\ntitle: \"Snowshoe\"\ndate: 2021-06-22\nlogline: \"Snowshoe is a community meme token built on Solana.\"\ncategory: app\nlogo: /img/snowshoe.svg\nstatus: Live\n---\n\nSnowshoe is a project that rewards creators for their original art through a community-ranked leaderboard.\n\nEvery week, artists compete in a \"CAT ART\" event. The top artist will be rewarded in SNOWSHOE tokens and have their art presented on our website.\n"
  },
  {
    "path": "projects/soalien.md",
    "content": "---\nslug: \"soalien\"\ndate: \"2021-11-05\"\ntitle: \"soAlien NFT\"\nlogline: \"Welcome to #AlienVille. 10,000 unique soAliens which live on Solana.\"\ncta: \"https://www.soalien.io\"\nlogo: /img/soalien.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.soalien.io\ntwitter: https://twitter.com/soAlien_NFT\ndiscord: https://discord.com/invite/eXZvkZSG\n---\n\n**SoAliens**\n\nAlienVille is a small city in the United States of America. In case you wonder – yes, only soAliens live here and let us tell how this came along.\n\nAfter several mysteries about Aliens and Area 51, the ones who knew, revealed that soAliens have been living amongst us for quite a while and have adapted to \nour lifestyle – they speak English, have jobs, go to school, hangout and are even involved in arts and crafts. The soAliens reproduced over time and have become\na society like ours – they just look a bit different. A collection of 10.000 of soAliens NFTs represents this unique society of soAliens.\n\nThe soAliens NFTs come with a few unique features.\n\n-          Deflationary Mechanism\n\n-          Scavenger Hunt\n\n-          Exclusive Music Access\n\nFollow us on our social media channels and join us on Discord to get more information.\n"
  },
  {
    "path": "projects/socean.md",
    "content": "---\nslug: \"socean\"\ndate: \"2021-11-08\"\ntitle: \"Socean\"\nlogline: \"A decentralised, algorithmic stake pool for the Solana blockchain\"\ncta: \"https://www.socean.fi\"\nlogo: /img/socean.jpg\ncategory: defi, app\nstatus: building\nwebsite: https://www.socean.fi\ntwitter: https://twitter.com/SoceanFinance\ndiscord: https://discord.gg/k8ZcW27bq9\n---\n\nStake with the best validators, secure the network, and earn both staking and DeFi rewards on Solana.\n"
  },
  {
    "path": "projects/soda.md",
    "content": "---\nslug: \"soda\"\ndate: \"2021-10-18\"\ntitle: \"Soda\"\nlogline: \"A lending platform with on-chain credit system\"\ncta: \"https://sodaprotocol.com\"\nlogo: /img/soda.svg\ncategory: \"defi, app, tools\"\nstatus: building\nwebsite: https://sodaprotocol.com\ntwitter: https://twitter.com/SodaProtocol\ntelegram: https://t.me/SodaProtocol\ndiscord: https://discord.gg/4r7uyyTR3V\n---\n\nSoda is a lending protocol with credit rating system. Soda provides easy-to-use lending service and credit system, Sol ID. Sol ID analyses both retail users and protocols'/institutions' on-chain behaviours, and build a credit profile. With this credit system we can achieve on-chain refinement management and have a new mechanism for protocol-to-protocol/business cooperation.\n"
  },
  {
    "path": "projects/sodi.md",
    "content": "---\nslug: \"sodi\"\ndate: \"2021-07-02\"\ntitle: \"sodi\"\nlogline: \"SODI is the currency that powers the SODI social environment system.\"\ncta: \"https://www.soldick.xyz/\"\nlogo: /img/sodi.png\ncategory: app\nstatus: building\nwebsite: https://www.soldick.xyz/\n---\n\nSODI, which powers our social environment, is a utility token that can be used to access our suite of community building features. These features will also be offered to other communities in exchange for project tokens or for burning SODI.\n"
  },
  {
    "path": "projects/sola.md",
    "content": "---\nslug: sola-token\ndate: \"2021-09-09\"\ntitle: SOLA Token\nlogline: DEX with significantly more efficient asset management and automatic liquidity distribution based on AMM.\ncta: \"https://solatoken.net/\"\nlogo: /img/sola-new.png\ncategory: \"amm, dex, exchange, tools\"\nstatus: building\ntwitter: \"https://twitter.com/EcoSolana\"\n---\n\nSolaToken is a combination of a DEX and a CEX that uses Solana, a high-performance blockchain, to provide quick and cheap costs. As a market maker, SolaToken optimizes asset management efficiency by distributing liquidity automatically.\n<br>\n<b>Website</b>: https://solatoken.net </br>\n<b>Twitter</b>: https://twitter.com/EcoSolana </br>\n"
  },
  {
    "path": "projects/solagon.md",
    "content": "---\nslug: \"solagon\"\ndate: \"2021-10-27\"\ntitle: \"SOLAGON\"\nlogline: \"7,777 cute baby dragon NFTs living in the Solana Valley. \"\ncta: \"https://solagon.io\"\nlogo: /img/solagon.jpg\ncategory: nft\nstatus: live\nwebsite: https://solagon.io/\ntwitter: https://twitter.com/solagonNFT\ntelegram: http://t.me/solagonNFT\ndiscord: http://discord.gg/solagon\n---\n\nSolagon is a collection of algorithmically generated cute baby dragon NFTs living on the #Solana blockchain.\nThe collection consists of 7,777 randomly selected baby Solagons from over 500k total possibilities.\n\nSolagons have a variety of eggs, skins, hats, eyes, mouths, accessories, backgrounds, and colors. Each one is beautifully designed, specifically picked, and faultlessly shaped.\n"
  },
  {
    "path": "projects/solana eco fund.md",
    "content": "---\nslug: \"solarecofund\"\ntitle: \"Solar Eco Fund\"\ndate: \"2021-05-28\"\nlogline: \"Solar Eco Fund is an ecosystem fund dedicated exclusively to Solana and its projects.\"\ncta: \"https://www.solarecofund.com/\"\ntwitter: \"https://twitter.com/SolarEcoFund\"\ncategory: investmentfund\nlogo: /img/solarecofund.svg\nstatus: live\n---\n\nSolar Eco Fund only invests in $SOL, Solana tokens, and companies.\n"
  },
  {
    "path": "projects/solana-go-sdk.md",
    "content": "---\nslug: \"solana-go-sdk\"\ndate: \"2021-08-13\"\ntitle: \"solana-go-sdk\"\nlogline: \"a solana sdk in go\"\ncta: \"https://github.com/portto/solana-go-sdk\"\nlogo: /img/solana-go-sdk.svg\ncategory: sdk\nstatus: live\n---\n\nsolana-go-sdk as used in Blocto. You can use it to build your app. Follow our github project and you'll see the latest status.\n"
  },
  {
    "path": "projects/solana-go.md",
    "content": "---\nslug: \"solana-go\"\ndate: \"2021-07-29\"\ntitle: \"solana-go\"\nlogline: \"Solana SDK for the Go programming language.\"\ncta: \"https://github.com/gagliardetto/solana-go\"\nlogo: /img/golang.svg\ncategory: sdk\nstatus: live\n---\n\nsolana-go is an SDK library for the Go programming language for interacting with the Solana blockchain.\nBuild and integrate your Go applications with Solana.\n"
  },
  {
    "path": "projects/solana-py.md",
    "content": "---\nslug: \"solana-py\"\ndate: \"2021-08-03\"\ntitle: \"solana-py\"\nlogline: \"Solana SDK for the Python programming language.\"\ncta: \"https://github.com/michaelhly/solana-py\"\nlogo: /img/python.svg\ncategory: sdk\nstatus: live\n---\n\nsolana-py is Solana's Python SDK. It allows Python users to develop applications that interact with the Solana blockchain.\n"
  },
  {
    "path": "projects/solanabanana.md",
    "content": "---\nslug: \"solanabanana\"\ndate: \"2021-10-16\"\ntitle: \"Solana Banana\"\nlogline: \"1500 uniquely generated Banana NFTs 🍌 on Solana. 10% of sale proceeds to SavingGorillas.\"\ncta: \"https://solanart.io/collections/solanabananas\"\nlogo: /img/solanabanana.jpg\ncategory: nft\nstatus: live\nwebsite: https://solanabananas.com/\ntwitter: https://twitter.com/solanabananas\ndiscord: https://discord.com/invite/VHcfR85T6y\n---\n\nEach banana is different in its own way, some more rare than others. But one thing's guaranteed: There will only ever be 1500 bananas.\n"
  },
  {
    "path": "projects/solanabeach.md",
    "content": "---\nslug: \"solanabeach\"\ndate: \"2020-04-03\"\ntitle: \"Solana Beach\"\nlogline: \"Explore the Solana blockchain: statistics, validators, token metrics, and news about the overall ecosystem || brought to you by Staking Facilities & VGNG\"\ncta: \"https://solanabeach.io/\"\nlogo: /img/solanabeach.svg\ncategory: explorer\nstatus: live\nwebsite: https://solanabeach.io/\ntwitter: https://twitter.com/solanabeach_io\ntelegram: https://t.me/stakingfacilities\n---\n\nSolanabeach is a comprehensive block explorer highlighting core Solana statistics. Stakeholders of the Solana blockchain may seamlessly explore the network's statistics, validators, and token metrics.\n\nYou can support the continuous development of Solana Beach by delegating to the Solana Beach Validator (https://solanabeach.io/validator/BeachiopjxQxL7CaHNSZsynApiZCKx9QFVtcWNz3jDBo)\n"
  },
  {
    "path": "projects/solanabeauties.md",
    "content": "---\nslug: \"solanabeauties\"\ndate: \"2021-11-06\"\ntitle: \"Solana Beauties\"\nlogline: \"Solana Beauties: The most beautiful ladies on the Solana blockchain. 20% of all mint proceeds will go to breast cancer charities\"\ncta: \"https://solanabeauties.io\"\nlogo: /img/solanabeauties.jpg\ncategory: nft\nstatus: building\nwebsite: https://solanabeauties.io\ntwitter: https://twitter.com/solanabeauties\ndiscord: https://discord.com/invite/C43Q3wGpCJ\n---\n\nEach beauty is created with a combination of various hand-drawn traits with different rarities, \nmaking each one special in her own way. 20% of all proceeds from the mint will be donated to a variety of breast cancer charities.\n"
  },
  {
    "path": "projects/solanabet.md",
    "content": "---\nslug: \"solanabet\"\ndate: \"2021-11-08\"\ntitle: \"Solana.bet\"\nlogline: \"Decentralized (e)sports-bookmaking and betting on Solana\"\ncta: \"https://solana.bet\"\nlogo: /img/solanabet.jpg\ncategory: app\nstatus: building\nwebsite: https://solana.bet\ntwitter: https://twitter.com/solanabet\ndiscord: https://discord.gg/uEtbBb5jPm\n---\n\nDecentralized (e)sports-bookmaking and betting on Solana\n"
  },
  {
    "path": "projects/solanabirds.md",
    "content": "---\nslug: \"solanabirds\"\ndate: \"2021-10-07\"\ntitle: \"Solana Birds\"\nlogline: \"A collection of 5,555 unique birbs, with some laying eggs!\"\ncta: \"https://birbs.art/\"\nlogo: /img/solanabirds.png\ncategory: nft\nstatus: live\nwebsite: https://birbs.art/\ntwitter: https://twitter.com/SolanaBirbs\ndiscord: https://discord.com/invite/ZEaybetZGX\n---\n\nA collection of 5,555 unique birbs, with some laying eggs!\n"
  },
  {
    "path": "projects/solanaclown.md",
    "content": "---\nslug: \"solanaclown\"\ndate: \"2021-11-11\"\ntitle: \"Solana Clown\"\nlogline: \"Solana Clown is 999 Randomly Generated NFTs On Solana Blockchain. Inspired by the Vibrant Strangers from Wild City.\"\ncta: \"https://solanaclown.com/\"\nlogo: /img/solanaclown.jpg\ncategory: nft\nstatus: building\nwebsite: https://solanaclown.com/\ntwitter: https://twitter.com/SolanaClown\ndiscord: https://discord.gg/e6Vy8WYwJa\n---\n\nSolana Clown is a collectioan of unique, automaticaly generated NFTs on Solana blockchain. \nMore than 200 assets were designed and developed all in order to create a product that we are really proud of.\n\nEvery single NFT looks clean and absolutely stunning. Clowns have their own character and life story, some of them were beaten-up, \nand some are fresh and self-confident.\n"
  },
  {
    "path": "projects/solanadon.md",
    "content": "---\nslug: \"solanadon\"\ntitle: \"Solanadon\"\ndate: \"2021-05-28\"\nlogline: \"Solanadon is building a community to help the endangered prehistoric mammal, Solenodons!\"\ncta: https://twitter.com/SolanadonCoin\ncategory: defi\nlogo: /img/solanadoncoin.svg\nstatus: building\n---\n\nSolenodons are small, venomous mammals that have been around since the dinosaurs--over 70 million years. We're aiming to bring the same longevity and survival power to Solana.\n"
  },
  {
    "path": "projects/solanagalaxy.md",
    "content": "---\nslug: \"solanagalaxy\"\ndate: \"2021-10-01\"\ntitle: \"SolanaGalaxy\"\nlogline: \"An NFTs and gaming platform in Solana. \"\ncta: \"https://www.solanagalaxy.io/\"\nlogo: /img/solanagalaxy.png\ncategory: nft, game\nstatus: live\nwebsite: https://www.solanagalaxy.io/\ntwitter: https://twitter.com/SolanaGalaxyNFT\ndiscord: https://discord.gg/GKVgZkDnCv\n---\n\nThere are many galaxies in the universe, but we have focused on just one, and that is the Solana Galaxy, a unique galaxy that is just waiting to be explored.\n"
  },
  {
    "path": "projects/solanagansta.md",
    "content": "---\nslug: \"solanagansta\"\ndate: \"2021-10-09\"\ntitle: \"Solana Gangsta\"\nlogline: \"The first ever thumb-drawing art NFTs on Solana , 1234 Generative Art.\"\ncta: \"https://solgangsta.com/\"\nlogo: /img/solanagangsta.png\ncategory: nft\nstatus: live\nwebsite: https://solgangsta.com/\ntwitter: https://twitter.com/SolanaGangNFT\ndiscord: https://discord.com/invite/solgangsta\n---\n\nThe first ever thumb-drawing art NFTs on Solana , 1234 Generative Art.\n"
  },
  {
    "path": "projects/solanagods.md",
    "content": "---\nslug: \"solanagods\"\ndate: \"2021-11-05\"\ntitle: \"SOLgods\"\nlogline: \"6,666 Supply Pfp art project inspired by metaphysical artist Giorgio de Chirico\"\ncta: \"https://www.solanagods.io\"\nlogo: /img/solanagods.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.solanagods.io\ntwitter: https://twitter.com/SOLgods_\ndiscord: https://discord.gg/ybjjmNfz42\n---\n\nInspired by collection from metaphysical artist Giorgio de Chirico, \nSOLgods are a collection of 6,666 randomly generated, unique artworks encoded on the Solana blockchain.\n"
  },
  {
    "path": "projects/solanalysis.md",
    "content": "---\nslug: \"solanalysis\"\ndate: \"2021-10-06\"\ntitle: \"Solanalysis\"\nlogline: \"With Solanalysis you can check all the stats about NFTs on Solana\"\ncta: \"https://solanalysis.com/\"\nlogo: /img/solanalysis.png\ncategory: nft, app\nstatus: live\nwebsite: https://solanalysis.com/\ntwitter: https://twitter.com/solanalysis\ndiscord: https://discord.com/invite/Fs4hepB5AZ\n---\n\nWith Solanalysis you can check all the stats about NFTs on Solana\n"
  },
  {
    "path": "projects/solanamonkebacks.md",
    "content": "---\nslug: \"solanamonkebacks\"\ndate: \"2021-11-13\"\ntitle: \"Solana Monke Backs\"\nlogline: \"5000 NFTs 1:1 backs of original SMB, part of the Back2Back project. This is not ART, not a simple derivative\"\ncta: \"https://mint.back2back.io/\"\nlogo: /img/solanamonkebacks.jpg\ncategory: nft\nstatus: building\nwebsite: https://mint.back2back.io/\ntwitter: https://twitter.com/MonkeBacks\ndiscord: https://discord.gg/mfWThGum4b\n---\n\n5000 NFTs 1:1 backs of original SMB, part of the Back2Back project. This is not ART, not a simple derivative\n"
  },
  {
    "path": "projects/solanamonkette.md",
    "content": "---\nslug: \"solanamonkette\"\ndate: \"2021-11-09\"\ntitle: \"Solana Monkette Business\"\nlogline: \"3333 generative female NFTs inspired by SolanaMBS, project by vibingstudios Get free $VIBE by holding a Monkette! vibetoken\"\ncta: \"https://solanamonkette.business\"\nlogo: /img/solanamonkette.jpg\ncategory: nft\nstatus: live\nwebsite: https://solanamonkette.business\ntwitter: https://twitter.com/MonketteSolana\ndiscord: https://discord.gg/8kgKv9YEZH\n---\n\n3333 generative female NFTs inspired by SolanaMBS, project by vibingstudios Get free $VIBE by holding a Monkette! vibetoken\n"
  },
  {
    "path": "projects/solanamonkeybusiness.md",
    "content": "---\nslug: \"smb\"\ndate: \"2021-07-01\"\ntitle: \"Solana Monkey Business\"\nlogline: \"SolanaMonkeyBusiness is an NFT project on the Solana blockchain featuring two NFT collections.\"\ncta: \"https://www.solanamonkey.business/\"\nlogo: /img/solanamonkeybusiness.svg\ncategory: nft\nstatus: live\nwebsite: https://market.solanamonkey.business/\ntwitter: https://twitter.com/solanambs\ntelegram: https://t.me/solanamonkeybusiness\ndiscord: https://discord.com/invite/dEnYkASn7N\n---\n\nSolanaMonkeyBusiness is an NFT project on the Solana blockchain featuring two NFT collections:\n\n- SolanaMonkeys: 5000 unique generative NFTs with attributes and a rarity system.\n- SpaceMonkeys: 4 non-unique NFTs, granting the holders of the entire collection royalties on each SolanaMonkeys mint and trade, forever.\n"
  },
  {
    "path": "projects/solanamonks.md",
    "content": "---\nslug: \"solanamonks\"\ndate: \"2021-11-07\"\ntitle: \"Solana Monks NFT\"\nlogline: \"Greatest Monks to be ever deployed on Solana. 5,918 ethereal shaolins\"\ncta: \"https://solanamonks.io\"\nlogo: /img/solanamonks.jpg\ncategory: nft\nstatus: building\nwebsite: https://solanamonks.io\ntwitter: https://twitter.com/solanamonks\ndiscord: https://discord.com/invite/SJs6qhjBAC\n---\n\nGreatest Monks to be ever deployed on Solana. 5,918 ethereal shaolins\n"
  },
  {
    "path": "projects/solanamysterybox.md",
    "content": "---\nslug: \"solanamysterybox\"\ndate: \"2021-11-04\"\ntitle: \"Solana Mystery Box\"\nlogline: \"Solana Mystery Box (SMBox) represents special items that will serve to merge with already existing NFTs\"\ncta: \"https://solmystery.io\"\nlogo: /img/solanamysterybox.jpg\ncategory: nft\nstatus: building\nwebsite: https://solmystery.io\ntwitter: https://twitter.com/mysterysolbox\ndiscord: https://discord.gg/smbox\n---\n\nSolana Mystery Box (SMBox) represents special items that will serve to merge with already existing NFTs. The selected collections will be revealed step by step. \nThe enhanced items will serve the best for the holders of the NFTs. However, anyone (not only holders) can mint the items.\n"
  },
  {
    "path": "projects/solanaotters.md",
    "content": "---\nslug: \"solanaotters\"\ndate: \"2021-11-07\"\ntitle: \"Solana Otters\"\nlogline: \"3533 OTTERS swimming around the Solana BlockChain\"\ncta: \"https://solanaotters.io\"\nlogo: /img/solanaotters.jpg\ncategory: nft\nstatus: building\nwebsite: https://solanaotters.io\ntwitter: https://twitter.com/SolanaOtters\ndiscord: https://discord.com/invite/gnkubUyBPa\n---\n\n3533 OTTERS swimming around the Solana BlockChain\n"
  },
  {
    "path": "projects/solanapaint.md",
    "content": "---\nslug: \"solanapaint\"\ndate: \"2021-10-03\"\ntitle: \"Solana Paint\"\nlogline: \"Futuristic Arts on Solana\"\ncta: \"https://solanapaint.art/\"\nlogo: /img/solanapaint.png\ncategory: nft\nstatus: live\nwebsite: https://solanapaint.art/\ntwitter: https://twitter.com/SolanaPaint\n---\n\nOur mission is to create the best art collection in the world using Artificial Intelligence.\n"
  },
  {
    "path": "projects/solanapowerball.md",
    "content": "---\nslug: \"solanapowerball\"\ndate: \"2021-11-13\"\ntitle: \"Solana Powerball\"\nlogline: \"We combined the traditional lottery system with the Solana blockchain technology to achieve a completely decentralized, transparent and secure lottery scheme.\"\ncta: \"https://www.solanapowerball.com/\"\nlogo: /img/solanapowerball.png\ncategory: tools\nstatus: live\nwebsite: https://www.solanapowerball.com/\ntwitter: https://twitter.com/SolanaPowerball\n---\n\nWe combined the traditional lottery system with the Solana blockchain technology to achieve a completely decentralized, transparent and secure lottery scheme.\n"
  },
  {
    "path": "projects/solanaproject.md",
    "content": "---\nslug: \"solanaproject\"\ndate: \"2020-04-03\"\ntitle: \"Solana Project\"\nlogline: \"Solana Project is an educational site providing information on projects building in the Solana ecosystem.\"\ncta: \"https://solanaproject.com/\"\nlogo: /img/solanaproject.svg\ncategory: explorer\nstatus: live\n---\n\nSolana Project is an educational site providing information on projects building in the Solana ecosystem.\n"
  },
  {
    "path": "projects/solanaroll.md",
    "content": "---\nslug: \"solanaroll\"\ndate: \"2020-04-03\"\ntitle: \"Solanaroll\"\nlogline: \"Solanaroll is a fast, inexpensive dice game with a user-funded pooled treasury. The dice game is provably fair and has a 1% house edge.\"\ncategory: app\nlogo: /img/solanaroll.svg\ncta: \"https://www.solanaroll.com\"\nstatus: live\n---\n\nSolanaroll is a fast, inexpensive dice game with a user-funded pooled treasury. The dice game is provably fair and has a 1% house edge.\n"
  },
  {
    "path": "projects/solanart.md",
    "content": "---\nslug: \"solanart\"\ndate: \"2021-07-10\"\ntitle: \"Solanart\"\nlogline: \"Solanart is the first NFT marketplace on Solana. Get quick, easy access to digital collectibles, and explore, buy, and sell NFTs from different collections and artists.\"\ncta: \"https://solanart.io/\"\nlogo: /img/solanart.svg\ncategory: nft\nstatus: building\n---\n\nSolanart is the first NFT marketplace on Solana. Get quick, easy access to digital collectibles, and explore, buy, and sell NFTs from different collections and artists.\n"
  },
  {
    "path": "projects/solanasail.md",
    "content": "---\nslug: \"solanasail\"\ntitle: \"SolanaSail\"\ndate: 2021-06-22\nlogline: \"SAIL is the first randomly distributed community token. gSAIL is the governance token of the SolanaSail ecosystem, but SAIL will be the main utility token of a new ecosystem built on Solana. SAIL and gSAIL will both be used on the future SolanaSail ecosystem platform, which will offer governance, vaults, DeFi, NFT, and PlaytoEarn games.\"\ncta: \"https://twitter.com/SolanaSail\"\ncategory: defi, app, spl, tools\nlogo: /img/solanasail.svg\nstatus: Building\n---\n\nSolanaSail's governance platform will provide to all SPL tokens and projects the ability to create and vote for proposals.\n"
  },
  {
    "path": "projects/solanascan.md",
    "content": "---\nslug: \"solanascan\"\ndate: \"2020-04-03\"\ntitle: \"Solanascan\"\nlogline: \"Solanascan is a block explorer and analytics platform for Solana.\"\ncta: \"https://solanascan.io/\"\nlogo: /img/solanascan.svg\ncategory: explorer\nstatus: live\n---\n\nSolanascan allows for the exploration of the Solana blockchain for transactions, addresses, tokens, prices, and other activities taking place on Solana.\n"
  },
  {
    "path": "projects/solanaskullies.md",
    "content": "---\nslug: \"solanaskullies\"\ndate: \"2021-11-18\"\ntitle: \"Solana Skullies\"\nlogline: \"Solana Skullies NFTs are a limited set of collectible skeletons created by passionate devs and adored by our community!\"\ncta: \"https://skullies.art/\"\nlogo: /img/solanaskullies.jpg\ncategory: nft\nstatus: live\nwebsite: https://skullies.art/\ntwitter: https://twitter.com/SolanaSkullies\ndiscord: https://discord.com/invite/BJFWhpWgCy\n---\n\nSolana Skullies NFTs are a limited set of collectible skeletons created by passionate devs and adored by our community! \n"
  },
  {
    "path": "projects/solanasneakers.md",
    "content": "---\nslug: \"solanasneakers\"\ndate: \"2021-11-09\"\ntitle: \"SolanaSneakers\"\nlogline: \"Limited Edition NFTs on Solana backed by Physical Assets\"\ncta: \"https://solanasneakers.com\"\nlogo: /img/solanasneakers.jpg\ncategory: nft\nstatus: live\nwebsite: https://solanasneakers.com\ntwitter: https://twitter.com/SolanaSneakers\ntelegram: https://t.me/SolSneakers\ndiscord: https://discord.gg/ysMXjWmS8m\n---\n\nLimited Edition NFTs on Solana backed by Physical Assets   \n"
  },
  {
    "path": "projects/solanatip.md",
    "content": "---\nslug: \"solanatip\"\ntitle: \"SolanaTip\"\ndate: \"2021-08-20\"\nlogline: \"Reward content on Twitter with $SOL.\"\ncta: \"https://solanatip.io\"\ncategory: tools\nlogo: /img/solanatip.svg\nstatus: live\n---\n\nSolanatip is a Chrome extension which allows for Twitter content creators to be rewarded with $SOL. Using Solana's Twitter-specific Name Service, we check if the user to receive the tip has an associated wallet and proceed to make the transaction using the Phantom or Sollet wallet.\n"
  },
  {
    "path": "projects/solanavalley.md",
    "content": "---\nslug: \"solanavalley\"\ndate: \"2021-10-09\"\ntitle: \"Solana Valley\"\nlogline: \"10,000 collectible, adorable, and friendly cows will be available in the Series 1 drop and stored on the Solana blockchain!\"\ncta: \"https://yourwebsite.tld/call-to-action\"\nlogo: /img/solanavalley.png\ncategory: nft, game\nstatus: live\nwebsite: https://yourwebsite.tld/\ntwitter: https://twitter.com/SolanaValley\ndiscord: https://discord.com/invite/solanavalley\n---\n\n10,000 collectible, adorable, and friendly cows will be available in the Series 1 drop and stored on the Solana blockchain!\n"
  },
  {
    "path": "projects/solanax.md",
    "content": "---\nslug: \"solanax\"\ntitle: \"Solanax\"\ndate: 2021-06-22\nlogline: \"SOLANAX is a decentralized and non-custodial automated liquidity mechanism supporting trades within the Solana ecosystem.\"\ncta: \"https://solanax.org\"\ncategory: amm, defi, dex\nlogo: /img/solanax.svg\nstatus: Building\nwebsite: https://solanax.org\ntwitter: https://twitter.com/Solanaxorg\ntelegram: https://t.me/solanaxcommunity\ndiscord: https://discord.gg/23zsTCd4u3\n---\n\nSolanaX's project focuses on users' need for trust in DeFi. We want to provide our community with a seamless, trustworthy DeFi experience. With Solana, we remove all intermediaries, complexity, and time-consuming procedures from the equation, giving users the freedom to trade without fear of censorship or losing ownership of their assets.\n\nUsers can be promised of:\n\nNext-level liquidity\nFriction-less yield\nLight-speed swaps\nDeFi that is faster, cheaper, and more powerful\n"
  },
  {
    "path": "projects/solanbananas.md",
    "content": "---\nslug: \"solanbananas\"\ndate: \"2021-10-03\"\ntitle: \"Solanabananas\"\nlogline: \"Solanabanas is 1500 Fruity, Unique, Algorithmically generated Bananas. Stored with proof of ownership on the Solana blockchain.\"\ncta: \"https://solanabananas.com/\"\nlogo: /img/solanabananas.png\ncategory: nft\nstatus: live\nwebsite: https://solanabananas.com/\ntwitter: https://twitter.com/solanabananas\ndiscord: https://discord.com/invite/VHcfR85T6y\n---\n\nSolanabanas is 1500 Fruity, Unique, Algorithmically generated Bananas. Stored with proof of ownership on the Solana blockchain.\n"
  },
  {
    "path": "projects/solands.md",
    "content": "---\nslug: \"solands\"\ndate: \"2021-11-07\"\ntitle: \"SOLands\"\nlogline: \"Rust hacker exploring the frontier lands. v1 completed, v2 completed\"\ncta: \"https://solands.xyz/#/system\"\nlogo: /img/solands.jpg\ncategory: nft\nstatus: live\nwebsite: https://solands.xyz/#/system\ntwitter: https://twitter.com/ExploreSOLands\ndiscord: https://discord.gg/bM2KuSWRnT\n---\n\nRust hacker exploring the frontier lands. v1 completed, v2 completed\n"
  },
  {
    "path": "projects/solania.md",
    "content": "---\nslug: \"solania\"\ndate: \"2021-06-19\"\ntitle: \"Solania\"\nlogline: \"Solania is a planetary NFT orbiting the Solana ecosystem.\"\ncta: https://solania.space/\nlogo: /img/solania.svg\ncategory: nft\nstatus: live\n---\n\nSolania is a planetary NFT orbiting the Solana ecosystem.\nA wonderful planetary metaverse based on Solana!\n"
  },
  {
    "path": "projects/solanimals.md",
    "content": "---\nslug: \"solanimals\"\ndate: \"2021-07-13\"\ntitle: \"Solanimals\"\nlogline: \"Solanimals are voxel-art NFTs built over Metaplex to buy, trade, and breed. Several attributes are available, and exclusive attributes are obtainable through breeding.\"\ncta: \"https://solanimals.com/\"\nlogo: /img/solanimals.svg\ncategory: nft\nstatus: live\n---\n\nSolanimals are voxel-art NFT built over Metaplex to buy, trade, and breed. Several attributes are available, and exclusive attributes are obtainable through breeding.\n"
  },
  {
    "path": "projects/solanium.md",
    "content": "---\nslug: \"solanium\"\ntitle: \"Solanium\"\ndate: \"2021-05-28\"\nlogline: \"Solanium is a decentralized auction platform.\"\ncta: https://twitter.com/solanium_io\ncategory: defi\nlogo: /img/solanium.svg\nstatus: building\nwebsite: https://www.solanium.io/\ntwitter: https://twitter.com/solanium_io\ntelegram: https://t.me/solanium_io\n---\n\nThe Solanium platform is a decentralized platform on the Solana blockchain. The platform will introduce decentralized fundraising, time-weighted token staking, and governance voting to the Solana ecosystem. Solanium users will be able to create and participate in pools (\"token sales\") with only SPL tokens. Users will also be able to stake our own SPL token (\"SLIM\").\n"
  },
  {
    "path": "projects/solantasy.md",
    "content": "---\nslug: \"solantasy\"\ndate: \"2021-08-31\"\ntitle: \"Solantasy\"\nlogline: \"Solantasy is a fantasy-themed NFT project featuring three collections. Each collection entails 10,000 algorithmically generated NFTs, with metadata generated using AI.\"\ncta: \"https://solantasy.com\"\nlogo: /img/solantasy.png\ncategory: nft\nstatus: building\n---\n\nSolantasy is a fantasy-themed NFT project featuring three collections. Each collection entails 10,000 algorithmically generated NFTs, with metadata generated using AI.\n"
  },
  {
    "path": "projects/solantis.md",
    "content": "---\nslug: \"solantis\"\ndate: \"2021-10-16\"\ntitle: \"Solantis NFTs\"\nlogline: \"Open the gates to the lost cryptic city on Solana.\"\ncta: \"https://solanart.io/collections/solantis\"\nlogo: /img/solantis.jpg\ncategory: nft\nstatus: live\nwebsite: https://solantis.io/\ntwitter: https://twitter.com/solantisnfts\ndiscord: https://discord.com/invite/bX3hHPvrBY\n---\n\nLegend has it that the city of Solantis was built by Poseidon, the God of Sea. Created and sent, by his mother Rhea and father Chronos, in seek of taking more control by building a capital Utopia of the Seas. Poseidon was assigned to conjure this city, no matter the costs. He would channel divine power from a source like no other, The \"Dunamis\". Using this same power, he called upon 9999 guardian protectors and first citizens of Solantis. The Sharks Of Solantis.\n"
  },
  {
    "path": "projects/solape.md",
    "content": "---\nslug: \"solape\"\ndate: \"2021-05-11\"\ntitle: \"Sol Ape\"\nlogline: \"Sol Ape is a Serum-based DEX and deflationary token built on Solana.\"\ncta: \"https://www.solape.io/\"\ncategory: dex\nlogo: /img/solape.png\nwebsite: https://www.solape.io/\ntwitter: https://twitter.com/SolApeFinance\ntelegram: https://t.me/SolApeOfficial\ndiscord: https://discord.com/invite/solape\nstatus: live\n---\n\nSolape is a Serum-based Solana DEX built by apes, for other apes.\n\nSolape Finance was created with the belief that crypto and blockchain tech appeal to the masses through easy-accessibility. Bringing forth an ecosystem that is rewarding and fun fulfills this desire. As firm believers in Solana, our goal is supplying fellow apes with an onboarding point to the crypto domain, or for existing members to experience it in a whole new light. Our Decentralized Exchange (DEX) serves not only as a place to trade the highest market cap coins, but also bolsters new projects within Solana with a platform to list their tokens, and deliver their communities a center to trade them.\n"
  },
  {
    "path": "projects/solar.md",
    "content": "---\nslug: \"solar\"\ndate: \"2021-07-25\"\ntitle: \"NFT Solar\"\nlogline: \"NFT Solar is a social NFT platform leveraging Metaplex protocol\"\ncta: \"https://nft.solar/\"\nlogo: /img/solar.svg\ncategory: defi, nft, metaplex, app\nstatus: building\n---\n\nNFT Solar is a social NFT platform where you can login through social media accounts or Solana wallets in order to create, transfer, and trade NFTs.\n"
  },
  {
    "path": "projects/solarea.md",
    "content": "---\nslug: solarea\ndate: \"2021-07-28\"\ntitle: Solarea\nlogline: Solarea is a dApps composer and community-driven blockchain explorer based on Solana.\ncta: \"https://solarea.io/\"\nlogo: /img/solarea.svg\ncategory: \"explorer, infra\"\nstatus: building\ntwitter: \"https://twitter.com/solareaio\"\n---\n\nSolarea - dApps composer and community-driven blockchain explorer based on Solana.\n\n<b>Website</b>: https://solarea.io </br>\n<b>Twitter</b>: https://twitter.com/solareaio </br>\n<b>Telegram</b>: https://t.me/solareaio </br>\n<b>Discord</b>: https://discord.gg/ZhhhBe3BuW </br>\n"
  },
  {
    "path": "projects/solareumwallet.md",
    "content": "---\nslug: \"solareumwallet\"\ndate: \"2021-11-06\"\ntitle: \"Solareum Wallet\"\nlogline: \"SOL on the go! Crypto wallet for the millions, we aim to connect the current digital world into the future of decentralization - web3.0\"\ncta: \"https://solareum.app\"\nlogo: /img/solareumwallet.jpg\ncategory: wallet, dex\nstatus: building\nwebsite: https://solareum.app\ntwitter: https://twitter.com/solareum_wallet\ntelegram: https://t.me/solareum_wallet\n---\n\nCrypto wallet for the millions, built on Solana. Helping you fulfill all your daily needs. Whenever you need it, It's always right on your finger.\n"
  },
  {
    "path": "projects/solarians.md",
    "content": "---\nslug: \"solarians\"\ndate: \"2021-03-22\"\ntitle: \"Solarians\"\nlogline: \"Solarians are the first generative NFTs built on Solana.\"\ncta: https://solarians.click/\nlogo: /img/solarians.svg\ncategory: nft\nwebsite: https://solarians.click/\ntwitter: https://twitter.com/SolariansNFT\ntelegram: https://t.me/SolariansOfficial\ndiscord: https://discord.gg/6zQDYBde3w\nstatus: live\n---\n\nSolarian robots originate from Solaria Prime. When you purchase Solarian, it will be assembled from 200 different traits and attributes with varying rarities based on the transaction hash.\n"
  },
  {
    "path": "projects/solaris.md",
    "content": "---\nslug: \"solaris\"\ndate: \"2021-03-22\"\ntitle: \"Solaris\"\nlogline: \"Solaris is a lending and borrowing protocol that brings flash loans to the Solana blockchain. Inspired by Aave and Compound.\"\ncta: https://solarisprotocol.com/\nlogo: /img/solaris.svg\ncategory: DeFi\nwebsite: https://solarisprotocol.com/\ntwitter: https://twitter.com/solarisprotocol\ntelegram: https://t.me/SolarisProtocol\ndiscord: https://discord.com/invite/pJh4TuuzEp\nstatus: live\n---\n\n<<<<<<< Updated upstream\nSolaris is a protocol for DeFi users that allows for earning interest on deposits and borrowing assets.\n=======\nSolaris is a protocol for DeFi users to earn interest on deposits and borrow assets.\n\n> > > > > > > Stashed changes\n"
  },
  {
    "path": "projects/solarium.md",
    "content": "---\nslug: \"solarium\"\ntitle: \"Solarium\"\ndate: 2021-07-25\nlogline: \"Solarium is a fully decentralised, end-to-end encrypted instant messenger on the Solana blockchain.\"\ncategory: app\nlogo: /img/solarium.svg\ncta: \"https://solarium.chat/\"\nstatus: live\nwebsite: https://solarium.chat/\ntwitter: https://twitter.com/solariume2e\n---\n\n<<<<<<< Updated upstream\nSolarium is a fully decentralized, end-to-end encrypted, censorship-resistant instant messenger based on the Solana blockchain. Solarium is currently in alpha phase, running on the Solana devnet.\n=======\nSolarium is a fully decentralised, end-to-end encrypted, censorship-resistant instant messenger based on the Solana blockchain. Currently in alpha phase, Solarium is running on the Solana devnet.\n\n> > > > > > > Stashed changes\n\nAll messages in Solarium are end-to-end encrypted using the XChaCha20-Poly1305 symmetric encryption algorithm, using a 256-bit content encryption key (CEK) that is shared for all messages in a given channel.\n\nThe message content in Solarium is not directly signed, i.e. the data itself, once decrypted, does not contain details about the sender. Instead, the blockchain transaction that adds the message to the channel is signed by the sender. The Solarium program ensures the following statements are true:\n\n<<<<<<< Updated upstream\nThe sender key of the transaction currently belongs to the DID of the stated sender of the message\nThe sender DID is a member of the channel that the message is being posted to.\n=======\n\n1. The sender key of the transaction currently belongs to the DID of the stated sender of the message.\n2. The sender DID is a member of the channel that the message is being posted to.\n   > > > > > > > Stashed changes\n"
  },
  {
    "path": "projects/solariumnft.md",
    "content": "---\nslug: \"solariumnft\"\ndate: \"2021-11-18\"\ntitle: \"Solarium NFT\"\nlogline: \"Solarium NFT is a procedurally generated NFT floral art project on the solana blockchain containing 1,111 unique, three-dimensional pieces\"\ncta: \"https://solariumnft.art/\"\nlogo: /img/solariumnft.jpg\ncategory: nft\nstatus: live\nwebsite: https://solariumnft.art/\ntwitter: https://twitter.com/SolariumNFT\ndiscord: https://discord.gg/3AnvANeftj\n---\n\nSolarium NFT is a procedurally generated NFT floral art project on the solana blockchain containing 1,111 unique, three-dimensional pieces\n"
  },
  {
    "path": "projects/solasystem.md",
    "content": "---\nslug: \"solasystem\"\ntitle: \"SolaSystem\"\ndate: 2021-07-25\nlogline: \"SolaSystem is a community-run ecosystem tracker.\"\nwebsite: \"https://solasystem.io/\"\ncategory: tools\nlogo: /img/solasystem.svg\ncta: \"https://solasystem.io/\"\nstatus: live\ntwitter: https://twitter.com/Sola_System\ntelegram: https://t.me/sola_system\n---\n\nSolaSystem is a community-run ecosystem tracker.\n"
  },
  {
    "path": "projects/solati.md",
    "content": "---\nslug: \"solati\"\ndate: \"2021-07-25\"\ntitle: \"SOLATI\"\nlogline: \"SOLATI is an audible NFT project connecting users and artists through music.\"\ncta: https://solati.io/\nlogo: /img/solati.svg\ncategory: app, nft\nstatus: building\n---\n\n<<<<<<< Updated upstream\nSOLATI project boosts the amateur music market and supports artists to create better work. By owning SOLATI NFT, not only the artwork but also the copyright of the music can be obtained later on. Part of the paid amount goes to the artists.\n=======\nSOLATI provides a platform for up-and-coming artists, bolstering the amateur music market. By owning SOLATI NFT, the buyer owns the artwork initially, but copyright of the music can be obtained later on. A percentage of the sale ends up in the hands of the artist.\n\n> > > > > > > Stashed changes\n"
  },
  {
    "path": "projects/solballoons.md",
    "content": "---\nslug: \"solballoons\"\ndate: \"2021-11-07\"\ntitle: \"Space Balloons NFTs\"\nlogline: \"The Cute and collectibles SpaceBalloonsNFT on Solana\"\ncta: \"https://www.solballoons.com\"\nlogo: /img/solballoons.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.solballoons.com\ntwitter: https://twitter.com/SolBalloons\ndiscord: https://discord.gg/vrEafxGVCj\n---\n\nThe Balloons are living for many years in the Solana Planet and Can Travel in Space , They loves to Roam in the Galaxy. Each Balloon has different kind of abilities and powers. \nBut once they all went to Planet Nibiru and got captured by their Troops and Now they need Our help to come back to Solana...\n"
  },
  {
    "path": "projects/solberg.md",
    "content": "---\nslug: \"solberg\"\ndate: \"2021-09-04\"\ntitle: \"Solberg\"\nlogline: \"Solberg is a decentralized exchange that will support NFT marketplace and staking.\"\ncta: \"https://www.solbergtoken.com\"\nlogo: /img/Solberg.svg\ncategory: DEX, Exchange, nft\nStatus: live\nwebsite: https://www.solbergtoken.com\ntwitter: https://twitter.com/SolbergToken\ntelegram: https://t.me/solbergofficial\nstatus: live\n---\n\nThrough Solberg we decided to show all of the benefits of using Solana Blockchain. Our vision is to make a fully featured ecosystem for Staking and Trading that also supports NFT marketplace.\n"
  },
  {
    "path": "projects/solberry.md",
    "content": "---\nslug: \"SolBerry\"\ndate: \"2021-09-29\"\ntitle: \"SOLBERRY\"\nlogline: \"SOLBERRY is a DEX project which is built on Serum\"\ncta: \"https://solberry.tech/\"\nlogo: /img/solberry.png\ncategory: defi\nstatus: live\nwebsite: https://solberry.tech/\ntwitter: https://twitter.com/berrysol\ntelegram: https://t.me/Solberry_tg\n---\n\nSOLBERRY is a DEX project which is built on Solana and fork of SERUM DEX.\nOur aim is to build a SuperFast Dex for Solana Blockchain Community members .\nWe aim to implement Swaps and Leverage trading on our dex too.\nSolBerry project also working on NFT Token.\n"
  },
  {
    "path": "projects/solbet.md",
    "content": "---\nslug: solbet\ndate: \"2020-07-27\"\ntitle: SOLBET\nlogline: Trustless P2P speculation protocol.\ncta: \"https://solbet.org/\"\nlogo: /img/solbet.svg\ncategory: app\nstatus: building\ntwitter: \"https://twitter.com/solbet_official\"\n---\n\n<<<<<<< Updated upstream\nSOLBET seeks to facilitate P2P speculation and provide trustless on-chain escrow services for speculative ventures utilizing on-chain data, oracle services and private data node operators to verify outcomes for all parties involved.\n=======\nSOLBET seeks to facilitate P2P speculation and provide trustless on-chain escrow services for speculative ventures. Utilizing on-chain data, oracle services, and private data node operators, outcomes are verified for all parties involved.\n\n> > > > > > > Stashed changes\n\nDiscord: https://discord.gg/Fz4MyrPFJA\nTwitter: https://twitter.com/solbet_official\n"
  },
  {
    "path": "projects/solbongs.md",
    "content": "---\nslug: \"solbongs\"\ndate: \"2021-11-21\"\ntitle: \"Solbongs\"\nlogline: \"When the smoke settles, A collection of 1,100 Sol Bongs are ready to rip on the Solana market.\"\ncta: \"https://magiceden.io/marketplace/sol_bongs\"\nlogo: /img/solbongs.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.solbongs.com/\ntwitter: https://twitter.com/SolBongsNFT\ndiscord: https://discord.com/invite/JJMQfXaRer\n---\n\nWhen the smoke settles, A collection of 4,200 Sol Bongs will be ready to rip on the market. Sol Bongs is also a project funded and made by people who are high on life. It is a Weed-influenced NFT Project influenced by high minds.\n"
  },
  {
    "path": "projects/solbulls.md",
    "content": "---\nslug: \"solbulls\"\ndate: \"2021-10-10\"\ntitle: \"SolBulls Gang\"\nlogline: \"A gang of bulls living on #Solana. Breed and merge them to make yours more powerful, then earn money in our play2earn game.\"\ncta: \"https://solbulls.art/#/\"\nlogo: /img/solbulls.png\ncategory: nft\nstatus: live\nwebsite: https://solbulls.art/#/\ntwitter: https://twitter.com/SolanaBullsNFT\ndiscord: https://discord.com/invite/Quf39wHSjg\n---\n\nA gang of bulls living on #Solana. Breed and merge them to make yours more powerful, then earn money in our play2earn game.\n"
  },
  {
    "path": "projects/solcats.md",
    "content": "---\nslug: \"solcats\"\ndate: \"2021-11-13\"\ntitle: \"SOL CATS\"\nlogline: \"First meme + NFT Coin for Coolest Cat community built on  #solana  Fastest & eco-friendly Blockchain.\"\ncta: \"https://solcats.xyz/\"\nlogo: /img/solcats.jpg\ncategory: nft\nstatus: live\nwebsite: https://solcats.xyz/\ntwitter: https://twitter.com/solcat777\n---\n\nTHE FIRST DEFLATIONARY CAT MEME + NFT TOKEN BUILT ON SOLANA BLOCKCHAIN\n"
  },
  {
    "path": "projects/solcelebs.md",
    "content": "---\nslug: \"solcelebs\"\ndate: \"2021-10-31\"\ntitle: \"Solcelebs\"\nlogline: \"SolCelebs is a collection of 10,000 randomly generated NFT’s on Solana.\"\ncta: \"https://solcelebs.com/\"\nlogo: /img/solcelebs.png\ncategory: nft\nstatus: live\nwebsite: https://solcelebs.com/\ntwitter: https://twitter.com/SolCelebs\ntelegram: https://t.me/BNBPunks\ndiscord: https://discord.com/invite/SolCelebs\n---\n\nAll of our SolCelebs are generated using a defined rarity system and AI art generation. Buying a Sol Celeb allows you special access to all of our future projects we are working on with celebrities that include Juicy J, Soulja Boy, and more! Once the 10,000 are gone you will never be able to get your hands on one again at mint price. Don’t miss out on something that could be your next watch, car, or house.\n"
  },
  {
    "path": "projects/solcery.md",
    "content": "---\nslug: solcery\ndate: \"2020-08-11\"\ntitle: Solcery\nlogline: Solcery is a decentralized game hub on Solana, where users can create, publish, and play blockchain games all in one place.\ncta: \"https://solcery.xyz/\"\nlogo: /img/solcery.svg\ncategory: \"game, app, nft, metaplex\"\nstatus: building\ntwitter: \"https://twitter.com/SolceryGames\"\n---\n\nSolcery is a decentralized game hub on Solana, where you can create, publish, and play blockchain games. On-board any NFTs on Solana into the Solcery Ecosystem and make it a unique Metaplex-compatible game asset supported by all Solcery games.\n\n<b>Website</b>: https://solcery.xyz </br>\n<b>Gitbook</b>: https://solcery.gitbook.io/solcery </br>\n<b>Twitter</b>: https://twitter.com/SolceryGames </br>\n<b>Medium</b>: https://medium.com/@solcery </br>\n<b>Discord</b>: https://discord.gg/Yk9GEpPTA7 </br>\n<b>Github</b>: https://github.com/solcery </br>\n"
  },
  {
    "path": "projects/solchan.md",
    "content": "---\nslug: \"solchan\"\ndate: \"2021-10-09\"\ntitle: \"Sol Chan\"\nlogline: \"A collection of 2050 unique NFT waifus living on Solana blockchain.\"\ncta: \"https://solchan.io/\"\nlogo: /img/solchan.png\ncategory: nft\nstatus: live\nwebsite: https://solchan.io/\ntwitter: https://twitter.com/Solchan_NFTurproject\ndiscord: https://discord.com/invite/solchan\n---\n\nA collection of 2050 unique NFT waifu living on Solana blockchain.\n"
  },
  {
    "path": "projects/solchicks.md",
    "content": "---\nslug: \"solchicks\"\ndate: \"2021-09-06\"\ntitle: \"SolChicks\"\nlogline: \"SolChicks allows you to discover rare collectibles and be rewarded for playtime through a detailed, integrated ecosystem as one of the first NFT-driven gaming platforms built on the Solana blockchain.\"\ncta: \"https://solchicks.io/\"\nlogo: /img/solchicks.png\ncategory: nft, metaplex\nstatus: building\n---\n\nSolChicks allows users to discover rare collectibles and be rewarded for playtime through a detailed, integrated ecosystem, all while taking advantage of decentralised ownership. As one of the first NFT-driven gaming platforms built on the Solana blockchain, SolChicks combines the best of both worlds into one INTEGRATED gaming platform, so users can enjoy UNIQUE NFT collectibles, and use them as main characters in an exciting virtual world.\n"
  },
  {
    "path": "projects/solclout.md",
    "content": "---\nslug: \"solclout\"\ntitle: \"Solclout\"\ndate: 2021-07-25\nlogline: \"Social DeFi Ppatform built on Solana.\"\ncategory: defi\ncta: https://twitter.com/Solclout\nlogo: /img/solclout.svg\nstatus: live\nwebsite: https://solclout.com/\ntwitter: https://twitter.com/Solclout\ntelegram: https://t.me/solclout\n---\n\nSolClout is a platform to build a formidable community powered by Solana's high-performance blockchain. SolClout will allow for cryptocurrency projects and users to create and boot-strap clout-driven, sustainable communities.\n"
  },
  {
    "path": "projects/soldex.md",
    "content": "---\nslug: \"Soldex\"\ndate: \"2021-09-14\"\ntitle: \"Soldex\"\nlogline: \"The soldex.ai protocol powers the new wave of flexible financial markets by serving as a foundation layer for settlement, market making, custody, and liquidity.\"\ncta: \"https://soldex.ai/#\"\nlogo: /img/soldex.svg\ncategory: dex, defi, tools\nstatus: live\nwebsite: https://soldex.ai/#\ntwitter: https://twitter.com/soldexai\ntelegram: https://t.me/Soldexai\nmedium: https://soldex.medium.com/\nlinkedin: https://www.linkedin.com/company/soldex/\nfacebook: https://www.facebook.com/profile.php?id=100070128226771&show_switched_toast=true\n---\n\nSoldex looks to solve issues faced by order-matching centralized exchanges and trustless custody within current decentralized exchanges.\nThe soldex.ai protocol will power the new wave of flexible financial markets by serving as a foundation layer for settlement, market making, custody and liquidity. New waves of market makers will own unique algorithms, customize their trading strategy, and adjust their desired risk exposure, all while keeping custody of their funds.\n"
  },
  {
    "path": "projects/soldoge.md",
    "content": "---\nslug: \"soldoge\"\ndate: \"2021-11-09\"\ntitle: \"Project Title\"\nlogline: \"Solana's Best Show Next gen memecoin w/ attitude, powered by community.\"\ncta: \"https://www.soldoge.io/\"\nlogo: /img/soldoge.png\ncategory: nft\nstatus: live\nwebsite: https://www.soldoge.io/\ntwitter: https://twitter.com/SolanaDoge\ntelegram: https://t.co/F0uYTMinH6?amp=1\ndiscord: https://bit.ly/SDOGEDiscord\n---\n\nSolDoge is a next gen memecoin with attitude, running on Solana and powered by the community\n\n**NFT ROADMAP**\nTiered 'dog bone' NFT airdrops for SDOGE holders, granting future governance bonuses\nSDOGE buy/burns from secondary market royalties\nGamify and expand the SolDoge Strays metaverse\nAdditional generations of Strays\n"
  },
  {
    "path": "projects/soldreams.md",
    "content": "---\nslug: \"soldreams\"\ndate: \"2021-09-08\"\ntitle: \"SOLdreams\"\nlogline: \"NFT \"dreams\" dreamt by an neuronal net (artificial intelligence).\"\ncta: \"https://soldreams.com/\"\nlogo: /img/soldreams.png\ncategory: nft, metaplex\nstatus: live\nwebsite: https://soldreams.com/\ntwitter: https://twitter.com/SOLdreamsNFT\ndiscord: https://discord.gg/MY4DbEUrjk\n---\n\nSOLdreams are NFT pictures derived from \"dreams\" dreamt by an neuronal net (artificial intelligence). </br>\nPsychedelic, beautiful, and sometimes frightening.</br>\n\nSOLdreams are published in collections (EDITIONS) of 25 images each.</br>\nThey are very rare--there will only be 250 SOLdreams in total!</br>\nEDITION ONE starts with 25 beautiful deep dreams.\n\n<b>Website</b>: https://soldreams.com </br>\n<b>NFT Marketplace</b>: https://nft.soldreams.com </br>\n<b>Twitter</b>: https://twitter.com/SOLdreamsNFT </br>\n<b>Discord</b>: https://discord.gg/MY4DbEUrjk </br>\n"
  },
  {
    "path": "projects/soldwarfs.md",
    "content": "---\nslug: \"soldwarfs\"\ndate: \"2021-11-10\"\ntitle: \"Sol Dwarfs\"\nlogline: \"Epic Warriors of the #nft Solana World Cartoon collection of 5,000 Sol Dwarfs NFTs\"\ncta: \"https://soldwarfs.com/\"\nlogo: /img/soldwarfs.jpg\ncategory: nft\nstatus: building\nwebsite: https://soldwarfs.com/\ntwitter: https://twitter.com/SolDwarfs\ndiscord: https://discord.com/invite/m3K4uMAnzB\n---\n\nEpic Warriors of the #nft Solana World Cartoon collection of 5,000 Sol Dwarfs NFTs\n"
  },
  {
    "path": "projects/solend.md",
    "content": "---\nslug: \"solend\"\ndate: \"2021-07-12\"\ntitle: \"Solend\"\nlogline: \"Solend is the autonomous interest rate machine for lending and borrowing on Solana.\"\ncta: \"https://solend.fi\"\nlogo: /img/solend.svg\ncategory: defi, app\nstatus: live\nwebsite: https://solend.fi\ntwitter: https://twitter.com/solendprotocol\ndiscord: https://discord.gg/solend\n---\n\nSolend is an algorithmic, decentralized protocol for lending and borrowing. Solend allows anyone with an internet connection to earn interest on their assets and manage collateralized loans. Using Solend, users can earn interest on deposits and borrow assets on the fastest, most scalable lending protocol.\n"
  },
  {
    "path": "projects/soleon.md",
    "content": "---\nslug: \"soleon\"\ndate: \"2021-04-12\"\ntitle: \"Soleon\"\nlogline: \"Soleon is a fully-featured decentralized derivatives exchange with trustless cross-chain trading built on the Solana blockchain. Powered by @ProjectSerum.\"\ncta: \"https://soleon.io/\"\nlogo: /img/soleon.svg\ncategory: dex\nwebsite: https://soleon.io/\ntwitter: https://twitter.com/soleon_io\nstatus: live\n---\n\nA fully-featured decentralized derivatives exchange with trustless cross-chain trading built on the @Solana blockchain. Powered by @ProjectSerum.\n"
  },
  {
    "path": "projects/solephants.md",
    "content": "---\nslug: \"solephants\"\ndate: \"2021-10-01\"\ntitle: \"Solephants NFT\"\nlogline: \"Solephants are 7070 randomly generated cute elephant NFT project on the Solana blockchain featuring passive income.\"\ncta: \"https://solephants.io/\"\nlogo: /img/solephants.svg\ncategory: nft\nstatus: live\nwebsite: https://solephants.io/\ntwitter: https://twitter.com/solephants\ndiscord: https://discord.gg/UdpgvuMzBA\n---\n\nSolephants are 7070 randomly generated cute elephant NFT project on the Solana blockchain featuring passive income.\n\n- Solephants: 7070 unique generative NFTs with attributes and a rarity system.\n- Solephants project, which aims to create passive income for NFT owners through %100 Royalities profit sharing.\n- Hodl-to-earn reward program\n- Free Metaverse City Residence!\n- Free Pet NFTs!\n\n<b>Website</b>: https://solephants.io </br>\n<b>Twitter</b>: https://twitter.com/solephants </br>\n<b>Discord</b>: https://discord.gg/UdpgvuMzBA </br>\n"
  },
  {
    "path": "projects/solex.md",
    "content": "---\nslug: solex-finance\ndate: \"2021-10-20\"\ntitle: SOLEX Finance\nlogline: A DeFi Super-Network Built on Solana\ncta: \"https://solex.finance/\"\nlogo: /img/solex.png\ncategory: \"amm, dex, exchange, tools\"\nstatus: building\ntwitter: \"https://solex.finance/\"\n---\n\nOne decentralized and permissionless platform for you to swap, stake, and invest with the low-cost, high efficiency and ultimate experience.\n\n_Website_: https://solex.finance/\n\n_Twitter_: https://twitter.com/SolexFinance\n"
  },
  {
    "path": "projects/solflare.md",
    "content": "---\nslug: \"solflare\"\ndate: \"2020-04-03\"\ntitle: \"Solflare\"\nlogline: \"SolFlare.com is a community-created web wallet built specifically for Solana.\"\ncta: \"https://solflare.com\"\nlogo: /img/solflare.svg\ncategory: wallet, SPL\nwebsite: https://solflare.com/\ntwitter: https://twitter.com/solflare_wallet\ntelegram: http://t.me/SolFlare_Wallet\ndiscord: https://discord.com/invite/25ufaEWuMn\nstatus: live\n---\n\nSolFlare supports sending and receiving native SOL tokens as well as sending and receiving SPL Tokens\n(Solana's ERC-20 equivalent). SolFlare also supports staking of SOL tokens.\n\nAs a non-custodial wallet, private keys are not stored by the SolFlare site itself, but rather they are stored in an encrypted Keystore File or on a Ledger Nano S or X hardware wallet.\n"
  },
  {
    "path": "projects/solforest.md",
    "content": "---\nslug: \"solforest\"\ndate: \"2021-11-10\"\ntitle: \"Solomon's Forest\"\nlogline: \"Solomon's Forest is local based collectible card game.\"\ncta: \"https://solforest.games\"\ncategory: app, game, nft\nlogo: /img/solf.svg\nstatus: building\nwebsite: https://solforest.games/\ntwitter: https://twitter.com/solcastleNFT\ntelegram: https://t.me/solforest\ndiscord: https://discord.gg/saqtUYyp\n---\n\nOne day you get lost in Solomon's Forest. This place is full of devils that threaten you and devils that will help you. Save your allies and fight together in the castle.\n\n\"Solomon's Forest\" is local based collectible card game.\n"
  },
  {
    "path": "projects/solfractal.md",
    "content": "---\nslug: \"solfractal\"\ndate: \"2021-10-06\"\ntitle: \"Sol Fractal\"\nlogline: \"Bringing HD Quality Art to Solana. Make $ By Holding. 10,000 Individually Designed Fractals. \"\ncta: \"https://solfractals.art/\"\nlogo: /img/solfractal.png\ncategory: nft\nstatus: live\nwebsite: https://solfractals.art/\ntwitter: https://twitter.com/SolFractals\ndiscord: https://discord.gg/solfractals\n---\n\nBringing HD Quality Art to Solana. Make $ By Holding. 10,000 Individually Designed Fractals.\n"
  },
  {
    "path": "projects/solgalaxy.md",
    "content": "---\nslug: \"solgalaxy\"\ndate: \"2021-10-22\"\ntitle: \"SolGalaxy\"\nlogline: \"SolGalaxy is a one of a kind collection of 3333 algorithmically generated planets, stars, and other cosmic entities, scattered across the Solana blockchain\"\ncta: \"https://solgalaxy.io\"\nlogo: /img/solgalaxy.jpg\ncategory: nft\nstatus: building\nwebsite: https://solgalaxy.io\ntwitter: https://twitter.com/theSolGalaxy\ndiscord: https://discord.gg/NvYjj9uyaZ\n---\n\nSolGalaxy is a one of a kind collection of 3333 algorithmically generated planets, stars, and other cosmic entities, scattered across the Solana blockchain!\n"
  },
  {
    "path": "projects/solgeese.md",
    "content": "---\nslug: \"solgeese\"\ndate: \"2021-11-07\"\ntitle: \"SolGeese\"\nlogline: \"1000 silly Geese just waddling around the solana blockchain\"\ncta: \"https://twitter.com/SolGeese\"\nlogo: /img/solgeese.jpg\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/SolGeese\ndiscord: https://discord.com/invite/solgeese\n---\n\n1000 silly Geese just waddling around the solana blockchain\n"
  },
  {
    "path": "projects/solgis.md",
    "content": "---\nslug: \"solgis-breed-club\"\ndate: \"2021-09-04\"\ntitle: \"Solgis Breed Club\"\nlogline: \"Solgis Breed Club is a collection of the 10,000 cutest, randomly generated corgi NFTs on Solana.\"\ncta: \"https://twitter.com/Solgis_NFT\"\ncategory: nft\nlogo: /img/solgis.jpg\nstatus: live\nWebsite: https://solgisbreed.club\nTwitter: https://twitter.com/Solgis_NFT\nDiscord: https://discord.com/invite/HXfWH7WC7f\n---\n\nThe Solgis Breed Club is a community of the 10,000 cutest, randomly generated corgi NFTs on Solana.\n"
  },
  {
    "path": "projects/solguin.md",
    "content": "---\nslug: \"solguin\"\ndate: \"2021-11-18\"\ntitle: \"SolGuin NFT\"\nlogline: \"SolGuin brings you 9,999 cool Penguins that could breed into new ones, to the holders. Cool Penguins of the #Solana chain.\"\ncta: \"https://www.solguin.com/\"\nlogo: /img/solguin.png\ncategory: nft\nstatus: building\nwebsite: https://www.solguin.com/\ntwitter: https://twitter.com/nftsolguin\ntelegram: \ndiscord: https://discord.gg/q4krdHUZry\n---\n\nSolGuin brings you 9,999 cool Penguins that could breed into new ones, to the holders. Cool Penguins of the #Solana chain. \n"
  },
  {
    "path": "projects/solible.md",
    "content": "---\nslug: \"solible\"\ndate: \"2020-04-03\"\ntitle: \"Solible\"\nlogline: \"Solible is an NFT exchange built on Project Serum.\"\ncta: \"https://solible.com\"\nlogo: /img/solible.svg\ncategory: dex\nwebsite: https://solible.com/#/\ntwitter: https://twitter.com/bonfida\ntelegram: https://t.me/bonfidatg\ndiscord: https://discord.com/invite/B4xzATxQHC\nstatus: live\n---\n\nSolible was the first NFT exchange to launch on Solana and Serum in October, 2020. Together with the help of Bonfida, Solible is continuing to build out their platform to offer more features and ways to interact with SPL Token NFT's.\n"
  },
  {
    "path": "projects/solife.md",
    "content": "---\nslug: \"solife\"\ndate: \"2021-07-18\"\ntitle: \"SOLife\"\nlogline: \"SOLife is reward-based NFT strategy game on Solana blockchain.\"\ncta: https://solife.town\nlogo: /img/solife.svg\ncategory: nft\nstatus: live\nwebsite: https://solife.town\ntwitter: https://twitter.com/SOLifeNFT\ndiscord: https://discord.com/invite/5m4mFc4Sw7\n---\n\nSOLife is the first ever Solana-based NFT strategy game based inspired by The Game of Life - a board game that covers a lifetime starting from birth to death.\nUsers perform missions, choose directions, and ultimately draw out their lives by participating in the game with the baby cards they possess. SOLife is built on the Solana blockchain, providing funcitionality for the NFT, game goods, and rewards used in SOLife.\n"
  },
  {
    "path": "projects/solkitty.md",
    "content": "---\nslug: \"solkitty\"\ndate: \"2021-09-01\"\ntitle: \"1st NFT Social Network SolKitty\"\nlogline: \"SOLKITTY.IO is the first ever fully developed NFT Social Network launched on September 1, 2021.\"\ncta: \"https://solkitty.io/\"\nlogo: /img/solkitty.png\ncategory: nft,app,tools,game\nstatus: live\nwebsite: https://solkitty.io/\n---\n\nSOLKITTY.IO is the first ever fully developed NFT Social Network launched on September 1, 2021. Every post is a real genuine verified NFT powered by the Solana Blockchain. We provide a secure encrypted vault for NFT owners to protect their intellectual property from copyright infringement. Every NFT requires users to verify authenticity which is integrated through Adobe Sign. We offer a unique, fun, fast & secure way to mint NFTs, auction NFTs, collect NFTs, generate upto 1,000,000 color+attribute variations for your image & video NFTs, mint friendship tokens with your REAL friends, chat and much more! Through the power of Solana, minting NFTs are now extremely cheap, fast and secure. No need to pay very high gas fees. Please remember to keep it cool cats, no adult/inappropriate/nude NFTs allowed. Meow!\n"
  },
  {
    "path": "projects/solkittyandroid.md",
    "content": "---\r\nslug: \"solkittyandroid\"\r\ndate: \"2021-09-01\"\r\ntitle: \"Android NFT Social App SolKitty\"\r\nlogline: \"SOLKITTY.IO is the first ever fully developed NFT Social Network launched on September 1, 2021.\"\r\ncta: \"https://play.google.com/store/apps/details?id=com.solkitty.solkittyapp\"\r\nlogo: /img/solkittyandroid.png\r\ncategory: nft,app,tools,game\r\nstatus: live\r\nwebsite: https://solkitty.io/\r\n---\r\n\r\nSOLKITTY.IO is the first ever fully developed NFT Social Network launched on September 1, 2021. Every post is a real genuine verified NFT powered by the Solana Blockchain. We provide a secure encrypted vault for NFT owners to protect their intellectual property from copyright infringement. Every NFT requires users to verify authenticity which is integrated through Adobe Sign. We offer a unique, fun, fast & secure way to mint NFTs, auction NFTs, collect NFTs, generate upto 1,000,000 color+attribute variations for your image & video NFTs, mint friendship tokens with your REAL friends, chat and much more! Through the power of Solana, minting NFTs are now extremely cheap, fast and secure. No need to pay very high gas fees. Please remember to keep it cool cats, no adult/inappropriate/nude NFTs allowed. Meow!\r\n"
  },
  {
    "path": "projects/solkittyios.md",
    "content": "---\r\nslug: \"solkittyios\"\r\ndate: \"2021-09-01\"\r\ntitle: \"iOS NFT Social App SolKitty\"\r\nlogline: \"SOLKITTY.IO is the first ever fully developed NFT Social Network launched on September 1, 2021.\"\r\ncta: \"https://solkitty.io/ios-app\"\r\nlogo: /img/solkittyios.png\r\ncategory: nft,app,tools,game\r\nstatus: live\r\nwebsite: https://solkitty.io/ios-app\r\n---\r\n\r\nSOLKITTY.IO is the first ever fully developed NFT Social Network launched on September 1, 2021. Every post is a real genuine verified NFT powered by the Solana Blockchain. We provide a secure encrypted vault for NFT owners to protect their intellectual property from copyright infringement. Every NFT requires users to verify authenticity which is integrated through Adobe Sign. We offer a unique, fun, fast & secure way to mint NFTs, auction NFTs, collect NFTs, generate upto 1,000,000 color+attribute variations for your image & video NFTs, mint friendship tokens with your REAL friends, chat and much more! Through the power of Solana, minting NFTs are now extremely cheap, fast and secure. No need to pay very high gas fees. Please remember to keep it cool cats, no adult/inappropriate/nude NFTs allowed. Meow!\r\n"
  },
  {
    "path": "projects/sollamas.md",
    "content": "---\nslug: sollamas\ndate: \"2021-08-03\"\ntitle: Sollamas\nlogline: \"Algorithmically generated, rare, cute, and collectible NFT Llamas\"\ncta: \"https://sollamas.com/\"\nlogo: /img/sollamas.svg\ncategory: nft\nstatus: building\ntwitter: \"https://twitter.com/SollamasNFT\"\n---\n\n<<<<<<< Updated upstream\nNo two Sollamas will be the same. Each Sollama is generated with attributes based on rarity. From hats, glasses, necklaces, back blankets, beards to even the odd poop. With over 165 unique attributes, it gives a total mathematical combination of millions of unique Sollamas - but with only 10,000 being minted, some are more unique and rare than others.\n=======\nEach Sollama is individually generated with attributes based on rarity. From hats, glasses, necklaces, back blankets, beards, to even the odd poop. With over 165 unique attributes, millions of unique Sollamas can be generated. But with only 10,000 being minted, some are more unique and rare than others.\n\ndiscord: https://discord.gg/sollamasnft\n\ntwitter: https://twitter.com/SollamasNFT\n\n> > > > > > > Stashed changes\n"
  },
  {
    "path": "projects/sollemurs.md",
    "content": "---\nslug: \"sollemurs\"\ndate: \"2021-10-10\"\ntitle: \"Sollemurs\"\nlogline: \"Sollemurs are 10,000 algorithmically generated, unique Lemur characters originating from the island of Solasgar and now on the Solana blockchain. Ownership is demonstrable and all commercial rights belong to the holder.\"\ncta: \"https://sollemurs.com/#home\"\nlogo: /img/sollemurs.png\ncategory: nft\nstatus: live\nwebsite: https://sollemurs.com/\ntwitter: https://twitter.com/sollemursnft\ndiscord: https://discord.com/invite/yNVNfcUAsJ\n---\n\nSollemurs are 10,000 algorithmically generated, unique Lemur characters originating from the island of Solasgar and now on the Solana blockchain. Ownership is demonstrable and all commercial rights belong to the holder.\n"
  },
  {
    "path": "projects/sollock.md",
    "content": "---\nslug: \"sollock\"\ntitle: \"SOLLock\"\ndate: 2021-07-25\nlogline: \"The safest launch pad built on SOLANA\"\nwebsite: \"https://sollock.io/#\"\ncategory: infra\nlogo: /img/sollock.svg\nstatus: live\ncta: \"https://sollock.io/#\"\ntwitter: https://twitter.com/SOLLockOfficial\ntelegram: https://t.me/SOLLockAnn\n---\n\nSOLLock offers developers and investors a safe place to work, as well the prevention of immediate sell-offs and rug-pulls after token releases. The SOLLock Locker platform allows investors to lock up any SPL-based token instantly.\n"
  },
  {
    "path": "projects/solloto.md",
    "content": "---\nslug: \"sollotto\"\ndate: \"2021-07-05\"\ntitle: \"SolLotto\"\nlogline: \"A decentralized lottery platform enabling effective altruism\"\ncta: \"https://sollotto.io/\"\nlogo: /img/sollotto.jpg\ncategory: app, defi\nstatus: building\nwebsite: https://sollotto.io\ntwitter: https://twitter.com/TeamSolLotto\ntelegram: https://t.me/joinchat/Dj3oGbIKRlA5M2Fh\ndiscord: https://discord.gg/SolLotto\n---\n\nA decentralized lottery platform enabling effective altruism\n"
  },
  {
    "path": "projects/solmandalas.md",
    "content": "---\nslug: \"solmandalas\"\ndate: \"2021-11-18\"\ntitle: \"SolMandalas\"\nlogline: \"Real-time algorithmic art including its own code!\"\ncta: \"https://www.solmandalas.art/\"\nlogo: /img/solmandalas.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.solmandalas.art/\ntwitter: https://twitter.com/solmandalas\ndiscord: https://discord.gg/4z3zfYzEG8\n---\n\nSolMandalas is the first “live” algorithmically generated NFT artworks hosted on-chain on Solana & Arweave. \nEach NFT will point to its own live generative algorithm - so you can watch it forever, and fall into the depths of its calming animations! \n"
  },
  {
    "path": "projects/solminalers.md",
    "content": "---\nslug: \"solminalers\"\ndate: \"2021-11-07\"\ntitle: \"SolMinerals\"\nlogline: \"Mine, Mint, Win! 5,555 algorithmically generated Minerals. SolMinerals are NFT collectibles which you can acquire through mining\"\ncta: \"https://twitter.com/SolMinerals\"\nlogo: /img/solminerals.jpg\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/SolMinerals\n---\n\nMine, Mint, Win! 5,555 algorithmically generated Minerals. SolMinerals are NFT collectibles which you can acquire through mining\n"
  },
  {
    "path": "projects/solmoonfinance.md",
    "content": "---\nslug: \"solmoonfinance\"\ndate: \"2021-10-23\"\ntitle: \"Sol Moon\"\nlogline: \"Welcome to Solmoverse! Solana\"\ncta: \"https://linktr.ee/solmoonfinance\"\nlogo: /img/solmoon.png\ncategory: nft\nstatus: building\nwebsite: https://linktr.ee/solmoonfinance\ntwitter: https://twitter.com/solmoonfinance\n---\n\n\"Welcome to Solmoverse! Solana\n"
  },
  {
    "path": "projects/solmystery.md",
    "content": "---\nslug: \"solmystery\"\ndate: \"2021-11-07\"\ntitle: \"Solana Mystery Box\"\nlogline: \"Solana Mystery Box (SMBox) represents special items that will serve to merge with already existing NFTs on Solana.\"\ncta: \"https://mint.solmystery.io/\"\nlogo: /img/solmystery.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://solmystery.io/\ntwitter: https://twitter.com/mysterysolbox\ndiscord: https://discord.com/invite/smbox\n---\n\nThe enhanced items will serve the best for the holders of the NFTs. However, anyone (not only holders) can mint the items.\nDAO for Magical Stone hodlers, play to earn mechanism and pvp battle arena are schuduled for the next phase of the project.\n"
  },
  {
    "path": "projects/solnet.md",
    "content": "---\nslug: \"solnet\"\ndate: \"2021-07-29\"\ntitle: \"Solnet\"\nlogline: \"Solnet is Solana's .NET SDK to integrate with the .NET ecosystem.\"\ncta: \"https://github.com/bmresearch/Solnet\"\nlogo: /img/dotnet.svg\ncategory: sdk\nstatus: live\n---\n\nSolnet is Solana's .NET SDK to integrate with the .NET ecosystem.\nWhether developing for the web or desktop applications, Solnet can be used within .NET applications to integrate with Solana.\n"
  },
  {
    "path": "projects/solnftcg.md",
    "content": "---\nslug: \"solnftcg\"\ndate: \"2021-11-09\"\ntitle: \"Sol NFTCG\"\nlogline: \"Sol NFTCG is an NFT card game fully playable on the Solana blockchain.\"\ncta: \"https://solnftcg.com\"\nlogo: /img/solnftcg.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://solnftcg.com\ntwitter: https://twitter.com/SolanaNFTCG\ndiscord: https://discord.com/invite/hAxGqpU7hM\n---\n\nDo you believe in the\nSol of the Cards?\nBanish your opponent to the Sol Realm! Command powerful allies and cast devastating spells to claim victory. But beware - the loser forfeits a random card from their deck.\n\n"
  },
  {
    "path": "projects/solnftvault.md",
    "content": "---\r\nslug: \"solnftvault\"\r\ndate: \"2021-09-01\"\r\ntitle: \"NFT Encrypted Vault\"\r\nlogline: \"NFT Encrypted Vault Powered By Solana\"\r\ncta: \"https://solnftvault.io/\"\r\nlogo: /img/solnftvault.png\r\ncategory: nft,app,tools\r\nstatus: live\r\nwebsite: https://solnftvault.io/\r\n---\r\n\r\nNFT Encrypted Vault Powered By Solana & SolKitty.IO. Securely store your NFT files in an encrypted vault."
  },
  {
    "path": "projects/solong.md",
    "content": "---\nslug: \"solong\"\ndate: \"2020-04-03\"\ntitle: \"Solong\"\nlogline: \"Solong is a browser extension that allows users to interact with Solana or Serum applications.\"\ncta: \"https://solongwallet.com/\"\nlogo: /img/solong.svg\ncategory: wallet\nwebsite: https://solongwallet.com/\ntwitter: https://twitter.com/Solongwallet\nstatus: live\n---\n\n<<<<<<< Updated upstream\nSolong is a slick new extension browser that allows users to interact with any application on Solana or in the Serum ecosystem. It also includes the ability to mint new SPL tokens directly within the UI.\n=======\nSolong is a new extension browser that allows users to interact with any application on Solana or in the Serum ecosystem. It also includes the ability to mint new SPL tokens directly within the UI.\n\n> > > > > > > Stashed changes\n"
  },
  {
    "path": "projects/solove.md",
    "content": "---\nslug: \"solove\"\ndate: \"2021-10-12\"\ntitle: \"Solove\"\nlogline: \"The collection consists of 8,888 randomly generated SOLOVE locks. This is the final number, no more locks will be available.\"\ncta: \"https://solove.io/\"\nlogo: /img/solove.png\ncategory: nft\nstatus: building\nwebsite: https://solove.io/\ntwitter: https://twitter.com/SOLOVENFT\ndiscord: https://discord.com/invite/EDDmkjjus6\n---\n\nThe collection consists of 8,888 randomly generated SOLOVE locks. This is the final number, no more locks will be available.\n"
  },
  {
    "path": "projects/solpad.md",
    "content": "---\nslug: \"solpad\"\ndate: \"2021-05-11\"\ntitle: \"SolPAD\"\nlogline: \"SOLPAD is the first Multichain IDO platform for Solana\"\ncta: \"https://www.solpad.finance/\"\ncategory: app\nlogo: /img/solpad.svg\nwebsite: https://www.solpad.finance/\ntwitter: https://twitter.com/FinanceSolpad\ntelegram: https://t.me/solpadfinance_chat\nstatus: building\n---\n\nSOLPAD is the first Multichain IDO platform for Solana\nEnabling projects to raise capital on a decentralized platform, based on Solana.\n"
  },
  {
    "path": "projects/solpass.md",
    "content": "---\nslug: \"solpass\"\ndate: \"2021-10-14\"\ntitle: \"Solpass\"\nlogline: \"One of a kind pass to NFT privileges & community\"\ncta: \"https://solpass.io/\"\nlogo: /img/solpass.png\ncategory: nft\nstatus: live\nwebsite: https://solpass.io/\ntwitter: https://twitter.com/SolPassNFT\ndiscord: https://discord.com/invite/solpass\n---\n\nOne of a kind pass to NFT privileges & community\n"
  },
  {
    "path": "projects/solpayments.md",
    "content": "---\nslug: \"solpayments\"\ntitle: \"SolPayments\"\ndate: 2021-06-22\nlogline: \"SolPayments is a payment processing platform for cryptocurrencies which allows individuals and businesses of all sizes to accept payments online\"\ncta: \"https://twitter.com/SolPayments\"\ncategory: tools\nlogo: /img/solpayments.svg\nstatus: Building\n---\n\nSolPayments is built on top of the Solana blockchain.\n"
  },
  {
    "path": "projects/solpiggies.md",
    "content": "---\nslug: \"solpiggies\"\ndate: \"2021-11-13\"\ntitle: \"SOLPIGGIES & ZOOTOPIA METAVERSE\"\nlogline: \"5000 unique hand-drawn and automatically generated lovely piggies on Solana Blockchain!\"\ncta: \"https://solpiggies.com/\"\nlogo: /img/solpiggies.png\ncategory: nft\nstatus: building\nwebsite: https://solpiggies.com/\ntwitter: https://twitter.com/SolPiggiesNFT\ndiscord: https://discord.gg/5VszgmqegV\n---\n\nOur piggies are not just pictures, they have a whole story to tell you. We have the strange and mysterious Hannibal piggie, the vicious and alluring piggie-demon, \nthe bossy and magical Dr. PiggieStrenge and many other characters familiar to you. Our piggies are able to surprise you with unique set of attributes. Their emotions, \ndecorations and bodies combine with each other and create unique NFTs.\n"
  },
  {
    "path": "projects/solpops.md",
    "content": "---\nslug: \"solpops\"\ndate: \"2021-10-10\"\ntitle: \"Solpops\"\nlogline: \"The first NFT Candy Shop on Solana Verified on DigitalEyes and Magic Eden.\"\ncta: \"http://solpops.net/index.html\"\nlogo: /img/solpop.png\ncategory: nft\nstatus: live\nwebsite: http://solpops.net/\ntwitter: https://twitter.com/sol_pops\ndiscord: https://discord.com/invite/uUDtr6AHqX\n---\n\nThe first NFT Candy Shop on Solana Verified on DigitalEyes and Magic Eden.\n"
  },
  {
    "path": "projects/solpreme.md",
    "content": "---\nslug: \"solpreme\"\ndate: \"2021-11-09\"\ntitle: \"Solpreme\"\nlogline: \"Worlds first NFT Fashion Items\"\ncta: \"https://solpreme.io\"\nlogo: /img/solpreme.jpg\ncategory: nft\nstatus: building\nwebsite: https://solpreme.io\ntwitter: https://twitter.com/solpremeNFT\ndiscord: https://discord.gg/NAr4bhDR\n---\n\nSOLPREME COLLECTIBLES ARE THE WORLDS FIRST VIRTUAL CLOTHING & ITEM NFTS ON THE SOLANA BLOCKCHAIN. EACH COLLECTION IS LIMITED TO 148 NFTS.\n"
  },
  {
    "path": "projects/solpro.md",
    "content": "---\nslug: \"SolPro\"\ndate: \"2021-08-08\"\ntitle: \"SolPro\"\nlogline: \"SolPro——Solana Ecosystem Data Aggregation & Analytics Platform\"\ncta: \"https://www.solpro.ai\"\nwebsite: \"https://www.solpro.ai\"\ntwitter: \"https://twitter.com/SolProProject\"\ntelegram: \"https://t.me/solpro_project\"\ncategory: defi, tools\nstatus: live\nlogo: /img/solpro.svg\n---\n\nSolPro——Ecosystem Data Aggregation & Analytics Platform <br/>\nAnalyzes all of the projects within the Solana ecosystem to help you make better decisions. <br/>\n<br/>\nSolPro in Action <br/>\n——Full tracking of project performance <br/>\n——Analyze project user characteristics <br/>\n——Monitor and analyze top addresses <br/>\n——Latest project news aggregation <br/>\n"
  },
  {
    "path": "projects/solpugs.md",
    "content": "---\nslug: \"solpugs\"\ndate: \"2021-10-09\"\ntitle: \"Sol Pugs\"\nlogline: \"2205 Uniquely generated pugs, with over 70+ different attributes exclusively made for solana's blockchain & our upcoming NFT Gaming Marketplace!\"\ncta: \"https://solpugs.io/\"\nlogo: /img/solpugs.png\ncategory: nft, game\nstatus: live\nwebsite: https://solpugs.io/\ntwitter: https://twitter.com/solpugsnft\ndiscord: https://discord.com/invite/2tq9zG6WtV\n---\n\n2205 Uniquely generated pugs, with over 70+ different attributes exclusively made for solana's blockchain & our upcoming NFT Gaming Marketplace!\n"
  },
  {
    "path": "projects/solpunks.md",
    "content": "---\nslug: \"solpunks\"\ntitle: \"SolPunks\"\ndate: 2021-07-25\nlogline: \"Punks on Solana.\"\ncategory: nft\ncta: https://twitter.com/PunksOnSolana\nlogo: /img/solpunks.svg\nstatus: live\nwebsite: https://solpunks.com/\ntwitter: https://twitter.com/PunksOnSolana\ndiscord: https://discord.com/invite/CJ772sEkGH\n---\n\nSolPunks, Punks on Solana, NFTs on the Solana blockchain. Each of these 10,000 SolPunks has attributes that make them unique according to a defined rarity system.\n"
  },
  {
    "path": "projects/solraccoons.md",
    "content": "---\nslug: \"solraccoons\"\ndate: \"2021-10-14\"\ntitle: \"Raccoon Kingdom \"\nlogline: \"Raccoon Kingdom is a NFTs project on the Solana Blockchain.\"\ncta: \"https://www.solraccoons.io/\"\nlogo: /img/racoon.png\ncategory: nft\nstatus: live\nwebsite: https://www.solraccoons.io/\ntwitter: https://twitter.com/SolRaccoons\ndiscord: https://discord.com/invite/XYVkfy6EcR\n---\n\nRaccoon Kingdom is a NFTs project on the Solana Blockchain.\n"
  },
  {
    "path": "projects/solrazr.md",
    "content": "---\nslug: \"solrazr\"\ntitle: \"SolRazr\"\ndate: \"2021-05-28\"\nlogline: \"Helping projects raise capital and build fast on Solana.\"\ncta: https://twitter.com/Solrazr_App\ncategory: investmentfund\nlogo: /img/solrazr.svg\nstatus: live\n---\n\nSolRazr is building the launchpad on Solana and supports SPL tokens. We also leverage NFTs for token allocations.\n"
  },
  {
    "path": "projects/solrise finance.md",
    "content": "---\nslug: \"solrisefinance\"\ndate: \"2021-03-22\"\ntitle: \"Solrise Finance\"\nlogline: \"Solrise is a decentralized fund management and investment protocol on Solana.\"\ncta: https://solrise.finance/\nlogo: /img/solrise.png\ncategory: DeFi\nwebsite: https://solrise.finance/\ntwitter: https://twitter.com/SolriseFinance\ntelegram: https://t.me/solrisefinance\ndiscord: https://discord.com/invite/xNbGgMUJfU\nstatus: building\n---\n\nWe have built a decentralized fund management and investment protocol on Solana. On-chain asset swapping, price discovery, and oracles made this a natural idea to implement.\n"
  },
  {
    "path": "projects/solrock.md",
    "content": "---\nslug: \"solrock\"\ndate: \"2021-08-25\"\ntitle: \"SolRock NFT\"\nlogline: \"Pet Rocks On The Solana Blockchain. First and official generation SolRock NFTs on Solana.\"\ncta: \"https://solrock.space/\"\nlogo: /img/solrock.svg category: nft status: live\nwebsite: https://solrock.space/\ntwitter: https://twitter.com/NFTSolRock\ndiscord: https://t.co/cAP2SbIfGa?amp=1\n---\n\nPet Rocks On The Solana Blockchain. First and official generation SolRock NFTs\non Solana.\n"
  },
  {
    "path": "projects/solscan.md",
    "content": "---\nslug: \"solscan.io\"\ntitle: \"Solscan.io\"\ndate: 2021-06-22\nlogline: \"Solscan is a user-friendly and real-time update Scanning Tool for the Solana Ecosystem.\"\ncta: \"https://twitter.com/solscanofficial\"\ncategory: app, explorer\nlogo: /img/solscan.svg\nstatus: Live\nwebsite: https://solscan.io/\ntwitter: https://twitter.com/solscanofficial\ndiscord: https://discord.com/invite/H8FBqAR8bx\n---\n\nSolscan is a scanning tool that tracks all of Solana and Solana-related token transactions. Solscan provides users with all the information on SOL and Solana-based tokens.\n"
  },
  {
    "path": "projects/solseats.md",
    "content": "---\nslug: \"solseats\"\ndate: \"2021-11-18\"\ntitle: \"SolSeats\"\nlogline: \"First & Only Furniture Based SOL NFT\"\ncta: \"https://solseats.io/\"\nlogo: /img/solseats.jpg\ncategory: nft\nstatus: live\nwebsite: https://solseats.io/\ntwitter: https://twitter.com/SolSeats\ndiscord: https://discord.com/invite/D73BC2gF\n---\n\nFirst & Only Furniture Based SOL NFT\n"
  },
  {
    "path": "projects/solsheep.md",
    "content": "---\nslug: \"solsheep\"\ndate: \"2021-10-16\"\ntitle: \"SolSheep\"\nlogline: \"4 Kingdom DAOs, HODL-to-earn, 10,000 Sheeps living in the Solana world.\"\ncta: \"https://magiceden.io/marketplace/solsheep\"\nlogo: /img/solsheep.jpg\ncategory: nft\nstatus: live\nwebsite: https://solsheep.com/\ntwitter: https://twitter.com/sheep_sol\ndiscord: https://discord.com/invite/jSQYeQjFFY\n---\n\nSolSheep is a SocialFi NFT platform that allows social interactions in a DeFi + NFT world.\nEach SolSheep is a ticket to our HODL-to-earn mechanism and allows participation in the construction of four revolutionary SolSheep Kingdoms (think DAOs).\nAfter minting 10,000 SolSheeps, each Kingdom (easily identified by background colors of each SolSheep NFTs) will form a social hierarchy that is completely driven by SolSheep holders.\nFour kingdoms will be created based on background color of your SolSheep\n"
  },
  {
    "path": "projects/solsight.md",
    "content": "---\nslug: \"solsight\"\ndate: \"2021-10-23\"\ntitle: \"SolSight\"\nlogline: \"SolSight is a Solana historical balance explorer that allows users a new way of looking at market conditions through wallet movement.\"\ncta: \"https://solsight.io/\"\nlogo: /img/solsight.png\ncategory: app, explorer, tools\nstatus: live\nwebsite: https://solsight.io/\ntwitter: https://twitter.com/solsightio\ntelegram: https://t.me/joinchat/SI_8nt0H5KszZmVk\ndiscord: https://discord.com/invite/EP7Vh4Q5NR\n---\n\nSolSight is a product that gives new insight into how certain wallets command the market. By allowing users to see the change in balances in the top wallets through time our users can discover patterns in market movement which can be used to foresee future trends.\n\nOur dataset enables seeing the atomic state of the whole Solana blockchain at a certain point in time.\n\nThe product is currently in beta with benefits for early supporters.\n"
  },
  {
    "path": "projects/solskull.md",
    "content": "---\nslug: \"solskull\"\ndate: \"2021-08-30\"\ntitle: \"solskull\"\nlogline: \"SolSkull is a skull NFT built on the Solana blockchain.\"\ncta: \"https://solanaskull.com/\"\nlogo: /img/SolSkull.svg\ncategory: nft\nstatus: building\n---\n\nSolSkull is a skull NFT built on Solana.\n"
  },
  {
    "path": "projects/solslimes.md",
    "content": "---\nslug: \"solslimes\"\ndate: \"2021-11-11\"\ntitle: \"SolSlimes\"\nlogline: \"8,000 cute little slimes bouncing around on the #Solana blockchain. Working on a play-to-earn RPG.\"\ncta: \"https://solslimes.so/\"\nlogo: /img/solslimes.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://solslimes.so\ntwitter: https://twitter.com/SolSlimesNFT\ndiscord: https://discord.gg/solslimes\n---\n\nSolSlimes is a work in progress play-to-earn RPG powered by Solana.\nIt is inspired by classic JRPG games like Dragon Quest and MMOs like Ragnarok Online.\n"
  },
  {
    "path": "projects/solsnatch.md",
    "content": "---\nslug: \"solsnatcher\"\ndate: \"2021-10-10\"\ntitle: \"SolSnatchers\"\nlogline: \"SolSnatchers are 10,000 uniquely generated Grim Reapers existing in the underworld of Solana Blockchain.\"\ncta: \"https://solsnatchers.com/\"\nlogo: /img/solsnatch.png\ncategory: nft\nstatus: live\nwebsite: https://solsnatchers.com/\ntwitter: https://twitter.com/SolSnatchersNFT\ndiscord: https://discord.com/invite/Fm29g9JMnQ\n---\n\nSolSnatchers are 10,000 uniquely generated Grim Reapers existing in the underworld of Solana Blockchain.\n"
  },
  {
    "path": "projects/solsocks.md",
    "content": "---\nslug: \"solsocks\"\ndate: \"2021-11-05\"\ntitle: \"SolSocks\"\nlogline: \"500 socks deep in the solana metaverse.\"\ncta: \"https://www.solsocks.exchange\"\nlogo: /img/solsocks.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.solsocks.exchange\ntwitter: https://twitter.com/SocksOnSolana\ndiscord: https://discord.gg/PMqhkCdYxy\n---\n\n500 socks deep in the solana metaverse.\n"
  },
  {
    "path": "projects/solsouls.md",
    "content": "---\nslug: \"solsouls\"\ndate: \"2021-10-05\"\ntitle: \"Sol Souls\"\nlogline: \"10,000 uniquely generated, cute and collectible pixel art souls with proof of ownership stored on the Solana blockchain.\"\ncta: \"https://solsoulsnft.com/\"\nlogo: /img/solsouls.png\ncategory: nft\nstatus: live\nwebsite: https://solsoulsnft.com/\ntwitter: https://twitter.com/SolSoulsNFT\ndiscord: https://discord.gg/KUr9vvdQKy\n---\n\n10,000 uniquely generated, cute and collectible pixel art souls with proof of ownership stored on the Solana blockchain.\n"
  },
  {
    "path": "projects/solstake.md",
    "content": "---\nslug: \"solstake\"\ntitle: \"Solstake\"\ndate: 2021-07-25\nlogline: \"Solstake makes staking on Solana easier than ever.\"\ncategory: defi\ncta: https://twitter.com/solstakeio\nlogo: /img/solstake.svg\nstatus: live\nwebsite: https://solstake.io\ntwitter: https://twitter.com/solstakeio\ndiscord: https://discord.com/invite/W8MSvXtfjG\n---\n\nSolstake makes staking on Solana easier than ever, no matter the wallet in use. Stake SOL, manage accounts, and earn rewards all in a single easy-to-use app.\n"
  },
  {
    "path": "projects/solstar.md",
    "content": "---\nslug: solstar\ndate: \"2021-07-29\"\ntitle: SolStar\nlogline: Supercharge your community with crypto.\ncta: \"https://solstar.finance\"\nlogo: /img/solstar.svg\ncategory: \"app,amm,defi,spl,tools,wallet,dex,exchange\"\nstatus: building\ntwitter: \"https://twitter.com/SolStarFinance\"\n---\n\nSolStar is a platform for creating and organizing token-powered communities, powered by Solana.\n\nPlease reach out if you're interested in adding SolStar's SPL token Discord tip bot to your server.\n\n<b>Website</b>: https://solstar.finance</br>\n<b>Twitter</b>: https://twitter.com/SolStarFinance </br>\n<b>Discord</b>: https://discord.gg/cRUWB474Jb </br>\n<b>Medium</b>: https://solstar.medium.com </br>\n<b>Telegram</b>: https://t.me/SolStarFinance </br>\n"
  },
  {
    "path": "projects/solstarships.md",
    "content": "---\nslug: \"solstarships\"\ndate: \"2021-11-18\"\ntitle: \"SolStarships_NFT\"\nlogline: \"Welcome in space, let's discover the universe with a collection of 3D starships and let's fight for the sake of earth.solana\"\ncta: \"https://twitter.com/solstarships\"\nlogo: /img/solstarships.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/solstarships\ndiscord: img/solstarships.jpg\n---\n\nWelcome in space, let's discover the universe with a collection of 3D starships and let's fight for the sake of earth.solana\n"
  },
  {
    "path": "projects/solstarter.md",
    "content": "---\nslug: \"solstarter\"\ndate: \"2020-04-03\"\ntitle: \"Solstarter\"\nlogline: \"Solstarter is the first IDO platform for Solana, empowering launchpad projects to raise liquidity in a fair and decentralized manner.\"\ncta: \"https://solstarter.org/\"\nlogo: /img/solstarter.svg\ncategory: app\nwebsite: https://solstarter.org/\ntwitter: https://twitter.com/solstarterorg\ntelegram: https://t.me/solstarter\nstatus: building\n---\n\nSolstarter is the first IDO platform for Solana, empowering launchpad projects to raise liquidity in a fair and decentralized manner.\n"
  },
  {
    "path": "projects/solsteads.md",
    "content": "---\nslug: \"solsteads\"\ndate: \"2021-10-02\"\ntitle: \"Solsteads\"\nlogline: \"Each Solstead is one of 2,472 unique homes in the first ever digital real estate on the Solana blockchain.\"\ncta: \"https://solsteads.com/\"\nlogo: /img/solsteads.png\ncategory: nft\nstatus: live\nwebsite: https://solsteads.com/\ntwitter: https://twitter.com/SolsteadsNFT\ndiscord: https://discord.com/invite/2MXFGd5Ndm\n---\n\nEach Solstead is one of 2,472 unique homes in the first ever digital real estate on the Solana blockchain.\n"
  },
  {
    "path": "projects/solster finance.md",
    "content": "---\nslug: \"solsterfinance\"\ntitle: \"Solster Finance\"\ndate: 2021-06-22\nlogline: \"Solster Finance is an IDO launchpad built on Solana.\"\ncta: \"https://twitter.com/solster_finance\"\ncategory: amm, defi, dex, spl, exchange\nlogo: /img/solsterfinance.svg\nstatus: Building\nwebsite: https://solster.finance/\ntwitter: https://twitter.com/solster_finance\ntelegram: https://t.me/solster_finance_chat\n---\n\nSolster Finance is an ecosystem that helps investors diversify their decentralized finances. Solster IDO Launchpad is a decentralized fundraising platform built on the Solana blockchain with guaranteed token allocation to participants.\n\nWith the combined capability of the Solana blockchain, Serum, and Bonfida, Solster makes decentralized finances fast-paced, fair, and accessible. The Solana ecosystem will be used for staking, liquidity pools, lotteries, and swap and vesting contracts on the Solster platform.\n"
  },
  {
    "path": "projects/solstreet.md",
    "content": "---\nslug: solstreet\ndate: \"2021-07-16\"\ntitle: SolStreet\nlogline: SolStreet is a Solana-based, non-custodial asset management and investment   protocol allowing anyone to launch a decentralized hedge fund directly to market.\ncta: \"https://solstreet.finance/\"\nlogo: /img/solstreet.svg\ncategory: DeFi\ntwitter: \"https://twitter.com/SolStreetFin\"\nstatus: live\n---\n\nSolStreet is a Solana-based, non-custodial asset management and investment protocol that aims to solve inherent problems in traditional finance by allowing anyone to launch a decentralized fund directly to market, with negligible up-front or ongoing costs. All trades and assets remain verifiably secure and on-chain.\n\nAnybody can directly launch, or invest into, a decentralized, non-custodial fund. All trades and assets remain verifiably on-chain via the Serum DEX. The protocol facilitates subscriptions and redemptions to and from investment funds seamlessly and at near-zero cost.\n\nThe founding team’s expertise goes beyond just operating investment funds, and extends to making successful seed investments into groundbreaking disruptors in finance and tech.\n\n<b>Website</b>: https://solstreet.finance </br>\n<b>Discord</b>: https://discord.gg/vgBsD2Fckv </br>\n<b>Twitter</b>: https://twitter.com/SolStreetFi </br>\n<b>Telegram</b>: https://t.me/solstreet_finance </br>\n<b>Medium</b>: https://medium.com/solstreet-finance/solstreet-finance-39482c39681 </br>\n"
  },
  {
    "path": "projects/solsurvivor.md",
    "content": "---\nslug: \"solsurvivor\"\ndate: \"2020-04-03\"\ntitle: \"SOL Survivor\"\nlogline: \"SOL Survivor is a messaging app and fighting game built on the Solana testnet.\"\ncategory: app\nlogo: /img/solsurvivor.svg\nwebsite: https://solsurvivor.net/\ntwitter: https://twitter.com/sol__survivor\nstatus: building\ncta: \"https://nft.solsurvivor.net/#/\"\n---\n\nSOL Survivor is a messaging app and Mortal Kombat-style fighting game on the Solana testnet. The premise is simple: both users submit a hash of 4 choices: attack/block/counter/taunt. After both users have submitted their hashes, they can reveal (“unleash”) their choice. Once the first player has revealed their action, the second player will have 10 seconds to reveal their choice.\n"
  },
  {
    "path": "projects/soltato.md",
    "content": "---\nslug: \"soltato\"\ndate: \"2021-11-15\"\ntitle: \"Soltato NFT\"\nlogline: \"Just another ready to get up from comfy Solana couch\"\ncta: \"https://soltato.io/\"\nlogo: /img/soltato.png\ncategory: nft\nstatus: live\nwebsite: https://soltato.io/\ntwitter: https://twitter.com/Soltato_NFT\ntelegram: https://t.me/soltato\ndiscord: https://discord.com/invite/Wkgh9Fvy84\n---\n\n2,500 algorithmically generated, cute and collectible Potatoes with proof of ownership stored on the Solana blockchain.\n"
  },
  {
    "path": "projects/soltipai.md",
    "content": "---\nslug: \"soltipai\"\ndate: \"2021-10-01\"\ntitle: \"SolTip AI\"\nlogline: \"A bot that allows you to send tip through your favorite social media.\"\ncta: \"https://soltip.ai\"\nlogo: /img/soltipai.png\ncategory: tools\nstatus: live\nwebsite: https://soltip.ai/\ntwitter: https://twitter.com/soltip_ai\ndiscord: https://discord.com/invite/uWAn8y92Ba\n---\n\nSolTip AI is the fastest on-chain tip bot allows you to send tip through your favorite social media. Reduce the risk of delivery errors and make it easier for you to send tips by simply mentioning or replying to someone's message.\n\nSolTip AI has a very fast execution time. You just need less than a second to send a tip. We have its own RPC Node which can circumvent the rate limit.\n\nSolTip AI is on-chain based, so you can see your transaction activity directly on the explorer website. This will provide extra security so that the user can monitor what is happening.\n\nSolTip AI are now available on Discord. Long term, SolTip AI aims to build bots on Twitter and Telegram.\n"
  },
  {
    "path": "projects/soltomm.md",
    "content": "---\nslug: \"soltomm\"\ndate: \"2021-10-06\"\ntitle: \"Soltomm\"\nlogline: \"Soltomm is a unique NFT project featuring NFT lending/borrowing protocol and a collection of hand-drawn collectibles useable as collateral for loans.\"\ncta: \"https://soltomm.com/\"\nlogo: /img/soltomm.png\ncategory: nft, deFi\nstatus: building\nwebsite: https://soltomm.com/\ntwitter: https://twitter.com/soltomm\ndiscord: https://discord.gg/6wWRPByq56\n---\n\nSoltomm is a unique, innovative NFT project with the following features:\n\n- TOMMS: 10000 unique NFTs with unique attributes and a rarity system.\n- Initial Minters will forever be entitled to a reward pool.\n- Recursive airdrops for NFTs holders.\n- NFTs as Collateral for a loan with Soltomm Lending Defi protocol.\n- Initial raise of the NFT Floor price over 1.5x the minted price.\n- Zero fee on all sales made on Soltomm NFT Marketplace.\n- Liquidity for NFTs\n- Flexible lending and borrowing Protocol.\n- Cross-Chain support.\n\nMore details @ https://soltomm.com/\n"
  },
  {
    "path": "projects/soltreez.md",
    "content": "---\nslug: \"soltreez\"\ndate: \"2021-10-18\"\ntitle: \"SolTreez\"\nlogline: \"SolTreez are 10,000 unique trees on Solana with a mission to save the planet.\"\ncta: \"https://soltreez.com/\"\nlogo: /img/soltreez.png\ncategory: nft\nstatus: building\nwebsite: https://soltreez.com/\ntwitter: https://twitter.com/SolTreez\ndiscord: https://discord.com/invite/soltreez\n---\n\nSolTreez are 10,000 unique trees on Solana with a mission to save the planet.\n"
  },
  {
    "path": "projects/solturtle.md",
    "content": "---\nslug: \"solturtle\"\ndate: \"2021-11-09\"\ntitle: \"SolTurtle\"\nlogline: \"Turning NFT into a movie.4,444 unique #NFT generated on #Solana \"\ncta: \"https://www.solturtle.io/#/\"\nlogo: /img/solturtle.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.solturtle.io/#/\ntwitter: https://twitter.com/SolturtleNFT\ndiscord: https://discord.gg/yzCTnj7XD3\n---\n\n1. It's an hand made turtle inspired with many references from movies, mangas, series, cartoons etc...\n2. The SolTurtle is geared with 9 different types of assets : hats, eyes, mouth, skins, necklaces, backgrounds, armbands, shells, weapons.\n3. There will be 8 unique SolTurtle with exclusive assets ranked among the \"Mythic Turtles\".\n4. Thanks to our algorithm and the varity of assets, we can guaranty that your SolTurtle will be unique.\n"
  },
  {
    "path": "projects/solum.md",
    "content": "---\nslug: Solum\ndate: \"2021-10-13\"\ntitle: Solum\nlogline: Solum is Solana-based DeFi. Cheap and easy, Farming/Staking is only a few clicks behind.\ncta: \"https://solum.finance/\"\nlogo: /img/solum.png\ncategory: \"amm, dex, exchange, tools, nft\"\nstatus: building\ntwitter: \"https://twitter.com/SolumDeFi\"\n---\n\nSolum is envisioned to be a DeFi project with a whole array of staking/farming options. Built on Solana with its lightning-quick transactions and low gas fees, Solum makes DeFi experience completely effortless.\n<b>Website</b>: https://solum.finance/ </br>\n<b>Twitter</b>: https://twitter.com/SolumDeFi </br>\n"
  },
  {
    "path": "projects/solv protocol.md",
    "content": "---\nslug: \"solvprotocol\"\ntitle: \"Solv Protocol\"\ndate: 2021-07-25\nlogline: \"Solv Protocol is the decentralized infrastructure for creating and trading financial NFTs.\"\nwebsite: \"https://solv.finance/\"\ncta: \"https://solv.finance/\"\ncategory: defi\nlogo: /img/solv protocol.svg\nstatus: live\ntwitter: https://twitter.com/SolvProtocol/\ntelegram: https://t.me/SolvProtocol\n---\n\nSolv Protocol is the protocol for creating, managing, and trading Vouchers, a brand-new digital asset type. Vouchers are financial instruments, such as investment allocations, bonds, deposit receipts, or cover notes that are expressed in the form of NFTs. Vouchers are designed to optimize the implementation of financial instruments for DeFi.\n\nVouchers are marked with a brand-new token standard vNFT (short for Versatile Non-Fungible Token) for infrastructure sophistication. An enhancement of ERC721 simplifies the implementation and programming for advanced financial products.\n"
  },
  {
    "path": "projects/solvaders.md",
    "content": "---\nslug: \"solvaders\"\ndate: \"2021-10-08\"\ntitle: \"Solvaders\"\nlogline: \"An invasion of 333 unique and randomly generated Solvaders coming to earth.\nTake your chance to ally with them!\"\ncta: \"https://solvaders.io/\"\nlogo: /img/solvaders.png\ncategory: nft\nstatus: live\nwebsite: https://solvaders.io/\ntwitter: https://twitter.com/SolvadersNFT\n---\n\nAn invasion of 333 unique and randomly generated Solvaders coming to earth.\nTake your chance to ally with them!\n"
  },
  {
    "path": "projects/solventprotocol.md",
    "content": "---\nslug: \"solventprotocol\"\ndate: \"2021-11-07\"\ntitle: \"Solvent Protocol\"\nlogline: \"Bringing liquidity to NFTs on Solana.\"\ncta: \"https://www.solventprotocol.com\"\nlogo: /img/solventprotocol.jpg\ncategory: defi, nft\nstatus: building\nwebsite: https://www.solventprotocol.com\ntwitter: https://twitter.com/solventprotocol\n---\n\nHow it works?\n  \nStep 1\n\nDeposit your NFT assets into a relevant bucket with Solvent.\nStep 2\n\nReceive droplets in exchange for your NFTs.\nStep 3\n\nSwap the tokens on exchanges like Serum for instant liquidity.\n"
  },
  {
    "path": "projects/solview.md",
    "content": "---\nslug: \"solview\"\ndate: \"2021-11-15\"\ntitle: \"Solview\"\nlogline: \"Live streaming charts for #Solana tokens with the most comprehensive trading tools available for Solana Ecosystem\"\ncta: \"https://solview.app\"\nlogo: /img/solview.jpg\ncategory: amm, app, defi\nstatus: building\nwebsite: https://solview.app\ntwitter: https://twitter.com/Solviewapp\ntelegram: https://t.me/solviewofficial\n---\n\nSolview is a platform with its very own token (SOLV) that enables you to monitor trading Solana tokens in real-time and analyze a project during and after its launch. \nSolview will let you make informed decisions faster and get a full view of the token. Every metric you can imagine – every key decision-making metric, all in one view.\n\n* Invest in hottest Solana projects\n* Stake SOLV tokens\n* Swap on our platform\n* Manage your Solana wallet\n* Debit cards for everyday use\n* Upcoming NFT Marketplace\n"
  },
  {
    "path": "projects/solwolf.md",
    "content": "---\nslug: \"solwolf\"\ndate: \"2021-11-09\"\ntitle: \"SolWolf\"\nlogline: \"Building DEX on Solana Ecosystem | Memecoin | Community driven\"\ncta: \"https://twitter.com/Sol__Wolf\"\nlogo: /img/solwolf.jpg\ncategory: dex\nstatus: building\ntwitter: https://twitter.com/Sol__Wolf\n---\n\nBuilding DEX on Solana Ecosystem | Memecoin | Community driven\n"
  },
  {
    "path": "projects/solworms.md",
    "content": "---\nslug: \"solworms\"\ndate: \"2021-11-04\"\ntitle: \"SolWorms\"\nlogline: \"A collection of 10,000 NFTs that live on the Solana Blockchain.Home of $DIRT token\"\ncta: \"https://www.solworms.com\"\nlogo: /img/solworms.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.solworms.com\ntwitter: https://twitter.com/SolanaWorms\ndiscord: https://discord.gg/3HMs3Pqnxa\n---\n\n10,000 Silly, Sassy, Strange, Solana Worms\n\n10,000 total supply on the Solana blockchain\n\n1000 Worms will generate daily $DIRT tokens\n\n1000 Solworms given away for free\n\n190+ unique traits\n\n0.3 SOL + GAS\n"
  },
  {
    "path": "projects/solyard finance.md",
    "content": "---\nslug: \"solyardfinance\"\ntitle: \"Solyard Finance\"\ndate: 2021-06-22 logline: \"Solafarm Finance is a Yield Farming Aggregator Optimizer protocol on Solana.\"\ncta: \"https://solyard.finance/\"\ncategory: amm, defi, dex logo: /img/solyardfinance.svg status: Live\nwebsite: https://solyard.finance/\ntwitter: https://twitter.com/SolyardFinance\ndiscord: https://t.co/02RyvPFHxw?amp=1\ntelegram: https://t.co/iqV3V2POS5?amp=1\n---\n\nSolYard is a new Yield Farming Aggregator for the Solana Ecosystem. SolYard\nprovides yield enhancement strategies for your Solana crypto assets.\n"
  },
  {
    "path": "projects/solyard.md",
    "content": "---\nslug: Solyard\ndate: \"2020-04-30\"\ntitle: Solyard\nlogline: SolYard is a new Yield Farming Aggregator for the Solana Ecosystem. SolYard provides yield enhancement strategies for your Solana crypto assets.\ncta: \"https://Solyard.finance/\"\nlogo: /img/solyard.svg\ncategory: \"defi, amm\"\nstatus: live\ntwitter: \"https://twitter.com/SolyardFinance\"\n---\n\n- Solyard is a new Yield Farming Aggregator for the Solana Ecosystem. SolYard provides yield enhancement strategies for your Solana crypto assets.\n\n- Community comes first, and our FARM holders can participate governance by creating or approving proposals. We are launching our beta with the following core vaults, and more will be released in the future.\n\n- Solyard provides yield enhancement strategies for your Solana crypto assets.\n\n- We auto compound Solana SPL Crypto Assets, enhancing your yields in underlying vaults and liquidity pools in Raydium or Serum AMMs. We choose the best pool for every crypto asset, and enhance the yields using our smart contracts and auto compounding. Users do not need much DeFi knowledge, relying on us to optimize their yields for passive income.\n\n**Twitter**: https://twitter.com/SolyardFinance\n\n**Medium**: https://solyard.medium.com/\n\n**GitHub**: https://github.com/SolyardFinance\n\n**Discord**: https://discord.com/invite/GxRj6nrX26\n"
  },
  {
    "path": "projects/solyetis.md",
    "content": "---\nslug: \"solyetis\"\ndate: \"2021-10-06\"\ntitle: \"SolYetis\"\nlogline: \"8888 Yetis are coming down from the mountains to form the Sol Yetis. 75% of royalties go to holders and minters.\"\ncta: \"https://solyetis.io/\"\nlogo: /img/solyetis.png\ncategory: nft\nstatus: live\nwebsite: https://solyetis.io/\ntwitter: https://twitter.com/SolYetis\ndiscord: https://discord.gg/dxZvHtWpbb\n---\n\n8888 Yetis are coming down from the mountains to form the Sol Yetis. 75% of royalties go to holders and minters.\n"
  },
  {
    "path": "projects/sombra.md",
    "content": "---\nslug: \"sombra\"\ndate: \"2021-03-22\"\ntitle: \"Sombra\"\nlogline: \"Sombra plans to offer node hosting as a service, improving the developer experience by providing metrics and access control options.\"\ncta: https://sombra.link/\nlogo: /img/sombra.svg\ncategory: tools\n---\n\nSombra plans to offer node hosting as a service, improving the developer experience by providing metrics and access control options.\n"
  },
  {
    "path": "projects/somethingsfishy.md",
    "content": "---\nslug: \"somethingsfishy\"\ndate: \"2021-11-21\"\ntitle: \"Somethings Fishy\"\nlogline: \"8888 mobster fishes on the Solana blockchain. Become a boss and earn passive income.\"\ncta: \"https://mintafish.com/\"\nlogo: /img/somethingsfishy.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://somethingsfishy.art/\ntwitter: https://twitter.com/fishynftmob\ndiscord: https://discord.com/invite/zjtV3EjwUf\n---\n\nSomething’s Fishy is a collection of 8888 unique fishes living on the Solana blockchain. The fishes have over 95 traits across 8 different categories.\nYou will be able use the fishes in our upcoming play-to-earn mafia-inspired game. The more fishes you have, the more powerful you will be in the game. With great power comes great earning potential.\n"
  },
  {
    "path": "projects/somniumspacevr.md",
    "content": "---\nslug: \"somniumspacevr\"\ndate: \"2021-10-31\"\ntitle: \"Somnium Space VR\"\nlogline: \"We are an open, social & persistent VR platform built on blockchain. Build, import NFTs & instantly explore. Metaverse shaped entirely by players!\"\ncta: \"https://somniumspace.com\"\nlogo: /img/somniumspacevr.png\ncategory: nft\nstatus: live\nwebsite: https://somniumspace.com\ntwitter: https://twitter.com/SomniumSpace\ntelegram: https://t.me/somniumspace\ndiscord: https://discordapp.com/invite/somniumspace\n---\n\n “By tokenizing Somnium In-Game assets and Land Parcels, we are forever decoupling Somnium Space as a company from owning and operating database of parcels and all in- game items by giving this power to our users” \n \n* A Blockchain VR Metaverse \n* Security of Ownership \n* Authenticity of Origin \n* Tradable via decentralized Marketplaces \n* Built with proven & secure standards \n* Variety of creative tools: SDK, Builder, etc. \n* Cross-platform VR Client\n"
  },
  {
    "path": "projects/sonar.md",
    "content": "---\nslug: \"sonar\"\ntitle: \"Sonar\"\ndate: \"2021-05-28\"\nlogline: \"Sonar is a dashboard to track yield farming and liquidity pool performance on Solana blockchain.\"\ncta: https://twitter.com/Sonarwatch\ncategory: defi\nlogo: /img/sonar.svg\nstatus: building\nwebsite: https://sonar.watch/\ntwitter: https://twitter.com/Sonarwatch\ndiscord: https://discord.gg/gG4DvM2JGw\n---\n\nSonar scans the Solana blockchain and displays portfolio statistics from the Serum/Orca/Raydium pools and Raydium farms. You can now track Serum open orders and unsettled balances directly on the Sonar platform.\n"
  },
  {
    "path": "projects/souldogscity.md",
    "content": "---\nslug: \"souldogscity\"\ndate: \"2021-11-07\"\ntitle: \"Soul Dogs City\"\nlogline: \"A retro-inspired 3D Metaverse where Soul Dogs live in digital Dog Houses and generate income by earning $BONES \"\ncta: \"https://twitter.com/SoulDogsNFT\"\nlogo: /img/souldogscity.png\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/SoulDogsNFT\ndiscord: https://discord.com/invite/souldogs\n---\n\nA retro-inspired 3D Metaverse where Soul Dogs live in digital Dog Houses and generate income by earning $BONES \n"
  },
  {
    "path": "projects/souldragon.md",
    "content": "---\nslug: \"souldragons\"\ndate: \"2020-09-27\"\ntitle: \"Soul Dragons\"\nlogline: \"The Portal to the Dragon Kingdom is Open. Accept this opportunity for a chance to receive a Unique Soul Dragon Art NFT. Once the mint is complete, all 7777 Soul Dragons will Ascend & continue their Quest into the Metaverse to Enlighten Humanity.\"\ncta: \"https://souldragons.com/\"\nlogo: /img/souldragons.png\ncategory: nft\nstatus: live\nwebsite: https://souldragons.com/\ntwitter: https://twitter.com/SoulDragonsBay\ndiscord: https://t.co/z4mcoiO1zq?amp=1\n---\n\nThe Portal to the Dragon Kingdom is Open. Accept this opportunity for a chance to receive a Unique Soul Dragon Art NFT. Once the mint is complete, all 7777 Soul Dragons will Ascend & continue their Quest into the Metaverse to Enlighten Humanity.\n"
  },
  {
    "path": "projects/spacerexsquad.md",
    "content": "---\nslug: \"spacerexsquad\"\ndate: \"2021-11-05\"\ntitle: \"Space Rex NFT\"\nlogline: \"8888 completely unique art pieces, living on the Solana Blockchain\"\ncta: \"https://spacerexsquad.com\"\nlogo: /img/spacerexsquad.jpg\ncategory: nft\nstatus: building\nwebsite: https://spacerexsquad.com\ntwitter: https://twitter.com/spacerexsquad\ndiscord: https://discord.com/invite/VWYx4eJW93\n---\n\n**THE STORY\nOF THE SPACE REX SQUAD**\n\nThe Space Rex Squad is a collection of 8888 completely unique art pieces, living on the Solana Blockchain.\nWhat if 66 million years ago, the dinosaurs would not have been erased from the earth's surface? What if they survived asteroids, \nice ages and massive volcanic eruptions? Well, they would have obviously evolved into reptilian humanoids, conquering the world, and it's nature. \nBut as these dinosaurs survived the first wave of natural disasters, the next wave does not take long to come and this time, the dinosaurs won't survive just by luck. \nOverpopulation, climate change and scarcity of resources leaves the dinosaurs with no choice but to search for new places to live in space. Various groups of dinosaurs \nhave been sent on space missions to ensure their continued existence. The most promising and dangerous group of them: The Space Rex Squad, makes the beginning and goes \nto previously unexplored areas of the Milky Way with their mission to ensure the survival of their species.\n\n"
  },
  {
    "path": "projects/spacerhinos.md",
    "content": "---\nslug: \"spacerhinos\"\ndate: \"2021-10-17\"\ntitle: \"Space Rhinos\"\nlogline: \"10k SolanaNFTs Rhinos traveled from space into the Metaverse\"\ncta: \"https://www.spacerhinos.com/\"\nlogo: /img/rhinos.png\ncategory: nft\nstatus: building\nwebsite: https://www.spacerhinos.com/\ntwitter: https://twitter.com/Space__Rhinos\ndiscord: https://discord.com/invite/KUyMURpYpH\n---\n\n10k Solana NFTs Rhinos traveled from space into the Metaverse\n"
  },
  {
    "path": "projects/spacesockies.md",
    "content": "---\nslug: \"spacesockies\"\ndate: \"2021-11-12\"\ntitle: \"Space Sockies\"\nlogline: \"Space Sockie NFTs on a quest to save the other sockies from the dryer wormhole. Brought to you by the socksonsolana team\"\ncta: \"https://twitter.com/SpaceSockiesNFT\"\nlogo: /img/spacesockies.jpg\ncategory: nft\nstatus: building\ntwitter: https://twitter.com/SpaceSockiesNFT\ndiscord: https://discord.com/invite/solsocks\n---\n\nSpace Sockie NFTs on a quest to save the other sockies from the dryer wormhole. Brought to you by the socksonsolana team\n"
  },
  {
    "path": "projects/spiderswap.md",
    "content": "---\nslug: \"spiderswap\"\ntitle: \"SpiderSwap\"\ndate: 2021-06-22\nlogline: \"SpiderSwap is a GUI for Serum and staking SPW.\"\ncta: \"https://twitter.com/spider_swap\"\ncategory: dex\nlogo: /img/spiderswap.svg\nstatus: Building\n---\n\nSpiderSwap facilitates Serum liquidity and SPL token staking.\n"
  },
  {
    "path": "projects/splcards.md",
    "content": "---\nslug: \"splcards\"\ndate: \"2021-11-08\"\ntitle: \"SPL Cards\"\nlogline: \"Convenient and safe offline storage for the Solana ecosystem.\"\ncta: \"https://www.spl.cards\"\nlogo: /img/SPLcards.png\ncategory: app, wallet\nstatus: live\nwebsite: https://www.spl.cards\ntwitter: https://twitter.com/SPLcards\n---\n\nWe built gorgeous black metal cards for offline storage of Solana, SPL tokens and NFT’s. \nThese SPL Cards combine high convenience and high security in a stunning design.\n"
  },
  {
    "path": "projects/spltokenui.md",
    "content": "---\nslug: \"spl-ui\"\ndate: \"2020-04-03\"\ntitle: \"SPL Token UI\"\nlogline: \"SPL Token UI is a platform facilitating the creation and management of SPL tokens.\"\ncta: \"https://www.spl-token-ui.com/\"\nlogo: /img/spltokenui.svg\ncategory: spl, app\nstatus: building\n---\n\nSPL Token UI is an interface for creating and managing SPL Tokens.\n"
  },
  {
    "path": "projects/spookeletons.md",
    "content": "---\nslug: \"spookeletons\"\ndate: \"2021-10-31\"\ntitle: \"Spookeletons\"\nlogline: \"A collection of 6.666 Spookeletons that are all different, algorithmically generated, fierce, and collectible. On Solana.\"\ncta: \"https://magiceden.io/marketplace/spookeletons\"\nlogo: /img/spookeletons.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://www.spookeletons.com/\ntwitter: https://twitter.com/SpookeletonsNFT\ndiscord: https://discord.com/invite/spookeletons\n---\n\nFeature #1 Spookeletons Token\nThere will be the creation of a Solana SPL token for Spookeletons NFT. This will be denoted as $SPKL. This token will be used to make transactions that can be done with Spookeletons.\n\nFeature #2 Staking\nHolders of Spookeleton NFTs can stake them hourly to earn $SPKL tokens.\n\nFeature #3 Customized Names\nWith the introduction of the $SPKL token, holders of Spookeleton NFTs can give a personalized or customized name to their NFTs.\n\nFeature #4 SpookyDAO\nThe Spookeleton DAO will be created after the NFTs have been available for trading. This would be a community of Spookeleton holders that loves to share Alphas and opportunities. This community culminates into a decision-making organization for the advancement of Spookeletons as a whole!\n\nGame\nThe Spookeleton Game (P2E), a Play to Earn Game will be built on Solana.\n"
  },
  {
    "path": "projects/springboard.md",
    "content": "---\nslug: \"springboard\"\ndate: \"2021-08-11\"\ntitle: \"Springboard\"\nlogline: \"Springboard is the growth engine for crypto assets.\"\ncta: \"https://springboard.finance/\"\nlogo: /img/springboard.svg\ncategory: defi, governance\ntwitter: https://twitter.com/springboard_fi\nstatus: building\n---\n\nSpringboard is a DAO where users can invest into Daults (Decentralised vaults governed by the community) and customised risk strategies, generating DeFi yield. Daults leverage these strategies.\n"
  },
  {
    "path": "projects/squads.md",
    "content": "---\nslug: \"squads\"\ntitle: \"Squads\"\ndate: 2021-06-22\nlogline: \"One stop shop for all the DAO primitives.\"\ncta: \"https://sqds.io\"\ncategory: app\nlogo: /img/squads.svg\nstatus: Building\nwebsite: https://sqds.io\ntwitter: https://twitter.com/squads_dapp\ndiscord: https://t.co/sGN88VVBgy?amp=1\n---\n\nSquads will allow users to deploy DAOs on the Solana blockchain.\n"
  },
  {
    "path": "projects/squirrelz.md",
    "content": "---\nslug: \"squirrelz\"\ndate: \"2021-11-14\"\ntitle: \"Squirrelz\"\nlogline: \"NFT project - Squirrel Planet on Solana blockchain.\"\ncta: \"https://squirrelz.io/\"\nlogo: /img/squirrelz.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://squirrelz.io/\ntwitter: https://twitter.com/SquirrelzNFT\ndiscord: https://discord.com/invite/psWqpqEfBF\n---\n\nSquirrelz will come with a Play-to-Earn game, having the squirrelz Nft allows you earn different presures from the game.\n"
  },
  {
    "path": "projects/stacc.md",
    "content": "---\nslug: \"stacc\"\ndate: \"2021-03-10\"\ntitle: \"Strategic Tactical RPG\"\nlogline: \"Creative and/or Dangerous Blockchain Games.\"\ncta: \"https://stacc.art\"\nlogo: /img/stacc.png\ncategory: nft\nstatus: building\nwebsite: https://stacc.art/\ntwitter: https://twitter.com/STACCart\ndiscord: https://discord.gg/WUTFtgDhXd\n---\n\nCreative and/or Dangerous Blockchain Games. Mad dev helping redefine the standards that run Solana.\n"
  },
  {
    "path": "projects/stacked crypto.md",
    "content": "---\nslug: \"stackedcrypto\"\ntitle: \"Stacked Crypto\"\ndate: 2021-07-25\nlogline: \"Cryptocurrency investment platform. Instantly buy popular indices, manage your portfolio, and access trading algorithms.\"\nwebsite: \"https://stackedinvest.com/\"\ncategory: exchange\ncta: https://twitter.com/stackedcrypto\nlogo: /img/stacked crypto.svg\nstatus: live\ntwitter: https://twitter.com/stackedcrypto\n---\n\nStacked Crypto is a cryptocurrency investment platform. Manage assets and instantly invest in pre-built portfolios and strategies from leading hedge funds and traders. Stacked is the easiest way to run a trading strategy without any technical experience. An encrypted API sends instructions to exchange accounts to execute trades. Manage all of your crypto on one secure platform.\n"
  },
  {
    "path": "projects/stake and eggs.md",
    "content": "---\nslug: \"stakeandeggs\"\ndate: \"2021-03-22\"\ntitle: \"Stake and Eggs\"\nlogline: \"Stake and Eggs creates tokenized stake pool shares.\"\ncta: https://github.com/JPCreedon/StakeandEggs/\nlogo: /img/stake.svg\ncategory: DeFi\nstatus: building\n---\n\nLearn more about tokenized stake pool shares below!\n"
  },
  {
    "path": "projects/stakefi.md",
    "content": "---\nslug: \"stakefi\"\ndate: \"2020-04-03\"\ntitle: \"StakeFi\"\nlogline: \"StakeFi is a cross-chain staking derivatives protocol exploring an integration with Solana.\"\ncta: \"https://medium.com/ankr-network/introducing-stakefi-76673a9cadf\"\nlogo: /img/stakefi.svg\ncategory: defi\nstatus: building\n---\n\nStakeFi is a cross-chain staking derivatives protocol. We firmly believe that the future of DeFi is cross-chain, and are therefore exploring how to help stakes in different PoS networks communicate with each other.\n\nEventually with StakeFi, not only will users and investors enjoy a fixed income from network inflation, but they will gain access to liquidity and yield in a cross-chain environment.\n"
  },
  {
    "path": "projects/stakeviewapp.md",
    "content": "---\nslug: \"stakeviewapp\"\ndate: \"2020-06-29\"\ntitle: \"StakeView.app\"\nlogline: \"StakeView.app is a dashboard that ranks each Solana validator by true and accurate staking returns.\"\ncta: \"https://stakeview.app\"\nlogo: /img/stakeviewapp.svg\ncategory: explorer\nstatus: live\n---\n\nStakeView.app is a service that ranks Solana validators by returns. It gives up-to-date information on current and historical financial performance of Solana validators. This information can be used in determining which Solana validator or validators to delegate stake to.\n"
  },
  {
    "path": "projects/staratlas.md",
    "content": "---\nslug: \"staratlas\"\ndate: \"2020-04-03\"\ntitle: \"Star Atlas\"\nlogline: \"Star Atlas has selected Solana as the protocol to build out its blockchain-driven multi player metaverse.\"\ncta: \"https://staratlas.com\"\nlogo: /img/staratlas.svg\ncategory: app\nwebsite: https://staratlas.com/\ntwitter: https://twitter.com/staratlas\ntelegram: https://t.me/staratlasgame\ndiscord: https://discord.com/invite/cg9aWnsuCA\nstatus: building\n---\n\nStar Atlas is developing a unique gaming experience by combining blockchain mechanics with traditional game mechanics and is proud to announce that it has selected Solana as the protocol to build out its metaverse. Solana launched the first ever “web-scale blockchain” in 2019 making it the only blockchain solution capable of hosting applications with the computational bandwidth akin to the modern internet, presenting the capability to power decentralized versions of Nasdaq, Facebook, Twitter and all other existing blockchains. Star Atlas fully embraces the potential of decentralized self-sovereign ownership of assets permitted through the implementation of blockchain into asset ownership and NFT marketplaces.\n\n> “Star Atlas will provide the most powerful opportunity in human history for players to realize economic benefits through the extraction of in-game virtual earnings into real-world income. This integration optimizes Star Atlas’ long term goals by plugging into Solana’s thriving community, ecosystem, and best in class technology. The overall vision for Star Atlas is not possible on any other blockchain.” Michael Wagner, CFA - Star Atlas, CEO.\n"
  },
  {
    "path": "projects/starbase.md",
    "content": "---\nslug: \"starbase\"\ndate: \"2021-10-06\"\ntitle: \"Starbase\"\nlogline: \"10k generated NFT, STARBASE is a #Solana #NFT Astronauts Community.\"\ncta: \"https://solstarbase.ch/\"\nlogo: /img/starbase.png\ncategory: nft\nstatus: building\nwebsite: https://solstarbase.ch/\ntwitter: https://twitter.com/yourproject\ndiscord: https://discord.com/invite/solstarbase\n---\n\n10k generated NFT, STARBASE is a #Solana #NFT Astronauts Community.\n"
  },
  {
    "path": "projects/starbots.md",
    "content": "---\nslug: \"starbots\"\ndate: \"2021-10-25\"\ntitle: \"Star Bots\"\nlogline: \"Starbots is the first-ever Dog robot battle NFT game on the Solana Network. \"\ncta: \"https://starbots.net\"\nlogo: /img/starbots.png\ncategory: nft\nstatus: building\nwebsite: https://starbots.net/\ntwitter: https://twitter.com/Starbots_game\ntelegram: https://t.me/starbotsofficial\ndiscord: https://discord.gg/arCt64m2ms\n---\n\nStarbots is the first-ever robot battle NFT game where players gain GEAR tokens through strategically assembling their own robots,\nwinning battles, completing missions, and conquering new lands.\n"
  },
  {
    "path": "projects/stardust.md",
    "content": "---\nslug: \"stardust\"\ndate: \"2020-04-03\"\ntitle: \"Stardust\"\nlogline: \"Stardust is a blockchain SaaS offering that enables game publishers to easily create and implement blockchain assets into their games.\"\ncta: \"https://stardust.gg\"\nlogo: /img/stardust.svg\ncategory: app\nstatus: live\n---\n\nStardust helps indie game developers, regardless of their blockchain knowledge, create novel blockchain assets, and implement them in-game. Using our API, with less than ten lines of code, a game developer can instantly give players digital assets, marketplaces, payment methods, explorers and more.\n\nToday, over ten games are actively being built with Stardust, and practically none of them are crypto-native. These games are being built instead by passionate game developers that want to unlock the power of virtual assets in gaming. Our largest game is averaging between 50,000–70,000 monthly active users and has accrued 750,000 players in the last 12 months.\n"
  },
  {
    "path": "projects/station_twelve.md",
    "content": "---\nslug: \"stationtwelve\"\ndate: \"2021-11-13\"\ntitle: \"Station Twelve\"\nlogline: \"Station Twelve is a space-themed virtual real estate NFT collection, created by two women who design and develop for web 3.\"\ncta: \"https://station12.io/\"\nlogo: /img/station_twelve.jpeg\ncategory: metaplex, nft\nstatus: building\nwebsite: https://station12.io/\ntwitter: https://twitter.com/station12NFT\ndiscord: https://discord.gg/nVBne96wzD\n---\n\nStation Twelve is the solar system's premier galactic real estate manufacturer. Our virtual real estate... Space Pods... will be distributed across the 8 discovered planets throughout the Station Twelve solar system.\n"
  },
  {
    "path": "projects/steaking.md",
    "content": "---\nslug: \"steaking\"\ntitle: \"Steaking\"\ndate: \"2021-05-28\"\nlogline: \"Steaking enables users to stake Solana in a beginner-friendly way.\"\ncta: https://twitter.com/SteakingIO\ncategory: infra, app\nlogo: /img/steaking.svg\nstatus: Building\nwebsite: https://www.steaking.io/\ntwitter: https://twitter.com/SteakingIO\ntelegram: https://t.me/joinchat/jq2gBcb4R1A5Nzlh\ndiscord: https://discord.com/invite/AShZdXNd42\n---\n\nSteaking.io makes staking easy and secure. Staking is when users lock their funds to participate in maintaining the integrity of proof-of-stake (PoS) blockchains and is the easiest way to earn passive income with crypto. Users are then rewarded through block rewards and transaction fees.\n"
  },
  {
    "path": "projects/steakwallet.md",
    "content": "---\nslug: steakwallet\ndate: \"2021-08-17\"\ntitle: Steakwallet\nlogline: Steakwallet is multi-chain cryptocurrency staking wallet that supports SOL and many other SPL tokens.\ncta: \"https://steakwallet.fi\"\nlogo: /img/steakwallet.svg\ncategory: wallet\nstatus: live\ntwitter: \"https://twitter.com/steakwallet\"\n---\n\nSteakwallet launched with multi-currency support for three blockchains in mid-2021, adding support for SOL and staking by August.\n\nAfter collaborating with the Solana team, support for hundreds of SPL tokens is slated to land in September.\n\n<b>Website</b>: https://steakwallet.fi </br>\n<b>Twitter</b>: https://twitter.com/steakwallet </br>\n<b>Discord</b>: https://steakwallet.fi/chat </br>\n"
  },
  {
    "path": "projects/stealthex.md",
    "content": "---\nslug: 'stealthex'\ndate: '2020-11-10'\ntitle: 'StealthEX'\nlogline: 'Non-custodial cryptocurrency exchange supporting SOL for instant and limitless swaps'\ncta: 'https://stealthex.io/?to=sol'\nlogo: /img/stealthex.svg\ncategory: exchange\nstatus: live\nwebsite: https://stealthex.io\ntwitter: https://twitter.com/StealthEX_io\ntelegram: https://t.me/StealthEX_io\n---\n\nStealthEx is a non-custodial cryptocurrency exchange supporting SOL for instant and limitless swaps\n"
  },
  {
    "path": "projects/step finance.md",
    "content": "---\nslug: \"stepfinance\"\ndate: \"2021-03-22\"\ntitle: \"Step Finance\"\nlogline: \"STEP.finance is an automated trading strategies platform.\"\ncta: https://step.finance/\nlogo: /img/step.svg\ncategory: DeFi\nwebsite: https://step.finance/\ntwitter: https://twitter.com/StepFinance_\ntelegram: https://t.me/stepfinance\ndiscord: https://discord.com/invite/k5gMJUAEJe\nstatus: live\n---\n\nStep Finance is a portfolio visualisation platform which aggregates all LPs, tokens, farms, and positions that a user may have associated with their wallet and displays it on a seamless dashboard. Step aims to be the page which DeFi users have open perepetually, with all the functions and information they need to make informed decisions.\n"
  },
  {
    "path": "projects/stepn.md",
    "content": "---\nslug: \"stepn\"\ndate: \"2021-11-01\"\ntitle: \"StepN\"\nlogline: \"StepN is the world’s 1st #Move2Earn #NFT game on a mobile that reduces carbon emissions\"\ncta: \"https://stepn.xyz\"\nlogo: /img/stepn.jpg\ncategory: game\nstatus: building\nwebsite: https://stepn.xyz\ntwitter: https://twitter.com/Stepnofficial\ndiscord: https://discord.gg/stepn\n---\n\nSTEPN is a Game-Fi project, where players can make handsome tokens earnt though walking, jogging or running. The aftermath of COVID certainly changed how people perceive \ntheir personal health. Studies show that more people are doing exercise now, which gives STEPN the perfect market to scale.\nIn the game a player can burn game tokens to level up their sneakers, make more sneakers, upgrade in-game gems, pay for repairs, and pay for online marathon participation.\nAt max level, players can earn governance tokens, which enables the player to determine the distribution of the game’s profit.\n"
  },
  {
    "path": "projects/streamflow finance.md",
    "content": "---\nslug: \"streamflowfinance\"\ntitle: \"StreamFlow Finance\"\ndate: 2021-06-22\nlogline: \"Token vesting and payroll solution leveraging stream payments.\"\ncta: \"https://streamflow.finance\"\ncategory: defi, spl, tools, app\nlogo: /img/streamflowfinance.svg\nstatus: building\nWebsite: https://streamflow.finance\nTwitter: https://twitter.com/streamflow_fi\nTelegram: https://t.me/streamflow_fi\nDiscord: https://discord.gg/9yyr8UBZjr\n---\n\nStreamFlow Finance is a platform for streaming payments.\nWe build token vesting and payroll solutions for crypto teams, but also implement stream payments beyond these use cases.\nOur platform is open-source, trustless, verifiable, decentralized, and practically real-time.\n"
  },
  {
    "path": "projects/streaming fast.md",
    "content": "---\nslug: \"streamingfast\"\ndate: \"2020-04-03\"\ntitle: \"Streaming Fast\"\nlogline: \"Streaming Fast is implementing API solutions into Solana, allowing developers to build and maintain performant applications on top of the protocol with ease.\"\ncta: \"https://streamingfast.io/\"\nlogo: /img/streamingfast.svg\ncategory: app\nstatus: live\nwebsite: https://dfuse.io/\ntwitter: https://twitter.com/dfuseio\ntelegram: https://t.me/dfuseAPI\ndiscord: https://discord.com/invite/jZwqxJAvRs\n---\n\nStreaming Fast is a blockchain API company that makes it possible to stream real-time state updates, conduct lightning-fast searches, and provide irreversible transaction guarantees by using a simple API call. Our overarching goal is empowering developers to customize and deliver first-rate user experiences.\n"
  },
  {
    "path": "projects/sunny.md",
    "content": "---\nslug: \"Sunny\"\ndate: \"2021-03-01\"\ntitle: \"Sunny\"\nlogline: \"Sunny is Solana’s first composable DeFi yield aggregator.\"\ncta: \"https://app.sunny.ag/\"\nlogo: /img/sunny.svg\ncategory: defi, amm\nstatus: live\nWebsite: https://app.sunny.ag/\nTwitter: https://twitter.com/SunnyAggregator\nDiscord: https://discord.com/invite/dvXuvN9KeP\n---\n\nSunny is Solana’s first composable DeFi yield aggregator. The Sunny Aggregator protocol is a decentralized protocol governed by the Sunny DAO. “SUNNY” is a governance token and will be used to make decisions about the future of the protocol.\n"
  },
  {
    "path": "projects/superposition.md",
    "content": "---\nslug: \"superposition\"\ndate: \"2021-11-03\"\ntitle: \"Superposition\"\nlogline: \"Solana's First Decentralised Fixed Income Protocol\"\ncta: \"https://twitter.com/solanians_\"\nlogo: /img/superposition.jpg\ncategory: defi\nstatus: building\ntwitter: https://twitter.com/SuperpositionFi\n---\n\nSolana's First Decentralised Fixed Income Protocol\n"
  },
  {
    "path": "projects/surf.md",
    "content": "---\nslug: \"surf\"\ntitle: \"Surf\"\ndate: 2021-07-25\nlogline: \"Manage all of your Solana assets in one place.\"\nwebsite: \"https://sol.surf/\"\ncategory: app\ncta: https://twitter.com/SurfSolana/\nlogo: /img/surf.svg\nstatus: live\ntwitter: https://twitter.com/SurfSolana/\ndiscord: https://discord.gg/tHUyebe7ZE\n---\n\nA simple way to track active investments and open liabilities on Serum.\n"
  },
  {
    "path": "projects/surgingbulls.md",
    "content": "---\nslug: \"surgingbulls\"\ndate: \"2021-10-16\"\ntitle: \"Surging Bulls\"\nlogline: \"We are a collection of 2000 Surging bulls Unique NFT collectibles that will be surging on the Solana Blockchain.\"\ncta: \"https://www.magiceden.io/marketplace/surging_bulls\"\nlogo: /img/surgingbulls.jpg\ncategory: nft\nstatus: live\nwebsite: https://www.surgingbulls.com\ntwitter: https://twitter.com/surgingbulls\ntelegram: https://t.me/officalsurgingbull\ndiscord: https://discord.com/invite/XpNk5aPSPe\n---\n\nThe traits are programatically assigned but manually drawn so that there is a unique taste to each piece, giving an added value to the Surging Bulls Community.\nHolding an NFT will unlock special perks and events hosted to celebrate the Bullish Nature of our Community. Our hand drawn collection focuses on quality, with over 16 traits per bull. Holding an NFT will unlock royalties from the Merch and Gin brand that will be created to bring in revenues for the holders and DAO that will be used to also bootstrap new projects on Solana.\n"
  },
  {
    "path": "projects/sushi warrior.md",
    "content": "---\nslug: \"sushiwarrior\"\ndate: \"2021-03-22\"\ntitle: \"Sushi Warrior\"\nlogline: \"Sushi Warrior is a multiplayer RPG MMO on Solana that blends DeFi and NFTs.\"\ncta: http://github.com/openDive/sushi-warrior-app/\nlogo: /img/sushiwarrior.svg\ncategory: DeFi\nstatus: building\n---\n\nSushi Warrior is a multiplayer RPG MMO on Solana that blends DeFi and NFTs\n"
  },
  {
    "path": "projects/swapswop.md",
    "content": "---\nslug: \"swapswop\"\ndate: 2021-09-25\ntitle: \"SwapSwop\"\nlogline: \"SwapSwop is a platform for unimpeded and reliable crypto exchanges of more than 200 assets.\"\ncta: \"https://swapswop.io\"\nlogo: /img/swapswop.svg\ncategory: exchange\nstatus: Live\nwebsite: \"https://swapswop.io\"\ntwitter: \"https://twitter.com/swapswopio\"\ntelegram: \"https://t.me/swapswop_int\"\n---\n\nSwapSwop is a platform for unimpeded and reliable crypto exchanges of more than 200 assets.\n"
  },
  {
    "path": "projects/swapzone.md",
    "content": "---\nslug: \"swapzone\"\ntitle: \"Swapzone\"\ndate: \"2021-06-22\"\nlogline: \"Swapzone is an instant, non-custodial cryptocurrency exchange aggregator.\"\ncta: \"https://swapzone.io/\"\ncategory: exchange, tools\nlogo: /img/swapzone.svg\nstatus: Live\nwebsite: https://swapzone.io/\ntwitter: https://twitter.com/swapzoneio\n---\n\nInstant cryptocurrency exchange aggregator. Browse by rates, reviews, and exchange time to convert 500+ crypto assets instantly and at the best exchange rate.\n"
  },
  {
    "path": "projects/swipe.md",
    "content": "---\nslug: \"swipe\"\ndate: \"2020-04-03\"\ntitle: \"Swipe\"\nlogline: \"Swipe is a mobile digital wallet that supports the SOL token.\"\ncta: \"https://swipe.io/\"\ncategory: wallet\nlogo: /img/swipe.svg\nstatus: live\nwebsite: https://swipe.io/\ntwitter: https://twitter.com/Swipe\ntelegram: https://t.me/SwipeWallet\n---\n\nSwipe is a multi-asset digital wallet and Visa debit card platform designed to let users buy, sell, and spend cryptocurrencies. Swipe added support for the SOL token on September 7th, 2020.\n"
  },
  {
    "path": "projects/switchboard.md",
    "content": "---\nslug: \"switchboard\"\ntitle: \"Switchboard\"\ndate: \"2021-05-28\"\nlogline: \"Switchboard is a community-curated oracle network on Solana.\"\ncta: https://twitter.com/switchboardxyz\ncategory: oracle, infra, tools, spl, defi, app\nlogo: /img/switchboard.svg\nstatus: Live\nwebsite: https://switchboard.xyz/\ntwitter: https://twitter.com/switchboardxyz\ntelegram: https://t.me/switchboardxyz\ndiscord: https://discord.com/invite/sNeGymrabT\n---\n\nSwitchboard is a generalized, community-curated oracle network designed\nto incentivize bringing the long tail of data on-chain. Harnessing the\nwisdom of crowds, Switchboard appeals to a market of curators incentivized\nto organize unique off-chain data sources and publishers raring to decentralize\nquantitative data feeds.\n"
  },
  {
    "path": "projects/symmetry.md",
    "content": "---\nslug: \"symmetry\"\ndate: \"2021-05-28\"\ntitle: \"Symmetry\"\nlogline: \"Symmetry is a decentralized index protocol and portfolio management platform.\"\ncta: \"https://twitter.com/symmetry_fi\"\nlogo: /img/symmetry.svg\ncategory: defi\nstatus: building\nwebsite: https://symmetry.fi/\ntwitter: https://twitter.com/symmetry_fi\ntelegram: https://t.me/symmetry_fi\n---\n\nSymmetry makes it easy to create and invest in custom crypto indices. With Symmetry, users can create their own index, or purchase one created by someone else. Using Symmetry, create a basket of tokens, diversify crypto portfolios, manage risk, and earn passively.\n"
  },
  {
    "path": "projects/synchrony.md",
    "content": "---\nslug: \"synchrony\"\ndate: \"2021-09-25\"\ntitle: \"Synchrony\"\nlogline: \"Synchrony is an on-chain copy-trading and composable indexing protocol with a friendly Solana marketplace providing in-depth analytics. Users are able to research other users’ wallets and their strategies.\"\ncta: \"https://synchrony.fi\"\nlogo: /img/synchrony.svg\ncategory: defi\nwebsite: https://synchrony.fi/\ntwitter: https://twitter.com/SynchronyFi\ntelegram: https://t.me/SynchronyFi\ndiscord: https://discord.com/invite/jtknUQZ3wy\nstatus: building\n---\n\nSynchrony is an on-chain automated portfolio and asset management protocol featuring copy-trading and indices as well as wallet and protocol analytics. Synchrony achieves true trustlessness through the use of highly configurable indices. Users are able compose and index dynamic sets of tokens, liquidity pools, and strategies to create algorithmically optimized and automatically rebalancing pools or portfolios.\n\nCopy-trading leverages these indices, equiping users to define the parameters for which a copy-trade is considered a candidate for execution.\n\nSynchrony’s analytics and aggregation services provides data for users to make informed decisions with respect to index and copy-trade parameters and to their own on-chain behaviour. To facilitate a smooth user experience, Synchrony’s front-end features a marketplace that, along with the aforementioned suite of tools, enables users to interact with the entire Solana ecosystem from one location.\n"
  },
  {
    "path": "projects/syndica.md",
    "content": "---\nslug: \"syndica\"\ndate: \"2021-11-07\"\ntitle: \"Syndica\"\nlogline: \"Scalable infrastructure for Web 3.0 and Solana blockchain\"\ncta: \"https://syndica.io\"\nlogo: /img/syndica.jpg\ncategory: tools, app\nstatus: building\nwebsite: https://syndica.io\ntwitter: https://twitter.com/Syndica_io\n---\n\nThe next generation in Solana DApp infrastructure has arrived.\n\nWe've re-engineered RPC Node infrastructure from the ground up.\n\nGeo DNS\nNo matter where your user is, Geo DNS will provide superior connectivity to our RPC Nodes.\n\nMulti-Node Architecture\nLoad-balanced and fine-tuned RPC Nodes mean your DApp's performance never degrades.\n\nBest-in-Class Hardware\nRPC Nodes that run on hardware recommended by the Solana Foundation mean ultimate dependability.\n\nBespoke API Gateway\nA custom-built API gateway means sensational ping\n"
  },
  {
    "path": "projects/synergyland.md",
    "content": "---\nslug: \"synergyland\"\ndate: \"2021-10-05\"\ntitle: \"Synergy Land\"\nlogline: \"Synergy Land: ARPG Play-to-Earn game project powered by Solana.\"\ncta: \"https://synergyland.world/\"\ncategory: game, app\nlogo: /img/synergy.png\nstatus: building\nwebsite: https://synergyland.world/\ntwitter: https://twitter.com/SynergyLandGame\ntelegram:\ndiscord:\n---\n\nSynergy Land is a blockchain multiplayer ARPG game currently in development by Sygergy Studio set in a fantasy world divided into four ecosystems, each based on the following elements: earth, water, fire and cold.\n\nWe hope to contribute to the inception of blockchain gaming, and, for this reason, we are working hard to build a strong community to develop a community-centric game.\n"
  },
  {
    "path": "projects/synthetify.md",
    "content": "---\nslug: \"synthetify\"\ndate: \"2021-03-22\"\ntitle: \"Synthetify\"\nlogline: \"Synthetify is a decentralized protocol allowing for the creation and exchange of synthetic assets without the need of a counterparty.\"\ncta: https://github.com/Synthetify\nlogo: /img/synthetify.svg\ncategory: DeFi\nwebsite: https://synthetify.io/\ntwitter: https://twitter.com/synthetify\ntelegram: https://t.me/synthetify\ndiscord: https://discord.com/invite/EDrf437\nstatus: live\n---\n\nSynthetify is a simple decentralized protocol for synthetic assets build on Solana. Synthetic assets are backed by SNY tokens. Staking of SNY gives users participation in a global debt pool, which acts as counterparty for other users to trade against. Participants of the debt pool earn a share of fees generated by exchange of synthetic assets. Users can free up their staked tokens by burning synthetic tokens of value against users' current debt. Price of assets is determined by oracles that gather the price of specific assets and post it to Solana blockchain. Synthetic assets can be used in all other applications (Serum and Raydium, for example) or even migrated into other chains via bridge. Users of Synthetify exchange can expect fees near zero ($0.001) and close to instant confirmation time. Project is live here: https://synthetify.io/\n"
  },
  {
    "path": "projects/sypool.md",
    "content": "---\nslug: \"sypool\"\ntitle: \"Sypool\"\ndate: \"2021-07-25\"\nlogline: \"Sypool is a synthetic asset management protocol.\"\ncategory: defi\ncta: https://twitter.com/SYP_Protocol\nlogo: /img/sypool.svg\nstatus: live\nwebsite: http://sypool.io/\ntwitter: https://twitter.com/SYP_Protocol\ntelegram: https://t.me/sypool_protocol\ndiscord: https://discord.com/invite/TeHJZG7xaj\n---\n\nSypool is a synthetic asset management protocol which enables you to build, manage, and trade portfolio tokens easily. This idea was inspired by off-chain fund companies and packaged asset derivatives. On the one hand, we tokenize fund shares. On the other, this share token actually represents a small part of a multi-token pool, thus providing the scarce liquidity for the cryptocurrency market. Migrating finance off-chain to on-chain is a milestone for decentralized asset management.\n"
  },
  {
    "path": "projects/taot.md",
    "content": "---\nslug: \"taot\"\ndate: \"2021-11-19\"\ntitle: \"The Age of Trade\"\nlogline: \"The Age of Trade is an NFT based play-to-earn game on the Solana blockchain that allows users to generate profit by strategically trading goods while sailing through the city on their own ship.\"\ncta: \"https://theageoftrade.com\"\nlogo: /img/taot.svg\ncategory: nft, app\nstatus: live\nwebsite: https://theageoftrade.com\ntwitter: https://twitter.com/TheAgeOfTrade\ndiscord: https://discord.com/invite/9AerHHtgvW\n---\n\nThe Age of Trade is an NFT based play-to-earn game on the Solana blockchain that allows users to generate profit by strategically trading goods while sailing through the city on their own ship.\n"
  },
  {
    "path": "projects/temporal.md",
    "content": "---\nslug: \"temporal\"\ndate: \"2021-10-17\"\ntitle: \"Temporal\"\nlogline: \"NFT project on the Solana Blockchain\"\ncta: \"https://twitter.com/NftTemporal\"\nlogo: /img/temporal.png\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/NftTemporal\ndiscord: https://discord.com/invite/HApgz5Gud3\n---\n\nWe are what we are: a handful of dust, and although life remains a temporal enterprise, we recognize we have a mission\n"
  },
  {
    "path": "projects/terra.md",
    "content": "---\nslug: \"terra\"\ndate: \"2020-04-03\"\ntitle: \"Terra\"\nlogline: \"Terra is a blockchain protocol that uses fiat-pegged stablecoins to power price-stable global payments systems. Terra is building a high speed token bridge to Solana, enabling the hyperfast transaction of Terra stablecoins on all of Solana’s dApps.\"\ncta: \"https://medium.com/terra-money/terra-partners-with-solana-to-establish-low-latency-bridge-expanding-its-stablecoin-ecosystem-to-15883bdbb0fb\"\nlogo: /img/terra.svg\ncategory: stablecoin\nstatus: live\nwebsite: https://terra.money/\ntwitter: https://twitter.com/terra_money\ntelegram: https://t.me/terra_announcements\ndiscord: https://discord.com/invite/e29HWwC2Mz\n---\n\nTerra is a thriving payments network that is supported by a basket of stablecoins pegged to the world’s largest currencies. Today, these stablecoins largely flow through Terra’s flagship app, CHAI, which recently crossed 1M MAU and over $3M USD in daily transaction volume. Terra is backed by an impressive team and some of the world’s best investors.\n\nTogether, we’re building a new high-speed token bridge that facilitates the transfer of Terra stablecoins into Solana’s dApp ecosystem. Terra’s tokens will be the first stablecoins on the Solana network. By bringing stablecoins onto our network, we aim to dramatically expand the design space for developers, opening the door to novel applications that require price-stable payments. Similarly, and by the same token, we hope to support Terra’s expansion by creating a seamless gateway to our developer community.\n\nTo facilitate the bridge, we’re building two smart contracts (contract T and contract S respectively.) The bridge leverages a mint-and-burn model via these mirrored smart contracts. Users can mint specific Terra tokens on Solana by calling a burn transaction on contract T and then minting a transaction on contract S by submitting a proof to Solana that the Terra tokens were burned using contract T. This works in both directions, creating a two-way warp.\n"
  },
  {
    "path": "projects/terrestrialtrexclub.md",
    "content": "---\nslug: \"terrestrialtrexclub\"\ndate: \"2021-11-11\"\ntitle: \"Terrestrial T-Rex Club\"\nlogline: \"MISSION PROTOCOL.Hold the right combination of NFTs and be rewarded in real SOL.\"\ncta: \"https://www.terrestrialtrexclub.com/\"\nlogo: /img/terrestrialtrexclub.png\ncategory: nft\nstatus: building\nwebsite: https://www.terrestrialtrexclub.com/\ntwitter: https://twitter.com/Trex_Club\ndiscord: https://discord.gg/AbUshnpjQJ\n---\n\nThe world of the Terrestial T-Rex Club is facing a great danger of extinction. The earth is trembling, volcanos are erupting and the sun darkens day by day due to meteor showers. Because of their great diversity of talents, there is hope. Some dedicate their life's work to science, others build fortifications for defense and few endure the brutal heat to salvage parts. \nIn order to protect their world and existence, all T-Rexes need to work together as a team. A successful joint mission to stop the meteors will lead to great rewards from the Terrestial T-Rex Club.\n"
  },
  {
    "path": "projects/testguys.md",
    "content": "---\nslug: \"Test Guys\"\ndate: \"2021-09-17\"\ntitle: \"Test Guys\"\nlogline: \"Test Guys - 101 Guys x 7 Tests = 707 NFTs - Many Destined to Die - Only on Solana\"\ncta: \"https://testguys.fail/\"\nlogo: /img/testguys.png\ncategory: metaplex, nft\nstatus: building\nwebsite: https://testguys.fail/\ntwitter: https://twitter.com/Test_Guys\ntelegram: https://t.me/testguyslab\ndiscord: https://discord.gg/GeHgaH9SKK\n---\n\nTest Guys - 101 Guys x 7 Tests = 707 NFTs - Many Destined to Die - Only on Solana\"\n"
  },
  {
    "path": "projects/tether.md",
    "content": "---\nslug: \"tether\"\ndate: \"2021-11-11\"\ntitle: \"Tether\"\nlogline: \"USDt is live on the Solana blockchain: the largest stablecoin by market capitalization can be exchanged at an unprecedented high speed and low cost.\"\ncta: \"https://tether.to/tether-tokens-usdt-live-on-solana/\"\nlogo: /img/tether.svg\ncategory: stablecoin\nstatus: building\nwebsite: https://tether.to/\ntwitter: https://twitter.com/Tether_to/\ntelegram: https://t.me/OfficialTether\n---\n\nTether brought the USDt stablecoin to the Solana network on [March 11, 2021](https://tether.to/tether-tokens-usdt-live-on-solana/). The initiative was first announced on Tether’s website on [September 9th, 2020](https://tether.to/tether-usdt-to-launch-on-solana/).\n\nUSDt is the largest stablecoin by market capitalization and is one of the most widely used stablecoins in the DeFi sector. The top three most popular DeFi projects have USDt deposits totaling more than \\$863 million alone. Tether and USDt are critical pieces of infrastructure for any successful blockchain project and have been one of the most important elements for cross-platform settlement. This strategic initiative is a significant step for Solana and will be instrumental in advancing the network.\n\nSolana's \"high-speed\" blockchain will allow holders of USDT to transmit their tokens quickly and cheaply – \"often for less than $0.00001 per transaction\", according to [the announcement](https://www.coindesk.com/markets/2021/03/11/tether-stablecoin-expands-its-reach-to-another-blockchain/). Both are step-function improvements to the status quo. Speed and costs are two of the largest barriers holding back DeFi today. This new initiative will open up entirely new design space and use cases for stablecoins within the DeFi ecosystem.\n"
  },
  {
    "path": "projects/the graph.md",
    "content": "---\nslug: \"thegraph\"\ntitle: \"The Graph\"\ndate: \"2021-07-25\"\nlogline: \"APIs for a vibrant, decentralized future.\"\ncategory: infra\nlogo: /img/thegraph.svg\nstatus: live\ncta: \"https://thegraph.com/\"\nwebsite: https://thegraph.com/\ntwitter: https://twitter.com/graphprotocol\ntelegram: https://t.me/graphprotocol\ndiscord: https://discord.com/invite/vtvv7FP\n---\n\nThe Graph is an indexing protocol for querying networks (Ethereum and IPFS, for example). Now, it supports Binance Smart Chain (BSC) on its hosted service solution. The integration enables developers to build powerful applications on BSC using subgraphs (Open APIs).\n"
  },
  {
    "path": "projects/the0xgenerative.art.md",
    "content": "---\nslug: \"the0xgenerative.art\"\ndate: \"2021-09-12\"\ntitle: \"The 0xGenerative Art\"\nlogline: \"The 0xGenerative Art is the next generation of generative art built on Solana.\"\ncta: https://the0xgenerative.art/\nlogo: /img/the0xgenerative.art.svg\ncategory: metaplex, nft\nwebsite: https://the0xgenerative.art/\ntwitter: https://twitter.com/0xgenerativeart\ndiscord: https://discord.com/invite/MHC5mZynxs\n---\n\nThe 0xGenerative Art is the next generation of generative art built on Solana.\n"
  },
  {
    "path": "projects/thebull.md",
    "content": "---\nslug: \"thebull\"\ndate: \"2021-11-11\"\ntitle: \"theBULL\"\nlogline: \"theBULL NFT collection of 6765 unique algo-generated bulls celebrating the cryptoverse | built on solana\"\ncta: \"https://twitter.com/theBULL_NFT\"\nlogo: /img/thebull.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/theBULL_NFT\ndiscord: https://discord.com/invite/Bjnw4U5hjk\n---\n\ntheBULL NFT collection of 6765 unique algo-generated bulls celebrating the cryptoverse | built on solana\n"
  },
  {
    "path": "projects/thebullherd.md",
    "content": "---\nslug: \"thebullherd\"\ndate: \"2021-10-10\"\ntitle: \"The Bull Herd\"\nlogline: \"The Bull Herd is a rambunctious group of 10,000 bovine ( 50% male & 50% female) who spend their time grazing (causing havoc) in the metaverse.\"\ncta: \"https://thebullherd.com/\"\nlogo: /img/bullherd.png\ncategory: nft\nstatus: live\nwebsite: https://thebullherd.com/\ntwitter: https://twitter.com/TheBullHerdNFT\ndiscord: https://discord.com/invite/h62hCTRktY\n---\n\nThe Bull Herd is a rambunctious group of 10,000 bovine ( 50% male & 50% female) who spend their time grazing (causing havoc) in the metaverse.\n"
  },
  {
    "path": "projects/theclowntown.md",
    "content": "---\nslug: \"theclowntown\"\ndate: \"2021-11-15\"\ntitle: \"The Clown Town NFT Project\"\nlogline: \"The Clown Town NFT is a place for the the outcasts connected by their madness. 1000 Clows on #Solana blockchain of course.\"\ncta: \"https://theclowntown.com/\"\nlogo: /img/theclowntown.jpg\ncategory: nft\nstatus: live\nwebsite: https://theclowntown.com/\ntwitter: https://twitter.com/TheClownTownNFT\ndiscord: https://discord.com/invite/XJhpD2pkex\n---\n\nThe Clown Town NFT is a place for the the outcasts connected by their madness. 1000 Clows on #Solana blockchain of course.\n"
  },
  {
    "path": "projects/thedapperducks.md",
    "content": "---\nslug: \"dapperducks\"\ndate: \"2021-11-14\"\ntitle: \"Dapper Ducks\"\nlogline: \"4,444Top DAPPER DucksTop Migrating to the Solana ponds soon! Be DapperGem Be a Quack Get in the POND With Us\"\ncta: \"https://thedapperducks.com/\"\nlogo: /img/thedapperducks.png\ncategory: nft\nstatus: building\nwebsite: https://thedapperducks.com/\ntwitter: https://twitter.com/Dapper_DucksNFT\ndiscord: https://discord.gg/AbByr3E5s2\n---\n\n4,444Top DAPPER DucksTop Migrating to the Solana ponds soon! Be DapperGem Be a Quack Get in the POND With Us\n"
  },
  {
    "path": "projects/thehellions.md",
    "content": "---\nslug: \"thehellions\"\ndate: \"2021-10-18\"\ntitle: \"The Hellions\"\nlogline: \"The Hellions are a group of 6,666 demonspawn living a life of mischief, chaos, and disarray.\"\ncta: \"https://the-hellions.com/\"\nlogo: /img/hellions.png\ncategory: nft\nstatus: live\nwebsite: https://the-hellions.com/\ntwitter: https://twitter.com/theHellionsNFT\ndiscord: https://discord.com/invite/thehellions\n---\n\nThe Hellions are a group of 6,666 demonspawn living a life of mischief, chaos, and disarray.\n"
  },
  {
    "path": "projects/thehypnowolf.md",
    "content": "---\nslug: \"thehypnowolf\"\ndate: \"2021-11-07\"\ntitle: \"The Hypno Wolf\"\nlogline: \"6666 deflationary wolves living on #Solana 0.25 mint.Digitally adopted wolves airdropped to holders.\"\ncta: \"https://www.thehypnowolf.com\"\nlogo: /img/thehypnowolf.jpg\ncategory: nft\nstatus: building\nwebsite: https://www.thehypnowolf.com\ntwitter: https://twitter.com/TheHypnoWolf\ndiscord: https://discord.gg/CHrwwMa6hW\n---\n\n6666 deflationary wolves living on #Solana 0.25 mint.Digitally adopted wolves airdropped to holders.\n"
  },
  {
    "path": "projects/theslowpatrol.md",
    "content": "---\nslug: \"theslowpatrol\"\ndate: \"2021-10-02\"\ntitle: \"The Slow Patrol\"\nlogline: \"TheSlowPatrol are uniquely and programmatically generated NFTs from over 165 different traits, including headwear, clothing, hand accessories, mouth attributes, and more.\"\ncta: \"https://www.theslowpatrol.com/\"\nlogo: /img/slowpatrol.png\ncategory: nft\nstatus: live\nwebsite: https://www.theslowpatrol.com/\ntwitter: https://twitter.com/TheSlowPatrol\ndiscord: https://t.co/1ur7Mu7sWm?amp=1\n---\n\nTheSlowPatrol are uniquely and programmatically generated NFTs from over 165 different traits, including headwear, clothing, hand accessories, mouth attributes, and more.\n"
  },
  {
    "path": "projects/thesneaks.md",
    "content": "---\nslug: \"thesneaks\"\ndate: \"2021-10-03\"\ntitle: \"The Sneaks\"\nlogline: \"The Sneaks are 10,000 generative NFTs for free built on Solana\"\ncta: \"https://www.sneks.gg/\"\nlogo: /img/thesneaks.png\ncategory: nft\nstatus: live\nwebsite: https://www.sneks.gg/\ntwitter: https://twitter.com/solsneks\ndiscord: https://discord.com/invite/solsneks\n---\n\nThe Sneaks are 10,000 generative NFTs for free built on Solana\n"
  },
  {
    "path": "projects/thetower.md",
    "content": "---\nslug: \"thetower\"\ndate: \"2021-10-27\"\ntitle: \"The Tower\"\nlogline: \"The Residences of Solana. Create an interactive NFT Gallery. Share Residences\"\ncta: \"https://towerdao.com\"\nlogo: /img/Thetower.jpg\ncategory: nft\nstatus: live\nwebsite: https://towerdao.com\ntwitter: https://twitter.com/TowerDAO\ndiscord: https://discord.gg/towerdao\n---\n\nThe Tower is a futuristic skyscraper in the metaverse of Solana. 10k Residences were minted!\n\nOur goal is simple, we want to create a place that everyone in the Solana ecosystem can join,\nwhile maintaining a project that grows in size and utility for years to come.\n\nOur art will be perfect for your Twitter Header and to show off your Residence and NFT collection with our gallery. Soon, \nyou'll also be able to share your residence with roommates to build your own community within the Tower!\n"
  },
  {
    "path": "projects/thugbirdz.md",
    "content": "---\nslug: \"thugbirdz\"\ndate: \"2021-10-24\"\ntitle: \"Thug Birdz\"\nlogline: \"A collection of 3,333 uniquely generated, tough and collectible thugbirdz \"\ncta: \"https://twitter.com/thugbirdz\"\nlogo: /img/thugbirdz.jpg\ncategory: nft\nstatus: live\ntwitter: https://twitter.com/thugbirdz\ndiscord: https://discord.com/invite/thugdao\n---\n\nA collection of 3,333 uniquely generated, tough and collectible thugbirdz\n"
  },
  {
    "path": "projects/tiexo.md",
    "content": "---\nslug: \"tiexo\"\ndate: \"2021-11-09\"\ntitle: \"TIEXO Marketplace\"\nlogline: \"10,000 Cryptonauts NFTs launching on TIEXO Marketplace.Free Artists Toolbox that creates NFT collections\"\ncta: \"https://tiexo.com\"\nlogo: /img/tiexo.jpg\ncategory: nft\nstatus: building\nwebsite: https://tiexo.com\ntwitter: https://twitter.com/tiexohq\ntelegram: https://t.me/tiexohq\ndiscord: https://discord.com/invite/gzymHtPkv6\n---\n\n10,000 Cryptonauts NFTs launching on TIEXO Marketplace.Free Artists Toolbox that creates NFT collections\n"
  },
  {
    "path": "projects/timekeepersnft.md",
    "content": "---\nslug: \"timekeepers\"\ndate: \"2021-11-10\"\ntitle: \"Time Keepers\"\nlogline: \"Collection of 7200 NFTs living on the Solana blockchain\"\ncta: \"https://timekeepersnft.com\"\nlogo: /img/timekeepersnft.png\ncategory: nft\nstatus: building\nwebsite: https://timekeepersnft.com\ntwitter: https://twitter.com/TimeKeepersSOL\ndiscord: https://discord.com/invite/HxcRRQQUcN\n---\n\nThe Time Keepers is an exclusive collection of 7,200 NFTs on the Solana blockchain where holders can own an hour and minute of the day.\n\nHolders will benefit from the collaboration laboratory, the property exchange marketplace, the Time Keeper token airdrop, community fund management, and the distribution of \nsecondary sale royalties.\n\nThe Time Keepers will be a timeless collection to provide long-term value to all owners. 1,000 are available in the presale, with the remaining 6,200 being sold in the public sale.\n"
  },
  {
    "path": "projects/titananalytics.md",
    "content": "---\nslug: \"titananalytics\"\ndate: \"2021-11-01\"\ntitle: \"Titan Analytics\"\nlogline: \"The NFT analytics portal for gamers and traders Built on Solana\"\ncta: \"https://twitter.com/TitanAnalytics_\"\nlogo: /img/titananalytics.jpg\ncategory: game\nstatus: building\ntwitter: https://twitter.com/TitanAnalytics_\n---\n\nThe NFT analytics portal for gamers and traders Built on Solana\n"
  },
  {
    "path": "projects/tokenpocket.md",
    "content": "---\nslug: \"tokenpocket\"\ndate: \"2021-09-29\"\ntitle: \"TokenPocket\"\nlogline: \"TokenPocket is one of the most popular self-custodial wallets, supporting over 20 mainstream public chains including Solana, and all EVM compatiable chains. It is a must-have wallet for DeFi and NFT enthusiats.\"\ncta: \"https://tokenpocket.pro\"\nlogo: /img/tokenpocket.svg\ncategory: wallet\nwebsite: https://tokenpocket.pro/\ntwitter: https://twitter.com/TokenPocket_TP\nforum: https://fans.tokenpocket.pro/\nstatus: live\n---\n\nTokenPocket is one of the most popular self-custodial wallets, supporting mainstream public chains including Solana, and all EVM compatiable chains. It is a must-have wallet for DeFi and NFT enthusiats. TokenPocket provides reliable services for over 10 million users spanning 200 countries. Monthly active users exceeds 3 million.\n"
  },
  {
    "path": "projects/torus.md",
    "content": "---\nslug: \"torus\"\ndate: \"2020-04-03\"\ntitle: \"Torus\"\nlogline: \"Torus provides one-click logins for DApps, enabling users to login using Google, Facebook, Reddit, Discord, and Twitch accounts in a single step.\"\ncta: \"https://tor.us\"\nlogo: /img/torus.svg\ncategory: infra, wallet\nwebsite: https://app.tor.us/\ntwitter: https://twitter.com/TorusLabs\ntelegram: http://t.me/TorusLabs\nstatus: live\n---\n\nIt’s no secret that the friction for new users to on-board into the blockchain ecosystem is notoriously high, and it is this friction that is slowing blockchain adoption. Key management is complicated, with users managing private keys and mnemonic phrases, especially when compared to existing Web 2.0 applications with Single-Sign-On (SSO) solutions via Facebook or Google enabled. The other driver for this friction is performance and cost. An example most of us are familiar with is the use of cryptocurrencies as payments, where Bitcoin was accepted on the Steam platform at one point, but was eventually dropped due to its price volatility, high transaction fees during network congestion, and slow settlement.\n\nAs a result, we’re excited to share that Solana and Torus have collaborated to tackle these issues, as both our teams are focused on making blockchain more accessible, user-friendly, and scalable. At Solana, our edge is in enabling a high-performance protocol with cost-efficient transactions and sub-second confirmation times. And at Torus, our mission is to provide a simple authentication solution and make key management commpatible with existing Web 2.0 applications. \n\nCurrently, the Torus network is supported by a collective of validator nodes run by Binance, Etherscan, ENS, Tendermint, and other ecosystem stakeholders. Torus' solution is blockchain agnostic as we believe an improved developer/user experience should be accessible for everyone. However, we've prioritized this collaboration with Solana to bring the familiar web OAuth user onboarding experience to all developers looking to build applications on Solana. This gives them access to seamless key management via Torus’ DirectAuth integration where they have full control over their own login and user onboarding or wallet systems to suit their users’ needs. Regardless of whether they are looking to build fast, secure, and scalable exchanges, marketplaces, or other applications tailored to mainstream crowds, they’ll be able to find their solution in Solana.\n"
  },
  {
    "path": "projects/tox.md",
    "content": "---\nslug: \"TOX\"\ndate: \"2021-11-01\"\ntitle: \"Trollbox\"\nlogline: \"Decentralized Trollbox moderated by Liquidity Incentive Model\"\ncta: \"https://trollbox.io\"\nlogo: /img/tox.png\ncategory: app, dapp\nstatus: live\nwebsite: https://trollbox.io\ntwitter: https://twitter.com/trollboxio\n\n---\n\nDecentralized Trollbox moderated by Liquidity Incentive Model\n"
  },
  {
    "path": "projects/traderdome.md",
    "content": "---\nslug: \"traderdome\"\ndate: \"2020-04-03\"\ntitle: \"traderdome\"\nlogline: \"Traderdome is a new swap service built on Serum.\"\ncta: \"https://traderdome.io\"\nlogo: /img/traderdome.svg\ncategory: amm\nstatus: live\nwebsite: https://traderdome.io/#/\ntwitter: https://twitter.com/traderdome\ntelegram: https://t.me/ProjectSerum\ndiscord: https://discord.com/invite/zxPsXcB\n---\n\nTraderdome is a fully decentralized protocol for automated liquidity provision on Solana.\n"
  },
  {
    "path": "projects/tribeland.md",
    "content": "---\r\nslug: \"tribeland\"\r\ndate: \"2021-11-14\"\r\ntitle: \"Tribe Land\"\r\nlogline: \"Tribeland is a MMORPG Play-to-earn Metaverse, that will take players back to the land lost in time on Solana.\"\r\ncta: \"https://tribeland.io\"\r\nlogo: /img/tribeland.png\r\ncategory: game, metaplex, nft\r\nstatus: live\r\nwebsite: https://tribeland.io/\r\ntwitter: https://twitter.com/tribe_land\r\ntelegram: https://t.me/tribe_land\r\ndiscord: https://discord.gg/aDRcNH7gnS\r\n---\r\n\r\nTribeland is a MMORPG Play-to-earn Metaverse, that will take players back to the land lost in time on Solana."
  },
  {
    "path": "projects/trippingballs.md",
    "content": "---\nslug: \"trippingballs\"\ndate: \"2021-11-07\"\ntitle: \"Tripping Balls\"\nlogline: \"8'888 furry little balls tripping out on the Solana Ecosystem. The NFT that let's you win free NFTs by holding.\"\ncta: \"https://trippingballsnft.com/\"\nlogo: /img/trippingballs.jpg\ncategory: nft\nstatus: building\nwebsite: https://trippingballsnft.com/\ntwitter: https://twitter.com/TrippinBallsNFT\ndiscord: https://discord.com/invite/MWqEzQDR3M\n---\n\nEach NFT acts as your own ticket and your token number (between 1-8888) acts as a ticket for every raffle we put on. Winners are selected through a random number generator.\n"
  },
  {
    "path": "projects/trippybunny.md",
    "content": "---\nslug: \"trippybunny\"\ndate: \"2021-10-16\"\ntitle: \"Trippy Bunny Tribe\"\nlogline: \"The TBT is a collection of 1,111 randomly generated NFTs for the sake of the memes. We've decided to launch on the Solana blockchain because we want to spread awareness about this ecosystem and bring a bit of trippiness to the space. Each bunny is a special bunny.\"\ncta: \"https://trippybunnynft.com/#/\"\nlogo: /img/trippybunny.png\ncategory: nft\nstatus: live\nwebsite: https://trippybunnynft.com/#/\ntwitter: https://twitter.com/TrippyBunnyNFT\ndiscord: https://discord.com/invite/vXMWQQcSHF\n---\n\nThe TBT is a collection of 1,111 randomly generated NFTs for the sake of the memes. We've decided to launch on the Solana blockchain because we want to spread awareness about this ecosystem and bring a bit of trippiness to the space. Each bunny is a special bunny.\n"
  },
  {
    "path": "projects/trust.md",
    "content": "---\nslug: \"trustwallet\"\ndate: \"2020-04-03\"\ntitle: \"Trust Wallet\"\nlogline: \"Trust Wallet is a mobile wallet that supports SOL.s\"\ncta: \"https://trustwallet.com\"\nlogo: /img/trust.svg\ncategory: wallet, SPL\nwebsite: https://trustwallet.com/\ntwitter: https://twitter.com/trustwalletapp\ntelegram: https://t.me/trust_announcements\nstatus: live\n---\n\nTrust Wallet is a mobile wallet that supports SOL. Download it from the iOS or Google Play store to interact with the Solana network on your mobile device.\n"
  },
  {
    "path": "projects/tulip.md",
    "content": "---\nslug: \"Tulip\"\ndate: \"2021-05-11\"\ntitle: \"Tulip Protocol\"\nlogline: \"Tulip Protocol is an efficient Solana yield aggregator.\"\ncta: \"https://tulip.garden/\"\ncategory: amm\nlogo: /img/tulip.png\nstatus: live\nwebsite: https://tulip.garden/\ntwitter: https://twitter.com/TulipProtocol\ntelegram: https://t.me/TulipProtocol\ndiscord: http://discord.gg/vCaEUjnc28\n---\n\nTulip Protocol is the first yield aggregation platform built on Solana with auto-compounding vault strategies.\nThe dApp (decentralized application) is designed to take advantage of Solana's low cost, high efficiency blockchain, allowing the vault strategies to compound frequently. This allows stakers to benefit from higher APYs without requiring active management.\n"
  },
  {
    "path": "projects/tungstencubenft.md",
    "content": "---\nslug: \"tungstencubenft\"\ndate: \"2021-19-10\"\ntitle: \"Tungsten Cube NFT\"\nlogline: \"Tungsten Cube NFT. Redeem for real cube or trade? 100% of royalties donated to crypto advocacy groups. 500 cubes, 4 glorious sizes.\"\ncta: \"https://tungstencube.com/\"\nlogo: /img/tungsten.png\ncategory: nft\nstatus: building\nwebsite: https://tungstencube.com/\ntwitter: https://twitter.com/tungstencubenft/\ndiscord: https://discord.com/invite/prJTJ8fjGn\n---\n\nTungsten Cube NFT. Redeem for real cube or trade? 100% of royalties donated to crypto advocacy groups. 500 cubes, 4 glorious sizes.\n"
  },
  {
    "path": "projects/turtles.md",
    "content": "---\nslug: \"turtles\"\ndate: \"2021-10-03\"\ntitle: \"Turtles on Solana\"\nlogline: \"Turtles is a collection of 3,333 Turtles that are one-of-a-kind, algorithmically generated, strong, and collectible. Available on Solana.\"\ncta: \"https://www.turtles.com/\"\nlogo: /img/turtles.png\ncategory: nft\nstatus: live\nwebsite: https://www.turtles.com/\ntwitter: https://twitter.com/TurtlesNFT\ndiscord: https://discord.com/invite/turtles\n---\n\nTurtles is a collection of 3,333 Turtles that are one-of-a-kind, algorithmically generated, strong, and collectible. Available on Solana.\n"
  },
  {
    "path": "projects/typicaltiger.md",
    "content": "---\nslug: \"typicaltiger\"\ndate: \"2021-10-12\"\ntitle: \"Typical Tigers\"\nlogline: \"Typical Tigers are taking over the NFT world. Join them on their journey and help save the tigers.\"\ncta: \"https://twitter.com/TypicalTigerNFT\"\nlogo: /img/typicaltigers.png\ncategory: nft\nstatus: building\ntwitter: https://https://twitter.com/TypicalTigerNFT\ndiscord: https://discord.com/invite/2nw2BZhenA\n---\n\nTypical Tigers are taking over the NFT world. Join them on their journey and help save the tigers!\n"
  },
  {
    "path": "projects/unicornsocialclub.md",
    "content": "---\nslug: \"unicornsocialclub\"\ndate: \"2021-11-14\"\ntitle: \"Unicorn Social Club NFT\"\nlogline: \"A blessing of 8,888 unique Unicorns roaming wild & free on the Solana blockchain\"\ncta: \"https://unicornsocialclub.com/\"\nlogo: /img/unicornsocialclub.png\ncategory: nft\nstatus: building\nwebsite: https://unicornsocialclub.com/\ntwitter: https://twitter.com/UnicornSolClub\ndiscord: https://discord.gg/metaversable\n---\n\nA blessing of 8,888 unique Unicorns roaming wild & free on the Solana blockchain\n"
  },
  {
    "path": "projects/uniforge.md",
    "content": "---\nslug: \"uniforge\"\ntitle: \"Uniforge\"\ndate: 2021-07-25\nlogline: \"Stop Minting, Start Forging.\"\ncategory: app\nlogo: /img/uniforge.svg\nstatus: live\nwebsite: https://www.uniforge.io\ncta: \"https://www.uniforge.io\"\ntwitter: https://twitter.com/uniforge\n---\n\nUniforge: Stop Minting, Start Forging. Our first application--algorithmically generated beach scenes called Solsets--is live on Solana Devnet.\n"
  },
  {
    "path": "projects/unqclub.md",
    "content": "---\nslug: \"unqclub\"\ndate: \"2021-07-01\"\ntitle: \"UNQ.club\"\nlogline: \"UNQ.club is the first DeFi platform providing tools for collectors and investors to power the NFT space. Running cross-chain, powered by Solana.\"\ncta: \"https://unq.club\"\nlogo: /img/unqclub.svg\ncategory: defi, nft\nstatus: demo\ntwitter: https://twitter.com/ClubUnq\nmedium: https://unq.medium.com/\ntelegram: https://t.me/unq_community\ndiscord: https://discord.com/invite/hbuDW9WmnW\n---\n\nUNQ.club is a platform for NFT collectors focused on seamless experience. Build a community, fundraise, and purchase NFTs across different blockchains and protocols from a single interface.\n\nOur goal is to make collecting a full-time job.\n"
  },
  {
    "path": "projects/uphold.md",
    "content": "---\nslug: \"uphold\"\ndate: \"2020-04-03\"\ntitle: \"Uphold\"\nlogline: \"Uphold is a cryptocurrency exchange and fiat on-ramp that supports the SOL asset.\"\ncta: \"https://uphold.com/\"\nlogo: /img/uphold.svg\ncategory: exchange\nstatus: live\nwebsite: https://uphold.com/\ntwitter: https://twitter.scom/UpholdInc\n---\n\nFounded as Bitreserve in 2013, Uphold is a leading cryptocurrency exchange allowing users to transact across more than 1,000 different cryptocurrencies and commodities, including a number of prominent digital currencies and precious metals.\n"
  },
  {
    "path": "projects/usdc.md",
    "content": "---\nslug: \"usdc\"\ntitle: \"USDC\"\ndate: 2021-07-25\ncta: \"https://www.circle.com/blog/circle-solana-partner-to-bring-usdc-to-solana-blockchain\"\nlogline: \"USDC for Solana is now available on mainnet, and Circle will bring comprehensive support for Solana across its suite of platform services and APIs in Q4.\"\nlogo: /img/usdc.svg\ncategory: stablecoin\nstatus: live\nwebsite: \"https://www.circle.com/blog/circle-solana-partner-to-bring-usdc-to-solana-blockchain\"\ntwitter: https://twitter.com/circlepay\ndiscord: https://discord.com/invite/Q7bKN5y\n---\n\nCrypto traders and developers can now use USDC, one of the most popular stablecoins, on fast, scalable, and cost-effective rails provided by the Solana blockchain.\n"
  },
  {
    "path": "projects/uxdProtocol.md",
    "content": "---\nslug: \"uxdProtocol\"\ndate: \"2021-11-08\"\ntitle: \"UXD Protocol\"\nlogline: \"Algorithmic stablecoin backed 100% by a delta neutral position using derivatives. Built on solana\"\ncta: \"https://uxd.fi\"\nlogo: /img/UXDProtocol.jpg\ncategory: dex, app\nstatus: building\nwebsite: https://uxd.fi\ntwitter: https://twitter.com/UXDProtocol\ndiscord: https://discord.com/invite/BHfpYmjsBM\n---\n\nAlgorithmic stablecoin backed 100% by a delta neutral position using derivatives. Built on solana\n\n**1 = 1**\n\nAnyone can always mint 1 UXD for 1 USD.\n\n**Instant**\n\nMint/Redemption process is instant.\n\n**Earn**\n\nThe funding rate of the delta-neutral position will be distributed automatically to UXD holders.\n\n**Censorship Resistant**\n\nTransact with anyone, anywhere and anytime.\n"
  },
  {
    "path": "projects/valholla.md",
    "content": "---\nslug: \"valholla\"\ndate: \"2021-03-22\"\ntitle: \"Valholla\"\nlogline: \"Val-hölla is a DeFi kickstarter and investment platform.\"\ncta: https://github.com/JohnRSim/valholla/\nlogo: /img/valholla.svg\ncategory: DeFi\nwebsite: https://www.val-holla.com/\ntwitter: https://twitter.com/ValHlla2\nstatus: building\n---\n\nVal-hölla is a Solana decentralized DeFi kickstarter and investment platform. Using Val-hölla, users can find and invest in innovative and exciting projects using the Solana blockchain and easily track the progress of projects. Oswners and innovators can kickstart DeFi projects with investment from the Solana community.\n"
  },
  {
    "path": "projects/validatorsapp.md",
    "content": "---\nslug: \"validatorsapp\"\ndate: \"2020-04-03\"\ntitle: \"Validators.app\"\nlogline: \"Validators.app is a dashboard that shows each Solana validator by title and includes recent statistics for each.\"\ncta: \"https://validators.app\"\nlogo: /img/validatorsapp.png\ncategory: explorer\nstatus: live\n---\n\nMeet the validators who power Solana, the world's fastest blockchain! If you own SOL tokens, and seek a staking partner, you can use Validators.app to create a \"short-list\" of validators.\n\nOnce you have a short-list, reach out to them and start a conversation! Ask questions about data center location, computer security, redundancy, etc. before making a final decision. Try to delegate SOL to several different validators to make the network stronger.\n"
  },
  {
    "path": "projects/vampiresofsol.md",
    "content": "---\nslug: \"vampiresofsol\"\ndate: \"2021-10-09\"\ntitle: \"Vampires Of Sol\"\nlogline: \"13,666 uniquely generated, not cute, evil, SOL thirsty vampires with proof of ownership ruling the Solana blockchain.\"\ncta: \"https://vampiresofsol.com/\"\nlogo: /img/vampiresofsol.png\ncategory: nft\nstatus: live\nwebsite: https://vampiresofsol.com/\ntwitter: https://twitter.com/VampiresOfSOL\ndiscord: https://discord.com/invite/PSXZq6XQ2b\n---\n\n13,666 uniquely generated, not cute, evil, SOL thirsty vampires with proof of ownership ruling the Solana blockchain.\n"
  },
  {
    "path": "projects/velas.md",
    "content": "---\nslug: \"velas\"\ndate: \"2020-04-03\"\ntitle: \"Velas\"\nlogline: \"Velas announced their support for Solana, leveraging one of the fastest blockchain frameworks in the industry and adding EVM support throughout.\"\ncta: \"https://velas.com/\"\nlogo: /img/velas.svg\ncategory: infra\nstatus: live\nwebsite: https://velas.com/\ntwitter: https://twitter.com/VelasBlockchain\ntelegram: https://t.me/velascommunity\n---\n\nVelas announced their support for the the Solana codebase, resulting in one of the fastest blockchain frameworks in the industry. In addition, Velas added support for Ethereum Virtual Machine.\n\nVelas expanded upon the Solana codebase to obtain and leverage one of the fastest blockchain frameworks in the entire crypto industry, far exceeding previous framework speeds of competitors.\n\nEthereum Virtual Machine will be supported on Velas, allowing Ethereum DApps to run on the Velas Blockchain.\n"
  },
  {
    "path": "projects/waggle.md",
    "content": "---\nslug: \"waggle\"\ndate: \"2021-10-01\"\ntitle: \"Waggle\"\nlogline: \"Waggle.network is a multi-chain marketplace protocol for locked tokens. We ensure that retail investors are never out of the loop regarding up-and-coming projects. Waggle creates liquidity for project founders by facilitating the sales of vesting reserve tokens to retail investors on the Waggle Market. The Waggle Community participates in exclusive token sales, buying vesting tokens at a discount to market price.\"\ncta: \"https://waggle.network/\"\nlogo: /img/waggle.png\ncategory: defi, app\nstatus: building\nwebsite: https://waggle.network/\ntwitter: https://twitter.com/wagglenetwork\ntelegram: https://t.me/wagglenetwork\n---\n\nWaggle.network is a multi-chain marketplace protocol for locked tokens. We ensure that retail investors are never out of the loop regarding up-and-coming projects. Waggle creates liquidity for project founders by facilitating the sales of vesting reserve tokens to retail investors on the Waggle Market. The Waggle Community participates in exclusive token sales, buying vesting tokens at a discount to market price."
  },
  {
    "path": "projects/wagmi.md",
    "content": "---\nslug: \"wagmi\"\ndate: \"2021-11-18\"\ntitle: \"Wagmi\"\nlogline: \"We are gonna make it is a community driven token ecosystem\"\ncta: \"https://wagmionsolana.com/\"\nlogo: /img/wagmi.png\ncategory: dex, nft, spl\nstatus: building\nwebsite: https://wagmionsolana.com/\ntwitter: https://twitter.com/WAGMI_Sol\ndiscord: https://discord.gg/wagmi\n---"
  },
  {
    "path": "projects/wasabix.md",
    "content": "---\nslug: \"wasabix\"\ntitle: \"WasabiX\"\ndate: 2021-06-22\nlogline: \"WasabiX's mission is to unlock the capital efficiency of yield-bearing tokens that are not in use (xSushi, veCRV, yDAI, etc).\"\ncta: \"https://wasabix.finance/\"\ncategory: defi\nlogo: /img/wasabix.svg\nstatus: Live\ntwitter: https://twitter.com/WasabixFinance\n---\n\nWasabiX Finance is a cross-chain, zero-interest lending platform that takes user’s future yield as collateral to increase capital efficiency by up to 1.5x. It helps retail users maximize yields and save money on gas fees by periodically compounding the returns.\n"
  },
  {
    "path": "projects/waterfallbot.md",
    "content": "---\nslug: \"Waterfallbot\"\ntitle: \"Waterfallbot\"\ndate: 2021-06-28\nlogline: \"Waterfall Bot is multi-chain tracking bot for the Solana blockchain.\"\ncta: \"https://twitter.com/waterfallbots\"\ncategory: tools\nlogo: /img/waterfall.svg\nstatus: Live\n---\n\nWaterfall Bot is a multi-chain tracking bot for the Solana blockchain.\n"
  },
  {
    "path": "projects/waves.md",
    "content": "---\nslug: \"waves\"\ndate: \"2020-04-03\"\ntitle: \"Waves\"\nlogline: \"Waves is the fastest blockchain platform with real-world solutions. Solana will be the first external addition to Waves’ roadmap to achieving mass adoption of inter-chain DeFi through the Gravity interoperability protocol.\"\ncta: \"https://gravity.tech/\"\nlogo: /img/waves.svg\ncategory: infra\nstatus: closed\nwebsite: https://waves.tech/\ntwitter: https://twitter.com/wavesprotocol\ntelegram: https://t.me/wavesnews\ndiscord: https://discord.com/invite/cnFmDyA\n---\n\nWaves is a Crypto-platform for asset/custom token issuance, transfer, and trading on the Waves blockchain, with centralized order matching and decentralized settlement.\n\nWe are thrilled to announce the integration of the Solana protocol into Gravity, a decentralized cross-chain and oracle network based on the Waves protocol. As a result of the integration, the Solana network will be available for data transfers between Gravity network participants.\n\n“Thanks to the Solana integration, Gravity becomes a more enriched infrastructure that enables developers to create universally connected dApps, with more opportunities for practical implementation and mass adoption of DeFi,” says Alexey Pupyshev, Waves evangelist and co-creator of Gravity protocol.\n"
  },
  {
    "path": "projects/wealthofnations.md",
    "content": "---\nslug: \"wealthofnations\"\ndate: \"2021-10-29\"\ntitle: \"Wealth of Nations\"\nlogline: \"The first real economic metaverse NFT & browser play-to-earn strategy game built on solana\"\ncta: \"https://wealthofnations.uk\"\nlogo: /img/wealthofnations.jpg\ncategory: nft\nstatus: building\nwebsite: https://wealthofnations.uk\ntwitter: https://twitter.com/WoNnft\ndiscord: https://discord.gg/trT66n2mhb\n---\n\nBecome the leader you were always destined to be\n\nThis strategy game doesn’t get any more real than this – for the first time ever on the Solana network, real economics laws are applied, \nand YOU have the full ownership of the in-game cryptocurrency and NFTs involved in this real-world simulation.\n\nOur team has achieved the most accurate economics simulation of the Middle Ages period. As a player, you will be facing the same issues that they faced back then, \nwhich were nightmares for the leaders of that time. It’s not just about conquering land and resources – it’s much more than that.\n\nCorruption, smugglers, being tempted by inflation and other tricks that world leaders have pulled before – the possibilities are endless. \nThe invisible hand of the market will come in play in a several different ways, which makes Wealth of Nations the most interactive game of its kind! \nDon’t let those aspects scare you though – even a child can manage his own state because we’ve made in-game advisers available to the leaders that need some help… But beware, \nas those brats love getting a slice of your pie.\n\nWe’ve spent years (yes, years) checking out every economical aspect of the game in every possible environment just so that we could deliver the most realistic economic simulation. \nWe now have onboarded design wizards to make our vision come to life in line with modern user experience and beautiful design.\n"
  },
  {
    "path": "projects/wgmi.md",
    "content": "---\nslug: \"wgmi\"\ndate: \"2021-09-15\"\ntitle: \"WGMI NFT Collector's Club.\"\nlogline: \"WGMI🤝\"\ncta: \"https://wgmi.cc\"\nlogo: /img/wgmi.svg\ncategory: nft\nstatus: live\nwebsite: https://wgmi.cc\ntwitter: https://twitter.com/WGMIcc\n---\n\nWGMI is an NFT collectors club and fungible SPL token that lives on the Solana blockchain. The token represents proof of membership in the WGMI club. \nWGMI CC is inspired by community uplifting. Holders of the WGMI token receive regular airdrops of generative NFTs right to their wallets.\n\n"
  },
  {
    "path": "projects/whalesnation.md",
    "content": "---\nslug: \"whalesnation\"\ndate: \"2021-10-27\"\ntitle: \"Whales Nation\"\nlogline: \"Whales Nation is collection of 5555 high quality 3D Whales with a focus on providing long-term value for our holders.\"\ncta: \"https://whalesnation.com\"\nlogo: /img/whalesnation.png\ncategory: nft\nstatus: live\nwebsite: https://whalesnation.com\ntwitter: https://twitter.com/WhalesNation\ndiscord: https://discord.com/invite/32F9J6xnvD\n---\n\nWhales Nation is collection of 5555 high quality and uniquely generated 3D Whales roaming the Solana Ocean.\nWe are community led and purpose driven with a focus on providing long-term value for our holders and making meaningful contributions towards Whale Conservation.\n"
  },
  {
    "path": "projects/wholesomewhales.md",
    "content": "---\nslug: \"wholesomewhales\"\ndate: \"2021-10-24\"\ntitle: \"Wholesome Whales\"\nlogline: \"3333 unique randomly generated Whales wandering the sea of Solana blockchain.\"\ncta: \"https://www.magiceden.io/marketplace/wholesome_whales\"\nlogo: /img/wholesomewhales.png\ncategory: nft\nstatus: live\nwebsite: https://wholesomewhales.com/\ntwitter: https://twitter.com/WholesomeWhales\ndiscord: https://discord.com/invite/mFrt22QqKJ\n---\n\nThe sea of Solana is now filled with 3333 deflationary Wholesome Whales.\n\nRoyalties will be used to buy back and burn floor Whales.\n"
  },
  {
    "path": "projects/wildwolves.md",
    "content": "---\nslug: \"wildwolves\"\ndate: \"2021-10-09\"\ntitle: \"Wild Wolves Bone Yard\"\nlogline: \"10,000 unique and algorithmically generated NFT wolves that have passed on to the Solana blockchain!\"\ncta: \"https://www.wildwolvesnft.com/\"\nlogo: /img/wildwolves.png\ncategory: nft\nstatus: live\nwebsite: https://www.wildwolvesnft.com/\ntwitter: https://twitter.com/WildWolvesNFT\ndiscord: https://discord.com/invite/wolves\n---\n\nEach and every Wild Wolf is an esteemed member of the Bone Yard. This Club is 10,000 members strong and contains no duplicates. Each Wild Wolf can possess up to 7 different traits, and each trait has numerous possibilities with attributes ranging far and wide. All attributes within these traits have varying levels of rarity and prestige. The more rare the traits that make up the Wild Wolf—the more valuable the NFT. Become a member of the Wild Wolves Bone Yard and join a primal and vibrant community.\n"
  },
  {
    "path": "projects/wormhole.md",
    "content": "---\nslug: \"wormhole\"\ndate: \"2020-04-03\"\ntitle: \"Wormhole\"\nlogline: \"Wormhole builds bridges between chains, facilitating transfers of any kind of information from one chain to another.\"\ncta: \"https://wormholenetwork.com/\"\nlogo: /img/wormhole.svg\ncategory: infra\nwebsite: https://wormholenetwork.com/en/\ntwitter: https://twitter.com/wormholecrypto\ntelegram: https://t.me/wormholecrypto\ndiscord: https://discord.com/invite/TsjcDtTPVp\nstatus: live\n---\n\nWormhole is a communication bridge between Solana and other top decentralized finance (DeFi) networks. Existing projects, platforms, and communities are able to move tokenized assets seamlessly across blockchains and benefit from Solana’s high speed and low cost.\n"
  },
  {
    "path": "projects/wumbo.md",
    "content": "---\nslug: \"wum.bo\"\ntitle: \"Wum.bo\"\ndate: 2021-07-25\nlogline: \"Wum.bo is bringing Creator Coins to a social network near you.\"\ncategory: app\nlogo: /img/wumbo.svg\nstatus: live\ncta: \"https://wum.bo\"\nwebsite: https://wum.bo\ntwitter: https://twitter.com/teamwumbo\ndiscord: https://discord.com/invite/S8wJBR2BQV\n---\n\nWum.bo is a platform that brings Creator Coins directly to platforms (Twitter, Twitch, Reddit, etc.) where creators interact with fans. Our Creator Coins give each creator their own personal, customizable cryptocurrency.\n"
  },
  {
    "path": "projects/xhashtag.md",
    "content": "---\nslug: \"xhashtag\"\ndate: \"2021-09-18\"\ntitle: \"xHashtag\"\nlogline: \"A stock exchange for trading tokenized #hashtags.\"\ncta: \"https://www.xhashtag.io/\"\nlogo: /img/xhashtag.svg\ncategory: \"app, defi, governance, game\"\nstatus: building\nwebsite: https://www.xhashtag.io/\ntwitter: https://twitter.com/xhashtagio\n---\n\nxHashtag enables fractional ownership of tokenized #hashtags purchasable by locking $XTAG tokens into a bonding curve contract that controls price in relation to supply of #hashtags and guarantees liquidity. The protocol burns #hashtags based on their performance on Twitter, increasing floor price over time. xHashtag is a powerful Twitter marketing tool for crypto projects, driving consistent conversation and traction while incentivizing fans.\n\n<b>Website</b>: https://www.xhashtag.io </br>\n<b>Twitter</b>: https://twitter.com/xhashtagio </br>\n<b>Telegram</b>: https://t.me/xhashtagio </br>\n<b>Discord</b>: https://discord.gg/TWueAnVC </br>\n<b>Medium</b>: https://medium.com/xhashtag </br>\n"
  },
  {
    "path": "projects/yiToken.md",
    "content": "---\nslug: \"yitoken\"\ndate: \"2021-08-05\"\ntitle: \"yiToken\"\nlogline: \"yiToken is a decentralized multi-chain cryptocurrency and NFT wallet which supports an array of chains, including Bitcoin, Ethereum, Polkadot, BSC, Heco, OKExChain, Polygon, and Solana.\"\ncta: \"https://yitoken.im/\"\nlogo: /img/yiToken.svg\ncategory: wallet\nWebsite: https://yitoken.im\nTwitter: https://twitter.com/yitokenwallet\nDiscord: https://discord.com/invite/BJ7H8CUbAb\nTelegram: https://t.me/yitoken\nstatus: live\n---\n\nyiToken is a decentralized, multi-chain cryptocurrency and NFT wallet designed to allow users to manage digital encrypted assets easily. yiToken supports mainstream public chains, such as Bitcoin, Ethereum, Polkadot, BSC, Heco, OKExChain, Polygon, Solana, and their token assets. Hundreds of DApps have been launched on yiToken’s DApp zone, covering many application scenarios. \n"
  },
  {
    "path": "projects/zelcore.md",
    "content": "---\nslug: \"zelcore\"\ndate: \"2021-06-01\"\ntitle: \"Zelcore\"\nlogline: \"Zelcore is a non-custodial platform for managing crypto assets and interacting with dApps. Built-in Serum DEX included.\"\ncta: \"https://zelcore.io\"\nlogo: /img/zelcore.svg\ncategory: wallet, spl, defi, dex\nstatus: live\nwebsite: https://zelcore.io\ntwitter: https://twitter.com/zelcore_io\ntelegram: https://t.me/zelhub\ndiscord: https://discord.com/invite/gVt4Xjjb8h\n---\n\nZelcore is a multi-asset, non-custodial platform available on both desktop and mobile.\n\nIntegration of the Solana ecosystem occurs on multiple levels. As a wallet, users store and manage SOL, with the ability to import any custom SPL token. Zelcore supports Solana's native wrapping options and can interact with any dApp via a built-in Solana Wallet adapter on link.zelcore.io. Moreover, Zelcore recently added a full fledged Serum DEX directly into the desktop and mobile platform.\n"
  },
  {
    "path": "projects/zero interest protocol.md",
    "content": "---\nslug: \"zerointerestprotocol\"\ndate: 2021-06-22\ntitle: \"Zero Interest Protocol\"\nlogline: \"Zero Interest is a decentralized borrowing protocol with interest-free loans, high capital efficiency, and censorship-resistant stablecoins on Solana.\"\ncta: \"https://www.zeropercenter.org/\"\ncategory: defi, stablecoin\nlogo: /img/zerointerestprotocol.svg\nstatus: Building\nwebsite: https://www.zeropercenter.org/\ntwitter: https://twitter.com/zerointerestfi\ntelegram: https://t.me/zerointerest\n---\n\nIn summary, our protocol is designed after Liquity on Ethereum. It will incorporate two tokens: a stablecoin and a secondary token.\n\nROKS\n- USD-pegged stablecoin used to pay out loans\n- Can be redeemed any time against the underlying collateral at face value\n\nVTT\n- Secondary token issued by Zero Interest Fi\n- Captures fee revenue generated by the protocol\n\nHere are the major DeFi use cases:\n1. Borrow ROKS against SOL by opening a borrowing position called a \"Trove\"\n2. Secure the Zero Interest Protocol by providing ROKS to the stability pool in exchange for rewards\n3. Stake VTT to earn the fee revenue paid for borrowing/redeeming ROKS\n4. Redeem 1 ROKS for 1 USD worth of SOL when the ROKS peg falls below $1 (arbitrage)\n\nHere are the advantages to bringing this to Solana:\n5. Our company will bring a new decentralized stable-value asset to Solana (in the form of our stablecoin ROKS)\n6. It will bring a best in class minimum collateral ratio of 110%\n7. The protocol is designed to be non-custodial, immutable, and governance-free\n8. Due to low gas fees on Solana, we're able to have lower borrowing fees and higher APYs as we do not need to set aside a \"liquidation reserve\" like protocols do on Ethereum to mitigate fees\n"
  },
  {
    "path": "projects/zeta.md",
    "content": "---\nslug: \"zeta\"\ndate: \"2021-05-13\"\ntitle: \"Zeta\"\nlogline: \"Zeta is an under-collateralized DeFi options platform built on Solana.\"\ncta: \"https://twitter.com/ZetaMarkets\"\nlogo: /img/zeta.svg\ncategory: defi\nstatus: building\nwebsite: https://zeta.markets/\ntwitter: https://twitter.com/ZetaMarkets\ndiscord: https://discord.gg/zeta\n---\n\nZeta is an options trading platform on Solana, enabling users to effectively hedge risk against crypto market movement and events.\n\nTheir value proposition:\n\n- Hybrid orderbook and options AMM model (Automated Market Maker) that allows for efficient pricing and deep liquidity\n- Greater capital efficiency via under-collateralization\n- Lightning fast transactions and low fees care of Solana\n- A strong focus on the user experience with easy-to-trade derivative products and exciting underlyings\n"
  },
  {
    "path": "projects/zol.md",
    "content": "---\nslug: zol\ndate: \"2020-07-11\"\ntitle: Zol Finance\nlogline: \"Zol is a smart yield farming optimizer built on the Solana ecosystem.\"\ncta: \"https://Zol.finance/\"\nlogo: /img/zol.svg\ncategory: defi\nstatus: building\ntwitter: \"https://twitter.com/ZolFinance\"\n---\n\nZol is a smart yield farming optimizer built on the Solana ecosystem. We aim to simplify every process on the Solana ecosystem with Zol-Switch.\n\nDevnet: https://zol-vault.pages.dev/\nTwitter: https://twitter.com/ZolFinance\nMedium: https://zolfinance.medium.com/\nTelegram: https://t.me/joinchat/saFuTapAdEMxMGE1\n"
  },
  {
    "path": "projects/zombieland.md",
    "content": "---\nslug: \"zombieland\"\ndate: \"2021-10-19\"\ntitle: \"ZombieLand\"\nlogline: \"2,222 handcrafted collectible Zombie NFTs with proof of ownership stored on the Solana blockchain.\"\ncta: \"https://zombielandnft.com/\"\nlogo: /img/zombieland.png\ncategory: nft\nstatus: live\nwebsite: https://zombielandnft.com/\ntwitter: https://twitter.com/ZombieLandNFT\ndiscord: https://discord.com/invite/pVxQnUwSAH\n---\n\n2,222 handcrafted collectible Zombie NFTs with proof of ownership stored on the Solana blockchain.\n"
  },
  {
    "path": "projects/zoolana.md",
    "content": "---\nslug: \"zoolana\"\ndate: \"2021-11-11\"\ntitle: \"Zoolana\"\nlogline: \"Zoolana is a fictional world, NFT collection, and blockchain-based strategy game.\"\ncta: \"https://www.zoolana.io/\"\nlogo: /img/zoolana.jpg\ncategory: game, nft\nstatus: building\nwebsite: https://www.zoolana.io\ntwitter: https://twitter.com/Zoolana_\ndiscord: http://discord.gg/YqgdTKSGNf\n---\n\n**Zoolana is a fictional world, NFT collection, and blockchain-based mobile strategy game.**\n\nPLAY-AND-EARN, ANYWHERE\nZoolana is the first mobile play-and-earn game being built on Solana. Users will be able to create value in the game world with hardware as simple as a smartphone\n\nDEEP, IMMERSIVE STORIES\nThe Zoolana valley is full of life and loss. Since Zanis broke free of their oppressors, they've created communities, conquered foes, \nand pieced together the story of their creation.\n\nSOMEWHERE YOU BELONG\nCommunity is at Zoolana's heart. Find your tribe, raise your army, and stake your claim to the limited resources in the Zoolana valley.\n"
  }
]