Skip to content

Latest commit

 

History

History

wallet

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Ecosystem list

Productions using with

How to add dApp

  1. Fork this repo to your own github account

  2. Clone fork and create new branch

  3. Add new dApp image file to wallet/resource directory in cosmostation/chainlist

  4. Add new dApp to wallet/eco_list.json in the following format:

    • id (number)
      • unique identifier
    • name (string)
      • dApp name
    • description (string)
      • dApp description
    • thumbnail (string)
      • the dApp image URL you added earlier to the resource folder
        • ex. https://raw.githubusercontent.com/cosmostation/chainlist/master/wallet/resource/new_dApp.png
    • link (string)
      • dApp link url
    • chains (string array)
      • list of chains supported by the dApp
    • socials (object)
      • social media URLs related to the dApp
      • If none, just use {}
    • type (string)
      • dApp type
        • ex. DEX, DeFi, Bridge ...

    example

      [
          {
              "id": 1,
              "name": "Eigenlayer",
              "description": "EigenLayer lets Ethereum users restake assets to support other protocols and earn extra rewards.",
              "thumbnail" : "https://raw.githubusercontent.com/cosmostation/chainlist/master/wallet/resource/eigenlayer.png",
              "link": "https://app.eigenlayer.xyz",
              "chains": [
                  "ethereum"
              ],
              "socials": {
                  "github": "https://github.com/eigenfoundation",
                  "telegram": "https://t.me/EigenLayerOfficial",
                  "twitter": "https://x.com/eigenlayer",
                  "discord": "https://discord.com/invite/eigenlayer"
              },
              "type": "Liquid staking"
          },
          {
              "id": 18,
              "name": "Cacao Swap",
              "description": "Cacao Swap is a supercharged user interface for cross-chain swaps, synthetics and yield opportunities. Powered by Thorchain, Maya Protocol and ChainFlip, it offers a user-first experience for all interactions.",
              "thumbnail" : "https://raw.githubusercontent.com/cosmostation/chainlist/master/wallet/resource/cacao.png",
              "link": "https://cacaoswap.app/",
              "chains": [
                  "ethereum",
                  "avalanche"
              ],
              "socials": {},
              "type": "DEX"
          }
      ] 
    

  1. Commit and push to your fork

  2. From your repository, make pull request (PR)