├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── fixForFox.js ├── nodemon.json ├── package.json ├── public ├── icon-128.png └── icon-34.png ├── src ├── assets │ ├── data │ │ └── directory.json │ ├── defillama-logo.png │ ├── favicon.ico │ ├── img │ │ ├── defillama-logo-128.png │ │ ├── logo.svg │ │ ├── memes │ │ │ ├── cute-128.png │ │ │ ├── cute.gif │ │ │ ├── gib-128.png │ │ │ ├── idea-128.png │ │ │ ├── institute-128.png │ │ │ ├── llub-128.png │ │ │ ├── max-pain-128.png │ │ │ ├── que-128.png │ │ │ ├── smort-128.png │ │ │ ├── take-note-128.png │ │ │ └── up-only-128.png │ │ └── protocols │ │ │ ├── ascendex.webp │ │ │ ├── balancer.webp │ │ │ ├── binance.webp │ │ │ ├── bingx.webp │ │ │ ├── bit.webp │ │ │ ├── bitbank.webp │ │ │ ├── bitfinex.webp │ │ │ ├── bitflyer.webp │ │ │ ├── bitget.webp │ │ │ ├── bithumb.webp │ │ │ ├── bitkub.webp │ │ │ ├── bitmart.webp │ │ │ ├── bitmex.webp │ │ │ ├── bitrue.webp │ │ │ ├── bitso.webp │ │ │ ├── bitstamp.webp │ │ │ ├── bittrex.webp │ │ │ ├── bitvavo.webp │ │ │ ├── bkex.webp │ │ │ ├── blockchaindotcom.webp │ │ │ ├── blockfolio.png │ │ │ ├── blur.jpg │ │ │ ├── btcex.webp │ │ │ ├── btcturk.webp │ │ │ ├── bybit.webp │ │ │ ├── cdc.webp │ │ │ ├── coinbase.webp │ │ │ ├── coinex.webp │ │ │ ├── coinmetro.webp │ │ │ ├── coinone.webp │ │ │ ├── coinsbit.webp │ │ │ ├── coinsph.webp │ │ │ ├── coinstore.webp │ │ │ ├── cryptology.webp │ │ │ ├── deepcoin.webp │ │ │ ├── dextrade.webp │ │ │ ├── digifinex.webp │ │ │ ├── exmo.webp │ │ │ ├── finexbox.webp │ │ │ ├── fmfw.webp │ │ │ ├── fraxswap.webp │ │ │ ├── ftx.png │ │ │ ├── gateio.webp │ │ │ ├── gemini.webp │ │ │ ├── hotbit.webp │ │ │ ├── huobi.webp │ │ │ ├── indodax.webp │ │ │ ├── joe.webp │ │ │ ├── korbit.webp │ │ │ ├── kraken.webp │ │ │ ├── kucoin.webp │ │ │ ├── kuna.webp │ │ │ ├── latoken.webp │ │ │ ├── lbank.webp │ │ │ ├── luno.webp │ │ │ ├── maxmaicoin.webp │ │ │ ├── mexc.webp │ │ │ ├── nicehash.webp │ │ │ ├── okcoin.webp │ │ │ ├── okx.webp │ │ │ ├── opensea.png │ │ │ ├── opensea.webp │ │ │ ├── p2b.webp │ │ │ ├── paribu.webp │ │ │ ├── pcs.webp │ │ │ ├── phemex.webp │ │ │ ├── pionex.webp │ │ │ ├── poloniex.webp │ │ │ ├── shibaswap.webp │ │ │ ├── sushi.webp │ │ │ ├── sushiswap.webp │ │ │ ├── tidex.webp │ │ │ ├── uniswap.png │ │ │ ├── uniswap.webp │ │ │ ├── uniswapv3.webp │ │ │ ├── upbit.webp │ │ │ ├── valr.webp │ │ │ ├── whitebit.webp │ │ │ ├── woo.webp │ │ │ └── xtcom.webp │ └── style │ │ └── theme.scss ├── content_script.js ├── global.d.ts ├── manifest-type.ts ├── manifest.ts ├── pages │ ├── background │ │ └── index.ts │ ├── content │ │ ├── components │ │ │ ├── WarningBanner.tsx │ │ │ ├── etherscanHideScamTxn.ts │ │ │ ├── etherscanInjectPrice.tsx │ │ │ ├── etherscanInjectTags.tsx │ │ │ ├── explorers │ │ │ │ └── genericEtherscanComponent.tsx │ │ │ ├── new │ │ │ │ ├── injectPrice.tsx │ │ │ │ └── injectTags.tsx │ │ │ └── twitter │ │ │ │ ├── init.tsx │ │ │ │ ├── pageHandlers.tsx │ │ │ │ └── tweetHandlers.tsx │ │ └── index.ts │ ├── libs │ │ ├── constants.ts │ │ ├── db.ts │ │ ├── fuzzy-score.ts │ │ ├── helpers.ts │ │ ├── hooks.ts │ │ ├── phishing-detector.ts │ │ ├── storage.ts │ │ └── tagging-helpers.ts │ └── popup │ │ ├── Popup.tsx │ │ ├── index.html │ │ └── index.tsx └── vite-env.d.ts ├── tsconfig.json ├── utils ├── log.ts └── plugins │ ├── custom-dynamic-import.ts │ └── make-manifest.ts ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16.17.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | public/manifest.json 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/README.md -------------------------------------------------------------------------------- /fixForFox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/fixForFox.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/package.json -------------------------------------------------------------------------------- /public/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/public/icon-128.png -------------------------------------------------------------------------------- /public/icon-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/public/icon-34.png -------------------------------------------------------------------------------- /src/assets/data/directory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/data/directory.json -------------------------------------------------------------------------------- /src/assets/defillama-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/defillama-logo.png -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/defillama-logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/defillama-logo-128.png -------------------------------------------------------------------------------- /src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/logo.svg -------------------------------------------------------------------------------- /src/assets/img/memes/cute-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/cute-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/cute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/cute.gif -------------------------------------------------------------------------------- /src/assets/img/memes/gib-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/gib-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/idea-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/idea-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/institute-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/institute-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/llub-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/llub-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/max-pain-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/max-pain-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/que-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/que-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/smort-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/smort-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/take-note-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/take-note-128.png -------------------------------------------------------------------------------- /src/assets/img/memes/up-only-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/memes/up-only-128.png -------------------------------------------------------------------------------- /src/assets/img/protocols/ascendex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/ascendex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/balancer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/balancer.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/binance.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/binance.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bingx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bingx.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitbank.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitbank.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitfinex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitfinex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitflyer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitflyer.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitget.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitget.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bithumb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bithumb.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitkub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitkub.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitmart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitmart.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitmex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitmex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitrue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitrue.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitso.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitso.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitstamp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitstamp.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bittrex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bittrex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bitvavo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bitvavo.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bkex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bkex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/blockchaindotcom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/blockchaindotcom.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/blockfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/blockfolio.png -------------------------------------------------------------------------------- /src/assets/img/protocols/blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/blur.jpg -------------------------------------------------------------------------------- /src/assets/img/protocols/btcex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/btcex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/btcturk.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/btcturk.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/bybit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/bybit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/cdc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/cdc.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinbase.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinbase.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinmetro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinmetro.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinone.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinsbit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinsbit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinsph.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinsph.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/coinstore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/coinstore.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/cryptology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/cryptology.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/deepcoin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/deepcoin.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/dextrade.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/dextrade.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/digifinex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/digifinex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/exmo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/exmo.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/finexbox.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/finexbox.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/fmfw.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/fmfw.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/fraxswap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/fraxswap.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/ftx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/ftx.png -------------------------------------------------------------------------------- /src/assets/img/protocols/gateio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/gateio.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/gemini.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/gemini.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/hotbit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/hotbit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/huobi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/huobi.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/indodax.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/indodax.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/joe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/joe.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/korbit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/korbit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/kraken.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/kraken.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/kucoin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/kucoin.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/kuna.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/kuna.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/latoken.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/latoken.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/lbank.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/lbank.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/luno.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/luno.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/maxmaicoin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/maxmaicoin.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/mexc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/mexc.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/nicehash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/nicehash.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/okcoin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/okcoin.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/okx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/okx.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/opensea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/opensea.png -------------------------------------------------------------------------------- /src/assets/img/protocols/opensea.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/opensea.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/p2b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/p2b.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/paribu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/paribu.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/pcs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/pcs.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/phemex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/phemex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/pionex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/pionex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/poloniex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/poloniex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/shibaswap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/shibaswap.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/sushi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/sushi.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/sushiswap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/sushiswap.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/tidex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/tidex.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/uniswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/uniswap.png -------------------------------------------------------------------------------- /src/assets/img/protocols/uniswap.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/uniswap.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/uniswapv3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/uniswapv3.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/upbit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/upbit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/valr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/valr.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/whitebit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/whitebit.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/woo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/woo.webp -------------------------------------------------------------------------------- /src/assets/img/protocols/xtcom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/assets/img/protocols/xtcom.webp -------------------------------------------------------------------------------- /src/assets/style/theme.scss: -------------------------------------------------------------------------------- 1 | .crx-class { 2 | color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /src/content_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/content_script.js -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/manifest-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/manifest-type.ts -------------------------------------------------------------------------------- /src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/manifest.ts -------------------------------------------------------------------------------- /src/pages/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/background/index.ts -------------------------------------------------------------------------------- /src/pages/content/components/WarningBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/WarningBanner.tsx -------------------------------------------------------------------------------- /src/pages/content/components/etherscanHideScamTxn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/etherscanHideScamTxn.ts -------------------------------------------------------------------------------- /src/pages/content/components/etherscanInjectPrice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/etherscanInjectPrice.tsx -------------------------------------------------------------------------------- /src/pages/content/components/etherscanInjectTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/etherscanInjectTags.tsx -------------------------------------------------------------------------------- /src/pages/content/components/explorers/genericEtherscanComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/explorers/genericEtherscanComponent.tsx -------------------------------------------------------------------------------- /src/pages/content/components/new/injectPrice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/new/injectPrice.tsx -------------------------------------------------------------------------------- /src/pages/content/components/new/injectTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/new/injectTags.tsx -------------------------------------------------------------------------------- /src/pages/content/components/twitter/init.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/twitter/init.tsx -------------------------------------------------------------------------------- /src/pages/content/components/twitter/pageHandlers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/twitter/pageHandlers.tsx -------------------------------------------------------------------------------- /src/pages/content/components/twitter/tweetHandlers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/components/twitter/tweetHandlers.tsx -------------------------------------------------------------------------------- /src/pages/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/content/index.ts -------------------------------------------------------------------------------- /src/pages/libs/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/constants.ts -------------------------------------------------------------------------------- /src/pages/libs/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/db.ts -------------------------------------------------------------------------------- /src/pages/libs/fuzzy-score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/fuzzy-score.ts -------------------------------------------------------------------------------- /src/pages/libs/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/helpers.ts -------------------------------------------------------------------------------- /src/pages/libs/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/hooks.ts -------------------------------------------------------------------------------- /src/pages/libs/phishing-detector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/phishing-detector.ts -------------------------------------------------------------------------------- /src/pages/libs/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/storage.ts -------------------------------------------------------------------------------- /src/pages/libs/tagging-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/libs/tagging-helpers.ts -------------------------------------------------------------------------------- /src/pages/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/popup/Popup.tsx -------------------------------------------------------------------------------- /src/pages/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/popup/index.html -------------------------------------------------------------------------------- /src/pages/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/src/pages/popup/index.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/utils/log.ts -------------------------------------------------------------------------------- /utils/plugins/custom-dynamic-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/utils/plugins/custom-dynamic-import.ts -------------------------------------------------------------------------------- /utils/plugins/make-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/utils/plugins/make-manifest.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefiLlama/defillama-extension/HEAD/yarn.lock --------------------------------------------------------------------------------