├── README.md └── domains.json /README.md: -------------------------------------------------------------------------------- 1 | # url-directory 2 | 3 | This repository contains one of the domain/url sources we use for anti-phishing purposes in the [DefiLlama browser extension](https://chrome.google.com/webstore/detail/defillama/phgiabfbjodhgckcffppiboooeiecgeg). 4 | 5 | To propose an addition, please fork and open a PR. 6 | 7 | **NOTE:** This list is only one of the url sources we use in the DefiLlama extension, and is mainly for websites which are not DeFi protocols that have a TVL (eg. CEXs, wallet apps, blockchain projects). 8 | 9 | If you represent a DeFi protocol, please refrain from opening a PR to this repo. Your protocol's website will be dynamically whitelisted in the extension as long as it has significant amount of TVL. 10 | -------------------------------------------------------------------------------- /domains.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 0, 3 | "whitelist": [ 4 | "defillama.com", 5 | "llamapay.io", 6 | "dlnews.com", 7 | "llamanodes.com", 8 | "chainlist.org", 9 | "llamafolio.com", 10 | "llama-corp.com", 11 | "llama.fi", 12 | "llamao.fi", 13 | "smolrefuel.com", 14 | 15 | "zapper.xyz", 16 | "debank.com", 17 | "coingecko.com", 18 | "coinmarketcap.com", 19 | "gitcoin.co", 20 | "arbitrum.io", 21 | "zksync.io", 22 | "lenster.xyz", 23 | "rabbithole.gg", 24 | "polygon.technology", 25 | "dexscreener.com", 26 | 27 | "binance.org", 28 | "binance.com", 29 | "binance.us", 30 | "kucoin.com", 31 | "coinbase.com", 32 | "crypto.com", 33 | "huobi.com", 34 | "okx.com", 35 | "gemini.com", 36 | "kraken.com", 37 | "gate.io", 38 | "bybit.com", 39 | "phemex.com", 40 | "bitfinex.com", 41 | "layerswap.io", 42 | "squidrouter.com", 43 | 44 | "opensea.io", 45 | "looksrare.org", 46 | "decentraland.org", 47 | "sandbox.game", 48 | "rarible.com", 49 | "superrare.com", 50 | "foundation.app", 51 | "magiceden.io", 52 | "nbatopshot.com", 53 | "jpg.store", 54 | "gamestop.com", 55 | "paintswap.finance", 56 | "nftrade.com", 57 | "atomicmarket.io", 58 | "uniswap.org", 59 | "aave.com", 60 | "pancakeswap.finance", 61 | "bakeryswap.org", 62 | "knownorigin.io", 63 | "enjin.io", 64 | "tradingview.com", 65 | "ens.domains", 66 | "axieinfinity.com", 67 | "gala.games", 68 | "zerion.io", 69 | "zora.co", 70 | "cow.fi", 71 | "1inch.io", 72 | "mantle.xyz", 73 | "friend.tech", 74 | "ethichub.com", 75 | "nftvaluations.com", 76 | "transient.xyz", 77 | "manifold.xyz", 78 | "christies.com", 79 | "hek.ch", 80 | "syrup.fi", 81 | 82 | "cloudflare.com", 83 | "github.com", 84 | "gitlab.com", 85 | "twitter.com", 86 | "discord.com", 87 | "discord.gg", 88 | "telegram.org", 89 | "reddit.com", 90 | "youtube.com", 91 | "medium.com", 92 | "instagram.com", 93 | "facebook.com", 94 | "t.me", 95 | "google.com", 96 | "linkedin.com", 97 | "pinterest.com", 98 | "twitch.tv", 99 | "x.com", 100 | "warpcast.com", 101 | "hey.xyz", 102 | 103 | "etherscan.io", 104 | "bscscan.com", 105 | "snowtrace.io", 106 | "ftmscan.com", 107 | "arbiscan.io", 108 | "polygonscan.com", 109 | "zkevm.polygonscan.com", 110 | "optimistic.etherscan.io", 111 | "cronoscan.com", 112 | "moonriver.moonscan.io", 113 | "moonscan.io", 114 | "gnosisscan.io", 115 | "celoscan.io", 116 | "bobascan.com", 117 | "basescan.org", 118 | "axelarscan.io", 119 | "hyperlane.xyz", 120 | 121 | "rabby.io", 122 | "rainbow.me" 123 | ], 124 | "blacklist": [ 125 | "defillaman.com", 126 | "delafillama.com", 127 | "llamascan.org" 128 | ] 129 | } 130 | --------------------------------------------------------------------------------