├── .gitignore ├── pages ├── gcr │ ├── gcr.png │ └── gcr.md ├── RSS3 │ ├── RSS3.png │ └── RSS3.md ├── guild │ ├── guild.png │ └── guild.md ├── bancor │ ├── bancor.png │ └── bancor.md ├── erasure │ ├── erasure.png │ └── erasure.md ├── matcha │ ├── matcha.png │ └── matcha.md ├── pepemon │ ├── pepemon.png │ └── pepemon.md ├── InsurAce │ ├── InsurAce.png │ └── InsurAce.md ├── dhedge │ ├── dhedge_logo.png │ └── dhedge.md ├── lyra │ ├── lyra.svg │ └── lyra.md ├── TrueFi │ ├── TrueFi.md │ └── TrueFi.svg ├── aave │ ├── aave.md │ └── aave.svg ├── axelar │ ├── axelar.md │ └── axelar.svg ├── BoringDAO │ ├── BoringDAO.md │ └── BoringDAO.svg ├── alkemi │ ├── alkemi.md │ └── alkemi.svg ├── airswap │ ├── airswap.md │ └── airswap.svg ├── instadapp │ ├── instadapp.svg │ └── instadapp.md ├── neptune-mutual │ └── neptune-mutual.md ├── dydx │ └── dydx.md ├── keep │ ├── keep.md │ └── keep.svg ├── cega │ └── cega.md ├── rook │ ├── rook.md │ └── rook_logo.svg ├── tellor │ ├── tellor.md │ └── tellor.svg ├── rai │ └── rai.md ├── tornado │ ├── tornado.md │ └── tornado.svg ├── compound │ └── compound.md ├── kyber │ └── kyber.md ├── barnbridge │ ├── barnbridge.md │ └── barnbridge.svg ├── idlefinance │ ├── idlefinance.md │ └── idlefinance.svg ├── nexus_mutual │ └── nexus_mutual.md ├── phi │ ├── phi.svg │ └── phi.md ├── 0x │ ├── 0x.svg │ └── 0x.md ├── uniswap │ └── uniswap.md ├── ironbank │ └── ironbank.md ├── yearn │ ├── yearn.md │ └── yearn.svg ├── fxs │ ├── fxs.md │ └── fxs.svg ├── frax │ └── frax.md ├── kishimoto │ └── kishimoto.md ├── dai │ ├── dai.md │ └── dai.svg ├── makerdao │ ├── makerdao.md │ └── makerdao.svg ├── dodo │ ├── dodo.md │ └── dodo.svg ├── balancer │ └── balancer.md ├── masq │ └── masq.md ├── zerion │ ├── zerion.md │ └── zerion.svg ├── stafi │ └── stafi.md ├── loopring │ ├── loopring.md │ └── loopring.svg ├── curvefi │ └── curvefi.md ├── TempleDAO │ └── TempleDAO.md ├── fantv │ └── fantv.md ├── liquity │ ├── liquity.md │ └── liquity.svg ├── xdollar │ ├── xdollar.md │ └── xdollar.svg ├── ipor │ ├── ipor.md │ └── ipor.svg ├── fuseio │ └── fuseio.md ├── optimism │ ├── optimism.svg │ └── optimism.md ├── thales │ ├── thales.svg │ └── thales.md ├── bnbchain │ ├── bnbchain.md │ └── bnbchain.svg ├── verse │ └── verse.md ├── 1inch │ └── 1inch.md ├── SKALE │ ├── SKALE.md │ └── skale.svg ├── synthetix │ └── synthetix.md ├── Tokamak-Network │ ├── Tokamak-Network.md │ └── Tokamak-Network.svg ├── lido │ └── lido.md ├── fantiger │ └── fantiger.md ├── gnosis │ ├── gnosis.md │ └── gnosis.svg ├── juicebox │ └── juicebox.md ├── index-coop │ ├── index-coop.md │ └── index-coop.svg ├── badgerdao │ └── badgerdao.md ├── swarm │ ├── swarm.md │ └── swarm.svg ├── fantom │ └── fantom.md ├── zkBob │ └── zkBob.md └── cyberconnect │ └── cyberconnect.md ├── ci ├── README.md ├── package.json ├── mdFileConstraints.js ├── addCustomValidators.js └── check_projects.js ├── .github └── workflows │ └── ci.yaml ├── CODEOWNERS ├── gitcoin └── gitcoin.md └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /pages/gcr/gcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/gcr/gcr.png -------------------------------------------------------------------------------- /pages/RSS3/RSS3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/RSS3/RSS3.png -------------------------------------------------------------------------------- /pages/guild/guild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/guild/guild.png -------------------------------------------------------------------------------- /pages/bancor/bancor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/bancor/bancor.png -------------------------------------------------------------------------------- /pages/erasure/erasure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/erasure/erasure.png -------------------------------------------------------------------------------- /pages/matcha/matcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/matcha/matcha.png -------------------------------------------------------------------------------- /pages/pepemon/pepemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/pepemon/pepemon.png -------------------------------------------------------------------------------- /pages/InsurAce/InsurAce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/InsurAce/InsurAce.png -------------------------------------------------------------------------------- /pages/dhedge/dhedge_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duneanalytics/projects/HEAD/pages/dhedge/dhedge_logo.png -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- 1 | ## CI Scripts 2 | 3 | This directory contains scripts that check the projects all have the expected format and that images are valid. 4 | -------------------------------------------------------------------------------- /ci/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ci", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "check_projects.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Wilhelm", 10 | "license": "ISC", 11 | "dependencies": { 12 | "gray-matter": "^4.0.3", 13 | "validate.js": "^0.13.1" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- 1 | name: Run Checks 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | 9 | steps: 10 | - uses: actions/checkout@v1 11 | - uses: actions/cache@v2 12 | with: 13 | path: 'ci/node_modules' 14 | key: ${{ runner.os }}-modules-${{ hashFiles('ci/package-lock.json') }} 15 | 16 | 17 | - uses: actions/setup-node@v2 18 | with: 19 | node-version: "14" 20 | 21 | - name: Install 22 | working-directory: ci 23 | run: npm install 24 | 25 | - name: Check projects 26 | run: node ci/check_projects.js 27 | -------------------------------------------------------------------------------- /pages/lyra/lyra.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/TrueFi/TrueFi.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "TrueFi" 3 | logo: "TrueFi.svg" 4 | color: "#1a5aff" 5 | schemas: 6 | - "TrueFi" 7 | links: 8 | - name: "Website" 9 | link: "https://truefi.io/" 10 | - name: "Docs" 11 | link: "https://docs.truefi.io/truefi/" 12 | - name: "App" 13 | link: "https://app.truefi.io/" 14 | tags: 15 | - "TrueFi" 16 | - "DeFi" 17 | - "Lending" 18 | dashboards: 19 | - "tt_tyler/truefi-loan-stats" 20 | - "tt_tyler/tru-staking-burns" 21 | queries: [] 22 | 23 | --- 24 | 25 | TrueFi is a protocol for on-chain uncollateralized lending. TrueFi aims to become the ultimate market-driven, automated credit rating and lending system 26 | 27 | *From https://truefi.io/* 28 | -------------------------------------------------------------------------------- /pages/aave/aave.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Aave" 3 | logo: "aave.svg" 4 | color: "#b6509e" 5 | schemas: 6 | - "Aave" 7 | links: 8 | - name: "Website" 9 | link: "https://aave.com/" 10 | - name: "Docs" 11 | link: "https://docs.aave.com/" 12 | - name: "App" 13 | link: "https://app.aave.com/home" 14 | tags: 15 | - "Aave" 16 | - "DeFi" 17 | - "Lending" 18 | dashboards: 19 | - "ABertoG/aave-daily-volume" 20 | - "johaya/aave-research" 21 | - "MatteoLeibowitz/aave_1" 22 | queries: 23 | - 7495 24 | --- 25 | 26 | Aave is an open source and non-custodial protocol enabling the creation of money markets. Users can earn interest on deposits and borrow assets. 27 | 28 | *From https://aave.com/.* 29 | -------------------------------------------------------------------------------- /pages/axelar/axelar.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Axelar" 3 | logo: "axelar.svg" 4 | color: "#379DF5" 5 | schemas: 6 | - "axelar" 7 | links: 8 | - name: "Website" 9 | link: "https://axelar.network/" 10 | - name: "Docs" 11 | link: "https://docs.axelar.dev/" 12 | tags: 13 | - "Axelar" 14 | - "AxelarNetwork" 15 | - "AXL" 16 | - "crosschain" 17 | - "interchain" 18 | dashboards: 19 | - "axelarnetwork/axelar" 20 | queries: 21 | - 2158769 22 | - 1988747 23 | - 1988751 24 | --- 25 | 26 | Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click. 27 | 28 | _From https://axelar.network/_ 29 | -------------------------------------------------------------------------------- /pages/BoringDAO/BoringDAO.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "BoringDAO" 3 | logo: "BoringDAO.svg" 4 | color: "#0078F0" 5 | schemas: 6 | - "BoringDAO" 7 | links: 8 | - name: "Website" 9 | link: "https://boringdao.com/" 10 | - name: "Docs" 11 | link: "https://docs.boringdao.com/" 12 | - name: "App" 13 | link: "https://app.boringdao.com/" 14 | tags: 15 | - "BoringDAO" 16 | - "DeFi" 17 | - "Bitcoin" 18 | - "Wrapper" 19 | dashboards: 20 | - "eliasimos/btc-on-ethereum_1" 21 | queries: 22 | - 4999 23 | --- 24 | 25 | BoringDAO is a decentralized bridge that connects all blockchain assets, we offer users a safe way to maximize their utilization rate of crypto assets. 26 | 27 | *From https://boringdao.com/.* 28 | 29 | -------------------------------------------------------------------------------- /pages/alkemi/alkemi.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Alkemi" 3 | logo: "alkemi.svg" 4 | color: "#b6509e" 5 | schemas: 6 | - "Alkemi" 7 | links: 8 | - name: "Website" 9 | link: "https://alkemi.network/" 10 | - name: "Docs" 11 | link: "https://docs.alkemi.network/alkemi-network/" 12 | - name: "App" 13 | link: "https://earn.alkemi.network/dashboard" 14 | tags: 15 | - "Alkemi" 16 | - "DeFi" 17 | - "Lending" 18 | dashboards: 19 | - "warbuxx87/Alkemi-Network" 20 | - "elliott/Alkemi-Earn" 21 | queries: [] 22 | --- 23 | 24 | Alkemi is building an on-chain liquidity network with a suite of tools and products that serve as onramps for everyone to participate in decentralized finance. 25 | 26 | *From https://alkemi.network* 27 | -------------------------------------------------------------------------------- /pages/airswap/airswap.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "AirSwap" 3 | logo: "airswap.svg" 4 | color: "#2B71FF" 5 | schemas: 6 | - "airswap" 7 | links: 8 | - name: "Website" 9 | link: "https://airswap.io/" 10 | - name: "Docs" 11 | link: "https://about.airswap.io/" 12 | - name: "App" 13 | link: "https://airswap.io" 14 | tags: 15 | - "AirSwap" 16 | - "DeFi" 17 | - "OTC" 18 | - "P2P" 19 | dashboards: 20 | - "airswap/airswap-v3" 21 | - "airswap/AirSwap-Treasury" 22 | 23 | --- 24 | 25 | AirSwap is an open developer community focused on decentralized trading systems. AirSwap technology powers peer-to-peer networks using RFQ and LastLook protocols. 26 | Providing non-slippage trades. 27 | 28 | *From https://about.airswap.io/.* 29 | -------------------------------------------------------------------------------- /pages/instadapp/instadapp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | /pages/yearn/ @milkyklim 2 | /pages/balancer/ @markusbkoch 3 | /pages/unitprotocol/ @milkyklim 4 | /pages/bancor/ @schoeler 5 | /pages/liquity/ @edmulraney @danielattilasimon @koltenb @RickGriff @bingen @cvalkan @bojan-liquity 6 | /pages/badgerdao/ @jorijnsmit 7 | /pages/xdollar/ @leifu 8 | /pages/1Hive/ @hernandoagf 9 | /pages/index-coop/ @josephd8 10 | /pages/InsurAce/ @insurace-yuxuan 11 | /pages/frax/ @dannywitters 12 | /pages/fxs/ @dannywitters 13 | /pages/gcr/ @datumscientist 14 | /pages/phuture/ @olivermehr 15 | /pages/bnbchain/ @9012Jessie 16 | /pages/ironbank/ @mmibmm 17 | /pages/swarm/ @tonytony32 18 | /pages/ipor/ @mario-ipor @pete-ipor @rav-ipor @kris-ipor @amydlarz @wookash-ipor @alvaro-ipor 19 | /pages/nexus_mutual/ @rmelbardis @clmnxm @guyhow 20 | -------------------------------------------------------------------------------- /pages/matcha/matcha.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Matcha" 3 | logo: "matcha.png" 4 | color: "#5d69e9" 5 | schemas: 6 | - "zeroex" 7 | - "zeroex_v1" 8 | - "zeroex_v2" 9 | - "zeroex_v3" 10 | links: 11 | - name: "Website" 12 | link: "https://matcha.xyz" 13 | - name: "0x Website" 14 | link: "https://0x.org/" 15 | tags: 16 | - "0x" 17 | - "DeFi" 18 | - "DEX" 19 | related: 20 | - "0x" 21 | dashboards: 22 | - "0x/matcha" 23 | queries: 24 | - 5351 25 | --- 26 | 27 | Matcha is a crypto trading platform powered by 0x Labs. 28 | 29 | We are a decentralized exchange meaning that users swap their tokens peer-to-peer through the Ethereum smart contract infrastructure. We provide you with the best prices while allowing you to retain complete custody of your tokens throughout the entire trading process. 30 | 31 | *From http://help.matcha.xyz/.* 32 | -------------------------------------------------------------------------------- /pages/neptune-mutual/neptune-mutual.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Neptune Mutual" 3 | logo: "neptune-mutual.svg" 4 | color: "#01052d" 5 | schemas: [] 6 | links: 7 | - name: "Website" 8 | link: "https://neptunemutual.com/" 9 | - name: "Docs" 10 | link: "https://docs.neptunemutual.com/" 11 | - name: "App" 12 | link: "https://app.neptunemutual.com/" 13 | tags: 14 | - "NPM" 15 | - "Neptune Mutual" 16 | - "DeFi" 17 | - "Insurance" 18 | dashboards: [] 19 | queries: [] 20 | 21 | --- 22 | 23 | Neptune mutual follows a parametric insurance model, meaning it provides payout on the basis of parameters instead of individual claim assessments. Upon the resolution of an incident, all the policyholders of the affected protocol will receive the payouts. Neptune Mutual eliminates individual claim assessments which makes policy easy to claim, faster, and much more reliable. 24 | 25 | *From https://neptunemutual.com/* -------------------------------------------------------------------------------- /ci/mdFileConstraints.js: -------------------------------------------------------------------------------- 1 | // Contraints for properties in the md-files 2 | // Used with validate.js: https://validatejs.org/#validators 3 | 4 | require('./addCustomValidators'); 5 | 6 | module.exports = { 7 | name: { 8 | presence: true, 9 | type: "string", 10 | }, 11 | logo: { 12 | type: "string", 13 | }, 14 | color: { 15 | type: "string", 16 | }, 17 | tags: { 18 | type: "array", 19 | }, 20 | schemas: { 21 | type: "array", 22 | }, 23 | dashboards: { 24 | type: "array", 25 | }, 26 | queries: { 27 | type: "array", 28 | }, 29 | links: { 30 | type: "array", 31 | }, 32 | embeds: { 33 | type: "array", 34 | eachSatisfies: { 35 | name: { 36 | type: "string", 37 | presence: true, 38 | }, 39 | link: { 40 | validEmbedLink: true, 41 | presence: true, 42 | }, 43 | }, 44 | }, 45 | related: { 46 | type: "array", 47 | }, 48 | }; 49 | -------------------------------------------------------------------------------- /pages/dydx/dydx.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "dYdX" 3 | logo: "dydx.svg" 4 | color: "#146dd9" 5 | schemas: 6 | - "dydx" 7 | - "dydx_perpetual" 8 | links: 9 | - name: "dYdX" 10 | link: "https://dydx.exchange/" 11 | - name: "Perpetuals" 12 | link: "https://dydx.exchange/perpetual/" 13 | - name: "Docs" 14 | link: "https://docs.dydx.exchange/#introduction" 15 | tags: 16 | - "dydx" 17 | - "defi" 18 | - "dex" 19 | dashboards: 20 | - "dgog/dydx_6" 21 | - "tomhschmidt/dydx_4" 22 | - "MatteoLeibowitz/liquidation-success-rate" 23 | embeds: 24 | - name: "dYdX Users" 25 | link: "https://explore.duneanalytics.com/embed/query/8354/visualization/16743?api_key=acVCjTfYx8pZwe9Iwdr0YZapc8qg5DjhV6SSV4Lf" 26 | --- 27 | 28 | dYdX is a decentralized trading platform that currently supports margin trading, spot trading, lending, and borrowing. dYdX runs on smart contracts on the Ethereum blockchain, and allows users to trade with no intermediaries. 29 | 30 | *From https://docs.dydx.exchange/* 31 | -------------------------------------------------------------------------------- /pages/InsurAce/InsurAce.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "InsurAce" 3 | logo: "InsurAce.png" 4 | color: "#2DB269" 5 | schemas: 6 | - "insurace" 7 | links: 8 | - name: "Website" 9 | link: "https://insurace.io/" 10 | - name: "Docs" 11 | link: "https://docs.insurace.io/" 12 | - name: "App" 13 | link: "https://app.insurace.io/" 14 | tags: 15 | - "insurace" 16 | - "insurance" 17 | - "DeFi" 18 | related: [] 19 | dashboards: 20 | - "Zy/InsurAce-Cover-Statistics" 21 | - "Zy/InsurAce" 22 | queries: [] 23 | embeds: 24 | - name: "Cover Count Distribution - Currency" 25 | link: "https://dune.xyz/embeds/90248/180192/ab80109f-773e-496e-8849-11f112a98795" 26 | - name: "Staking Count Distribution - Currency" 27 | link: "https://dune.xyz/embeds/90251/180196/924ab03f-5787-4939-8f15-93737d4adf90" 28 | --- 29 | 30 | InsurAce is a leading decentralized insurance protocol, providing reliable, robust and secure insurance services to DeFi users, allowing them to secure their investment funds against various risks. 31 | -------------------------------------------------------------------------------- /pages/keep/keep.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Keep" 3 | logo: "keep.svg" 4 | color: "#98FF98" 5 | schemas: 6 | - "keep" 7 | - "keep_v110" 8 | links: 9 | - name: "Website" 10 | link: "https://keep.network/" 11 | - name: "GitHub" 12 | link: "https://github.com/keep-network/" 13 | - name: "tBTC" 14 | link: "https://tbtc.network/" 15 | - name: "Whitepaper" 16 | link: "https://docs.keep.network/tbtc/index.html" 17 | tags: 18 | - "keep" 19 | - "tBTC" 20 | dashboards: 21 | - "itzler/tbtc" 22 | - "tianqi/tbtc_1-1-0-tian7-eth-5457_1" 23 | queries: 24 | - 4813 25 | - 10502 26 | - 4811 27 | embeds: 28 | - name: "tBTC Accumulative Amount" 29 | link: "https://explore.duneanalytics.com/embed/query/10502/visualization/20875?api_key=PbkY24oLaN8VhNFBXah7yj9cGnMErWkhZKU2lb7A" 30 | --- 31 | 32 | A keep stores your data and protects it from censorship, so what you store always stays yours. 33 | 34 | tBTC lets Bitcoin holders deposit and redeem BTC in DeFi without centralized intermediaries. 35 | 36 | *From https://keep.network/.* 37 | -------------------------------------------------------------------------------- /pages/cega/cega.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "cega" 3 | logo: "cega.svg" 4 | color: "#EAEAEE" 5 | schemas: 6 | - "cega_v1" 7 | links: 8 | - name: "Cega" 9 | link: "https://www.cega.fi/" 10 | - name: "Docs" 11 | link: "https://docs.cega.fi/cega/" 12 | - name: "Medium" 13 | link: "https://cegafi.medium.com/" 14 | - name: "Twitter" 15 | link: "https://twitter.com/cega_fi" 16 | tags: 17 | - "Cega" 18 | - "Ethereum" 19 | - "Options" 20 | - "DeFi" 21 | - "Exotic Options" 22 | dashboards: 23 | - "cega/cega-ethereum-v1" 24 | embeds: 25 | - name: "Cega Total Value Locked on Ethereum" 26 | link: "https://dune.com/embeds/2457192/4039858/a7284a40-96e1-484b-a99b-cc00c25f16b5" 27 | - name: "Cega Net Yield on Ethereum" 28 | link: "https://dune.com/embeds/2460990/4047035/a7284a40-96e1-484b-a99b-cc00c25f16b5" 29 | --- 30 | 31 | Cega is an exotic derivatives protocol. We build exotic options structured products for retail investors that generate superior yield and offer built-in protection against market downturns. 32 | 33 | *From https://docs.cega.fi/cega/* 34 | -------------------------------------------------------------------------------- /pages/instadapp/instadapp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Instadapp" 3 | 4 | logo: "instadapp.svg" 5 | 6 | color: "#4E80EE" 7 | 8 | schemas: 9 | - "Instadapp" 10 | 11 | links: 12 | - name: "Website" 13 | link: "https://instadapp.io/" 14 | - name: "Instadapp Lite" 15 | link: "https://lite.instadapp.io/" 16 | - name: "Avocado" 17 | link: "https://avocado.instadapp.io/" 18 | - name: "Github" 19 | link: "https://github.com/instadapp" 20 | 21 | tags: 22 | - "Instadapp" 23 | - "DSA" 24 | - "INST" 25 | - "DeFi" 26 | - "Avocado" 27 | 28 | dashboards: 29 | - "murathan/instadapp-lite-v2-ieth-vault" 30 | - "murathan/avocado-wallet" 31 | - "shippooordao/Instadapp-Flashloan-Aggregator-Dashboard" 32 | - "murathan/instadapp-revenue-dashboard" 33 | 34 | queries: 35 | - 2329499 36 | --- 37 | 38 | Instadapp is a comprehensive DeFi platform that builds tools for both developers and users. With a range of products spanning across the DeFi ecosystem. Instadapp empowers its users to access a multitude of applications and features, from smart wallets to complex automated vault strategies. 39 | -------------------------------------------------------------------------------- /pages/rook/rook.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "ROOK" 3 | logo: "rook_logo.svg" 4 | color: "#1e81d2" 5 | schemas: 6 | - "keeperdao_v2" 7 | - "rook" 8 | links: 9 | - name: "Website" 10 | link: "https://www.rook.fi/" 11 | - name: "App" 12 | link: "https://app.rook.fi" 13 | - name: "Docs" 14 | link: "https://docs.rook.fi/reference/" 15 | - name: "Blog" 16 | link: "https://www.rookbase.xyz/" 17 | - name: "Rook Forum" 18 | link: "https://forum.rook.fi/" 19 | - name: "Discord" 20 | link: "https://discord.gg/rook" 21 | - name: "Twitter" 22 | link: "https://twitter.com/rook" 23 | 24 | tags: 25 | - "ROOK" 26 | - "DeFi" 27 | - "DEX" 28 | - "Aggregator" 29 | related: [] 30 | dashboards: 31 | - "rook/rook-ecosystem" 32 | - "rook/rook-protocol" 33 | - "rook/rook-treasury" 34 | - "rook/rook-cvx-investment-review" 35 | - "rook/rook-rewards" 36 | queries: [] 37 | embeds: 38 | - name: "ROOK Protocol - Daily Transaction Volume" 39 | link: "https://dune.com/embeds/666273/1237132/1acd55d3-63dd-419f-9743-d5b2a4405928" 40 | 41 | --- 42 | 43 | **Rook - Own Your Order Flow!** 44 | -------------------------------------------------------------------------------- /pages/tellor/tellor.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Tellor" 3 | logo: "tellor.svg" 4 | color: "#00AE99" 5 | schemas: 6 | - "Tellor" 7 | links: 8 | - name: "Website" 9 | link: "https://www.tellor.io" 10 | - name: "Docs" 11 | link: "https://docs.tellor.io" 12 | - name: "Github" 13 | link: "https://www.github.com/tellor-io" 14 | tags: 15 | - "Tellor" 16 | - "oracle" 17 | - "DeFi" 18 | dashboards: 19 | - "thefett/tellor" 20 | queries: 21 | - 12789 22 | - 2406 23 | - 2405 24 | - 2404 25 | - 2402 26 | - 2325 27 | - 2384 28 | 29 | embeds: 30 | - name: "Tellor Daily Miners" 31 | link: "https://duneanalytics.com/embeds/2405/4518/G1jI9IIIiba4Vk2wNfwrUOzCq4bRrQiSVpDYryMm" 32 | --- 33 | 34 | # Censorship Resistant Data Feeds 35 | Tellor is a permissionless community of token holders, 36 | data providers, and validators working together as a decentralized oracle. 37 | 38 | # Tellor Tributes (TRB) 39 | TRB is an ERC-20 token and an integral part of Tellor Network. TRB is the glue that connects and incentivizes different stakeholders in Tellor's ecosystem. 40 | 41 | *From https://www.tellor.io* 42 | -------------------------------------------------------------------------------- /pages/rai/rai.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "RAI" 3 | logo: "rai.svg" 4 | color: "#4ce096" 5 | schemas: 6 | - "reflexer" 7 | links: 8 | - name: "Website" 9 | link: "https://reflexer.finance/" 10 | - name: "Docs" 11 | link: "https://docs.reflexer.finance/" 12 | - name: "App" 13 | link: "https://app.reflexer.finance/" 14 | tags: 15 | - "RAI" 16 | - "Reflexer" 17 | - "DeFi" 18 | related: [] 19 | dashboards: 20 | - "quit/RAI" 21 | - "hagaetc/dex-metrics" 22 | embeds: 23 | - name: "Daily Rai transaction volume" 24 | link: "https://duneanalytics.com/embeds/32353/65170/a758ee9f-a646-4d5d-bf34-23c09f96f56c" 25 | - name: "Oustanding RAI" 26 | link: "https://duneanalytics.com/embeds/32306/65035/fa7a20d1-ec32-4191-8360-ce8008e071ba" 27 | - name: "ETH Locked" 28 | link: "https://duneanalytics.com/embeds/32373/65223/60e56c27-057e-4a1f-b010-f1826cddb722" 29 | --- 30 | 31 | RAI is a non pegged, ETH backed stable asset. It is useful as more "stable" collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate. 32 | 33 | *From https://docs.reflexer.finance/.* 34 | -------------------------------------------------------------------------------- /pages/tornado/tornado.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "tornado.cash" 3 | logo: "tornado.svg" 4 | color: "#94febf" 5 | schemas: 6 | - "tornado_cash" 7 | links: 8 | - name: "tornado.cash" 9 | link: "https://tornado.cash/" 10 | - name: "Github" 11 | link: "https://github.com/tornadocash" 12 | dashboards: 13 | - "poma/tornado-cash_1" 14 | queries: 15 | - 4608 16 | embeds: 17 | - name: "Deposits and Withdrawals" 18 | link: "https://explore.duneanalytics.com/embed/query/7716/visualization/15369?api_key=GWWfGKZdNb0KtevrLyfnPlaMaXiwoXWcc19hDJH1" 19 | --- 20 | 21 | Tornado improves transaction privacy by breaking the on-chain link between recipient and destination addresses. It uses a smart contract that accepts ETH deposits that can be withdrawn by a different address. Whenever ETH is withdrawn by the new address, there is no way to link the withdrawal to the deposit, ensuring complete privacy. 22 | 23 | In this way, Tornado.cash acts as a proxy to ensure that the transaction is 100% anonymous with zkSnarks proofs. 24 | 25 | *From https://medium.com/@tornado.cash/introducing-private-transactions-on-ethereum-now-42ee915babe0* 26 | -------------------------------------------------------------------------------- /pages/compound/compound.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Compound" 3 | logo: "compound.svg" 4 | color: "#00d395" 5 | schemas: 6 | - "compound" 7 | links: 8 | - name: "Website" 9 | link: "https://compound.finance" 10 | - name: "Docs" 11 | link: "https://compound.finance/docs" 12 | - name: "App" 13 | link: "https://app.compound.finance" 14 | tags: 15 | - "compound" 16 | - "DeFi" 17 | - "DEX" 18 | dashboards: 19 | - "messari/Messari:-Compound-Macro-Financial-Statements" 20 | - "datanut/Compound-Finance-Deposits-and-Loans" 21 | - "PierreYves_Gendron/WIP-COMP" 22 | - "lsquared/compound-governance" 23 | queries: 24 | - 26872 25 | embeds: 26 | - name: "Compound monthly net borrowing activity (in USD)" 27 | link: "https://dune.xyz/embeds/26872/54425/adf66f43-4886-4e14-bf19-a168c786dcfc" 28 | --- 29 | 30 | **Compound** is an algorithmic, autonomous interest rate protocol built for developers, to unlock a universe of open financial applications. 31 | 32 | The majority of cryptocurrencies sit idle on exchanges and in wallets, without yielding interest. We're on a mission to change that. 33 | 34 | *From https://compound.finance/.* 35 | -------------------------------------------------------------------------------- /pages/pepemon/pepemon.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "PEPEMON.finance" 3 | logo: "pepemon.png" 4 | color: "#154c79" 5 | schemas: 6 | - "pepemon" 7 | links: 8 | - name: "Website" 9 | link: "https://pepemon.world/" 10 | - name: "Platform" 11 | link: "https://pepemon.finance/" 12 | - name: "Docs" 13 | link: "https://docs.pepemon.world/" 14 | - name: "Medium" 15 | link: "https://pepemonfinance.medium.com/" 16 | - name: "OpenSea" 17 | link: "https://opensea.io/collection/pepemonfactory" 18 | tags: 19 | - "pepemon" 20 | - "DeFi" 21 | - "NFT" 22 | - "PPBLZ" 23 | - "PPDEX" 24 | dashboards: 25 | - "wiz1989/pepeboard" 26 | - "pepemon/pepenalytics-0-0-1" 27 | embeds: 28 | - name: "PPBLZ staked (main token)" 29 | link: "https://duneanalytics.com/embeds/20996/43207/dByR17bZs0boA8oRFxPZwcbfmk7Vfgz3C4TFmskW" 30 | - name: "PPDEX supply (shop token)" 31 | link: "https://duneanalytics.com/embeds/21626/44804/tPoMY3lKdhlsEq4oF1dZMza5JAHN3meOd2KcsKyK" 32 | --- 33 | 34 | **PEPEMON.finance** The Degentralized Platform. 35 | 36 | PEPEMON.finance is a digital collectible card game on Blockchain. Powered by DeFi and using NFTs as in-game assets. 37 | -------------------------------------------------------------------------------- /pages/kyber/kyber.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Kyber" 3 | logo: "kyber.svg" 4 | color: "#31cb9e" 5 | schemas: 6 | - "kyber" 7 | links: 8 | - name: "Website" 9 | link: "https://kyber.network" 10 | - name: "Docs" 11 | link: "https://developer.kyber.network/" 12 | - name: "KyberSwap" 13 | link: "https://kyberswap.com/" 14 | - name: "KyberDAO" 15 | link: "https://kyber.org" 16 | tags: 17 | - "Kyber" 18 | - "DeFi" 19 | dashboards: 20 | - "ha.hoang/kyber-network_2" 21 | - "devinwalsh/0x" 22 | queries: 23 | - 3612 24 | embeds: 25 | - name: "Kyber Daily Volume" 26 | link: "https://explore.duneanalytics.com/embed/query/3608/visualization/7005?api_key=jUv2NGKD1bi0jmurhObytqhe0nZUjYSoHxWS40T9" 27 | --- 28 | 29 | # Seamless Token Swaps, Anywhere 30 | Kyber is a blockchain-based liquidity protocol that aggregates liquidity from a wide range of reserves, powering instant and secure token exchange in any decentralized application. 31 | 32 | # Kyber Network Crystal (KNC) 33 | KNC is an ERC-20 utility token and an integral part of Kyber Network. KNC is the glue that connects different stakeholders in Kyber's ecosystem. 34 | 35 | *From https://kyber.network* 36 | -------------------------------------------------------------------------------- /pages/barnbridge/barnbridge.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "BarnBridge" 3 | logo: "barnbridge.svg" 4 | color: "#FF4339" 5 | schemas: 6 | - "barnbridge" 7 | links: 8 | - name: "Website" 9 | link: "https://barnbridge.com/" 10 | - name: "FAQ" 11 | link: "https://barnbridge.gitbook.io/docs/faq" 12 | - name: "App" 13 | link: "https://app.barnbridge.com/pools" 14 | tags: 15 | - "BarnBridge" 16 | - "DeFi" 17 | - "tranches" 18 | - "TokenizedRisk" 19 | dashboards: 20 | - "0xBoxer/barnbridge" 21 | embeds: 22 | - name: "BarnBridge Pool 1 TVL" 23 | link: "https://explore.duneanalytics.com/embed/query/13948/visualization/27938?api_key=IdIdbz1yqMd8WzR91L4Yq5QhmagbFE3kRC9BkquX" 24 | - name: "BarnBridge Deposits/Withdrawals" 25 | link: "https://explore.duneanalytics.com/embed/query/13951/visualization/27947?api_key=hMnQysAgmDist8grP9lJVbl2c0fTunXdbyCvpPoC" 26 | --- 27 | 28 | **BarnBridge** is the first risk tokenizing protocol. It allows hedging yield sensitivity and market price. 29 | 30 | The purpose of BarnBridge is to integrate with other protocols letting hedging the yield risks on those lending and other platforms. 31 | 32 | *From https://barnbridge.com/.* 33 | -------------------------------------------------------------------------------- /pages/idlefinance/idlefinance.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "idle.finance" 3 | logo: "idlefinance.svg" 4 | color: "#1c5df0" 5 | schemas: 6 | - "idle_dao" 7 | - "idlefinance_v1" 8 | - "idle_v2" 9 | - "idle_v3" 10 | - "idle_v4" 11 | links: 12 | - name: "Website" 13 | link: "https://idle.finance/" 14 | - name: "Staking" 15 | link: "https://app.idle.finance/#/stake" 16 | - name: "Governance" 17 | link: "https://gov.idle.finance/" 18 | - name: "Docs" 19 | link: "https://docs.idle.finance/" 20 | tags: 21 | - "idle" 22 | - "idle finance" 23 | - "yield aggregator" 24 | - "yield automation" 25 | - "yield" 26 | - "DeFi" 27 | dashboards: 28 | - "idle.finance/Idle-Finance-Revenue-Outlook" # revenues from products 29 | - "idle.finance/Rebalancer-Cost-Outlook" 30 | - "idle.finance/Idle.finance-B2B-Affiliate-Program-Dashboard" 31 | - "idle.finance/Idle-DAO-Treasury-(ETH)" 32 | queries: 33 | - 32683 34 | - 48316 35 | - 40255 36 | --- 37 | 38 | DeFi yields aren’t easy to manage. Idle makes you feel like they are. We build first-rate yield optimization and risk tranching strategies. Get the best yield by using, integrating or building on top products that will never allow your funds to sit still. 39 | -------------------------------------------------------------------------------- /pages/nexus_mutual/nexus_mutual.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Nexus Mutual" 3 | logo: "nexus_mutual.svg" 4 | color: "#0AB682" 5 | schemas: 6 | - "nexusmutual" 7 | links: 8 | - name: "Website" 9 | link: "https://nexusmutual.io/" 10 | - name: "Docs" 11 | link: "https://docs.nexusmutual.io/" 12 | - name: "App" 13 | link: "https://app.nexusmutual.io/" 14 | tags: 15 | - "Nexus Mutual" 16 | - "NXM" 17 | - "DeFi" 18 | - "Insurance" 19 | dashboards: 20 | - "nexus_mutual/covers" 21 | - "nexus_mutual/claims" 22 | - "nexus_mutual/capital-pool-and-ownership" 23 | - "nexus_mutual/staking" 24 | - "rchen8/nexus-mutual" 25 | embeds: 26 | - name: "Total claims paid by Nexus Mutual" 27 | link: "https://dune.com/embeds/1423820/2638601" 28 | 29 | --- 30 | Nexus Mutual is the insurance alternative for crypto and more. 31 | 32 | It enables members to share risks. A real member-powered insurance alternative. 33 | Experts manage capital and provide cover within a globally accessible risk marketplace. 34 | 35 | The Nexus Mutual protocol is built on Ethereum and provides the infrastructure for members to buy cover, underwrite risk, assess claims, and build risk management businesses. 36 | 37 | Explore more at https://nexusmutual.io 38 | -------------------------------------------------------------------------------- /gitcoin/gitcoin.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "gitcoin" 3 | logo: "gitcoin.svg" 4 | color: "#00d395" 5 | schemas: 6 | - "gitcoin" 7 | links: 8 | - name: "Website" 9 | link: "https://gitcoin.co/" 10 | - name: "Grants" 11 | link: "https://gitcoin.co/grants/" 12 | - name: "Hackthons" 13 | link: "https://gitcoin.co/hackathons" 14 | - name: "Passport" 15 | link: "https://passport.gitcoin.co/" 16 | tags: 17 | - "GTC" 18 | - "Gitcoin" 19 | - "GitcoinDao" 20 | related: 21 | - "GitcoinDao" 22 | dashboards: 23 | - "ivanmolto/Gitcoin-DAO" 24 | - "gm365/gitcoin" 25 | queries: 26 | - 501123 27 | embeds: 28 | - name: "GitcoinDAO: Total GTC Delegated over time" 29 | link: "https://dune.com/embeds/501123/948378/dc97452e-c991-47e1-bf99-48b2ae6876f7" 30 | --- 31 | 32 | Gitcoin is a community of over 300k active developers and builders. We’ve helped thousands of projects and teams grow open source ecosystems with over $70M in funding. We believe in financial freedom, global coordination, and a brighter collective future for the open web. We’re building the world’s leading platform for running web3 events (gitcoin.co/hackathons) and building & funding open source projects (gitcoin.co/grants). 33 | 34 | _From https://gitcoin.co/about_ 35 | -------------------------------------------------------------------------------- /pages/phi/phi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | phi logo bold 8080ff-white@1x 4 | 5 | 12 | 13 | -------------------------------------------------------------------------------- /ci/addCustomValidators.js: -------------------------------------------------------------------------------- 1 | // Add custom validators 2 | const validate = require('validate.js/validate'); 3 | 4 | // Used to validate each item in array 5 | validate.validators.eachSatisfies = (array, itemConstraints) => { 6 | if (!array) { 7 | return null; 8 | } 9 | if (!Array.isArray(array)) { 10 | // Don't return error here. Use `type: "array"` to validate that it's an array. 11 | return null; 12 | } 13 | 14 | const errors = array 15 | .map((item) => validate(item, itemConstraints)) 16 | .filter(Boolean) 17 | 18 | return errors.length === 0 ? null : { errors: errors } 19 | } 20 | 21 | // Used to validate embed link urls 22 | validate.validators.validEmbedLink = (link) => { 23 | if (!link) { 24 | return "can't be blank"; 25 | } 26 | const match = link.match( 27 | link.includes("/embeds/") 28 | ? new RegExp("/embeds/(\\d+)/(\\d+)/?([^/?#]+)?") 29 | : new RegExp("/query/(\\d+)/visualization/(\\d+)\\?api_key=([^&#]+)") 30 | ); 31 | 32 | if (match?.length !== 4) { 33 | return `has invalid url: ${link} – Must match either` 34 | + ` /embeds/{query_id}/{viz_id}/{api_key} or` 35 | + ` /query/{query_id}/visualization/{viz_id}?api_key={api_key}` 36 | } 37 | 38 | return null; 39 | } 40 | -------------------------------------------------------------------------------- /pages/0x/0x.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/BoringDAO/BoringDAO.svg: -------------------------------------------------------------------------------- 1 | 画板 2logo -------------------------------------------------------------------------------- /pages/uniswap/uniswap.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Uniswap" 3 | logo: "uniswap.svg" 4 | color: "#ff007a" 5 | schemas: 6 | - "uniswap" 7 | links: 8 | - name: "Website" 9 | link: "https://uniswap.org" 10 | - name: "Docs" 11 | link: "https://uniswap.org/docs/v2" 12 | - name: "App" 13 | link: "https://app.uniswap.org" 14 | tags: 15 | - "uniswap" 16 | - "DeFi" 17 | - "DEX" 18 | dashboards: 19 | - "MatteoLeibowitz/uniswap-community" 20 | - "lsquared/uniswap-governance" 21 | - "danrobinson/uniswap-combined-metrics" 22 | embeds: 23 | - name: "Uniswap Weekly volume" 24 | link: "https://explore.duneanalytics.com/embed/query/7867/visualization/15678?api_key=0jqZBJ3gFo2akmqhcBPwCgG11dXEDey8m3NlkvF6" 25 | - name: "Cumulative Uniswap volume" 26 | link: "https://explore.duneanalytics.com/embed/query/8086/visualization/16180?api_key=AfneRAzINw7GQeEOYd6ixGKZUL8A0RfalGTXvmEP" 27 | --- 28 | 29 | **Uniswap** is a fully decentralized protocol for automated liquidity provision on Ethereum. 30 | 31 | A simple formalized equation drives unstoppable liquidity for thousands of users and hundreds of applications. 32 | 33 | Uniswap empowers developers, liquidity providers and traders to participate in a financial marketplace that is open and accessible to all. 34 | 35 | *From https://uniswap.org/.* 36 | -------------------------------------------------------------------------------- /pages/RSS3/RSS3.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "RSS3" 3 | logo: "RSS3.png" 4 | color: "#0072FF" 5 | schemas: 6 | - "rss3" 7 | links: 8 | - name: "Website" 9 | link: "https://rss3.io/" 10 | - name: "FAQ" 11 | link: "https://rss3.io/faq.html#faq" 12 | - name: "Blog" 13 | link: "https://rss3.notion.site/" 14 | - name: "Staking" 15 | link: "https://staking.rss3.events/" 16 | tags: 17 | - "Protocol" 18 | - "Syndication" 19 | - "Aggregator" 20 | - "RSS3" 21 | dashboards: 22 | - "vortice/RSS3" 23 | queries: 24 | - 644505 25 | - 632802 26 | embeds: 27 | - name: "$RSS3 holders over time" 28 | link: "https://dune.com/embeds/631782/1177360/5b08248b-5845-40da-b617-09743a78e111" 29 | --- 30 | 31 | RSS3 is an open information syndication protocol that aims to support efficient and decentralized information distribution in Web3. 32 | 33 | Derived from the best out of RSS, RSS3 is an open information syndication protocol that aims to support efficient and decentralized information distribution in Web3. It defines the format of information presence and communication, with this elegantly designed, user-friendly content format, clients can easily access a variety of content sources in a uniform format without the need for extensive compatibility logic. 34 | 35 | *From https://rss3.io/#why-rss3* -------------------------------------------------------------------------------- /pages/ironbank/ironbank.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "IronBank" 3 | logo: "ironbank.svg" 4 | color: "#009444" 5 | schemas: 6 | - "ironbank" 7 | links: 8 | - name: "Website" 9 | link: "https://app.ib.xyz/" 10 | - name: "Docs" 11 | link: "https://docs.ib.xyz/" 12 | - name: "App" 13 | link: "https://app.ib.xyz/" 14 | tags: 15 | - "IronBank" 16 | - "DeFi" 17 | - "Lending" 18 | dashboards: 19 | - "ironbank/users-in-ethereum" 20 | - "ironbank/governance-in-optimism" 21 | - "ironbank/deposit-and-loans-in-ethereum" 22 | - "nishin/ironbank" 23 | embeds: 24 | - name: "Weekly Net Supply Activity in USD" 25 | link: "https://dune.com/embeds/1675748/2773917/823e6557-c04f-4458-81c3-43633d660005" 26 | - name: "Weekly Accrued Interest in USD" 27 | link: "https://dune.com/embeds/1620800/2782513/3d2fdede-0421-4d68-9cca-7f16673eabda" 28 | 29 | --- 30 | 31 | **IronBank** is a blockchain agnostic, decentralized peer to peer lending platform based on a fork of Compound Finance. 32 | Iron Bank bridges liquidity across underserved assets by providing algorithmic money markets to these underserved assets. Users can supply any supported assets and use these supplied assets as collateral to borrow any other supported assets. Iron Bank has launched on Ethereum, Fantom, Avalance and Optimism. 33 | 34 | *From https://app.ib.xyz/_ 35 | -------------------------------------------------------------------------------- /pages/yearn/yearn.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "yearn.finance" 3 | logo: "yearn.svg" 4 | color: "#1c5df0" 5 | schemas: 6 | - "yearn" 7 | links: 8 | - name: "Website" 9 | link: "https://yearn.finance" 10 | - name: "Staking" 11 | link: "https://ygov.finance" 12 | - name: "Governance" 13 | link: "https://gov.yearn.finance" 14 | - name: "Docs" 15 | link: "https://docs.yearn.finance" 16 | tags: 17 | - "yearn" 18 | - "yield" 19 | - "DeFi" 20 | dashboards: 21 | - "milkyklim/t_1" # yvaults 22 | - "0xBoxer/-yfi-token-allocation" 23 | - "milkyklim/yearn-governance-yfi-" 24 | - "milkyklim/yearn" # initial distribution 25 | queries: 26 | - 10944 27 | - 10946 28 | embeds: 29 | - name: "YFI Staking" 30 | link: "https://duneanalytics.com/embeds/14531/29543/dAdsJxW0p4sYgYVUQCrIQs7ttoGcl16MTyQN3ZbD" 31 | - name: "Governance Rewards" 32 | link: "https://explore.duneanalytics.com/embed/query/10944/visualization/21741?api_key=TH1oOoZAZCKqx1bNoASR7FR0GLI7NwoIrVgnMqX7" 33 | - name: "YFI Governance Staking" 34 | link: "https://explore.duneanalytics.com/embed/query/10946/visualization/21746?api_key=x5bQnZwZpYq6HYoWAeM3XL9TB5QA5ewIK3pPRwXu" 35 | --- 36 | 37 | DeFi made simple. **yearn.finance** is a decentralized investment aggregator that leverages composability and uses automated strategies to earn high yield on crypto assets. 38 | -------------------------------------------------------------------------------- /pages/fxs/fxs.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "FXS" 3 | logo: "fxs.svg" 4 | color: "#f2f2f2" 5 | schemas: 6 | - "frax" 7 | - "fraxfinance" 8 | links: 9 | - name: "Docs" 10 | link: "https://docs.frax.finance/" 11 | - name: "Trading App" 12 | link: "https://app.frax.finance/" 13 | - name: "Community Telegram" 14 | link: "https://t.me/fraxfinance/" 15 | tags: 16 | - "FRAX" 17 | - "FXS" 18 | - "Stabelcoin" 19 | - "DeFi" 20 | related: 21 | - "frax" 22 | dashboards: 23 | - "wd021/FXS-(FRAX-Shares)" 24 | - "wd021/FRAX" 25 | embeds: 26 | - name: "Wallets With FXS" 27 | link: "https://dune.xyz/embeds/220392/413581/7af62eb4-7514-4069-b54a-33c4109b8fd9" 28 | --- 29 | 30 | **Frax is the world’s first fractional-algorithmic stablecoin.** 31 | The Frax Protocol introduced the world to the concept of a cryptocurrency being partially backed by collateral and partially stabilized algorithmically. 32 | 33 | Frax is open-source, permissionless, and entirely on-chain – currently implemented on Ethereum and other chains. The end goal of the Frax protocol is to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply digital assets like BTC. 34 | 35 | The Frax protocol is a two token system encompassing a stablecoin, **Frax (FRAX)**, and a governance token, **Frax Shares (FXS)**. 36 | 37 | *From https://docs.frax.finance/* 38 | -------------------------------------------------------------------------------- /pages/frax/frax.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "FRAX" 3 | logo: "frax.svg" 4 | color: "#f2f2f2" 5 | schemas: 6 | - "frax" 7 | - "fraxfinance" 8 | links: 9 | - name: "Docs" 10 | link: "https://docs.frax.finance/" 11 | - name: "Trading App" 12 | link: "https://app.frax.finance/" 13 | - name: "Community Telegram" 14 | link: "https://t.me/fraxfinance/" 15 | tags: 16 | - "FRAX" 17 | - "FXS" 18 | - "Stabelcoin" 19 | - "DeFi" 20 | related: 21 | - "fxs" 22 | dashboards: 23 | - "wd021/FRAX" 24 | - "wd021/FXS-(FRAX-Shares)" 25 | embeds: 26 | - name: "Total FRAX Supply" 27 | link: "https://dune.xyz/embeds/218356/410091/139a762c-22e4-48a9-a05e-135d4c9dd829" 28 | --- 29 | 30 | **Frax is the world’s first fractional-algorithmic stablecoin.** 31 | The Frax Protocol introduced the world to the concept of a cryptocurrency being partially backed by collateral and partially stabilized algorithmically. 32 | 33 | Frax is open-source, permissionless, and entirely on-chain – currently implemented on Ethereum and other chains. The end goal of the Frax protocol is to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply digital assets like BTC. 34 | 35 | The Frax protocol is a two token system encompassing a stablecoin, **Frax (FRAX)**, and a governance token, **Frax Shares (FXS)**. 36 | 37 | *From https://docs.frax.finance/* 38 | -------------------------------------------------------------------------------- /pages/yearn/yearn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | 13 | 14 | 17 | 20 | 21 | yearn.finance 22 | 23 | -------------------------------------------------------------------------------- /pages/keep/keep.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/kishimoto/kishimoto.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "kishimoto" 3 | logo: "kishimoto.svg" 4 | color: "#121212" 5 | schemas: [] 6 | links: 7 | - name: "Website" 8 | link: "https://www.kishimotoinu.com/" 9 | - name: "Whitepaper" 10 | link: "https://www.kishimotoinu.com/KishimotoInuwhitepaper.pdf" 11 | - name: "Stake" 12 | link: "https://stake.kishimotoinu.com" 13 | - name: "NFTs" 14 | link: "https://nft.kishimotoinu.com/" 15 | - name: "VPN" 16 | link: "https://kishimotoinu.com/#vpn" 17 | tags: 18 | - "kishimoto" 19 | - "kishisninjas" 20 | - "ninjavpn" 21 | dashboards: 22 | - "wolf/Kishimoto-Inu" 23 | queries: [] 24 | embeds: [] 25 | --- 26 | 27 | **Kishimoto Inu** is the Latest Anime & Inu Based Token released on the ERC20 Network. 28 | 29 | Kishimoto will be a medium for Anime transaction and a monetary system on its own. Its purpose is to overperform all other cryptocurrency and has smart coding benefits for loyal holders with rewards. 30 | 31 | Powerful utilites such as our Anime Exchange, and NFT Marketplace will allow us to continously generate value to the whole of the Anime Ecosystem. 32 | 33 | Kishimoto Inu wants to give Anime community a platform where everyone can decide about the future of the Anime token. 34 | 35 | It is completely community driven and can only grow with the help of holders. 36 | 37 | *From https://www.kishimotoinu.com/KishimotoInuwhitepaper.pdf* 38 | -------------------------------------------------------------------------------- /pages/phi/phi.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Phi" 3 | logo: "phi.svg" 4 | color: "#8283FF" 5 | schemas: 6 | - "phi" 7 | links: 8 | - name: "Website" 9 | link: "https://philand.xyz/" 10 | - name: "Docs" 11 | link: "https://docs.philand.xyz/" 12 | - name: "Phi Land" 13 | link: "https://land.philand.xyz/" 14 | - name: "Phi Quest" 15 | link: "https://quest.philand.xyz/" 16 | - name: "Twitter" 17 | link: "https://twitter.com/phi_xyz" 18 | - name: "Partnership Application Form" 19 | link: "https://docs.google.com/forms/d/e/1FAIpQLSesnViXpjx2fufQrDI26yBbvcyNxWU-DVm3DEUn5WhKAn4XBQ/viewform" 20 | tags: 21 | - "Phi" 22 | - "Social" 23 | - "ENS" 24 | related: [] 25 | dashboards: 26 | - "philand/philand" 27 | - "philand/positive-externalities-of-phi" 28 | - "philand/positive-externalities-campaign" 29 | queries: [] 30 | embeds: 31 | - name: "Total number of Land created" 32 | link: "https://dune.com/embeds/1624287/2692589" 33 | - name: "Total number of Quest Objects claimed" 34 | link: "https://dune.com/embeds/1630290/2702128" 35 | --- 36 | 37 | **Phi** is a whole new Web3 world created directly from ENS & wallet activities, enabling the easy visualization of on-chain identities. It encourages users to interact with various web3 protocols, which provides a positive feedback loop to the entire Crypto ecosystem. 38 | 39 | _From https://docs.philand.xyz/welcome-to-phi/whats-phi._ 40 | -------------------------------------------------------------------------------- /pages/dai/dai.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "DAI" 3 | logo: "dai.svg" 4 | color: "#F4B731" 5 | schemas: 6 | - "maker" 7 | - "makermcd" 8 | links: 9 | - name: "Website" 10 | link: "https://makerdao.com/en/" 11 | - name: "Docs" 12 | link: "https://docs.makerdao.com/" 13 | - name: "Oasis" 14 | link: "https://oasis.app/" 15 | tags: 16 | - "DAI" 17 | - "makerdao" 18 | - "maker" 19 | - "DeFi" 20 | related: 21 | - "makerdao" 22 | dashboards: 23 | - "hagaetc/maker-dao---mcd" 24 | - "MatteoLeibowitz/makerdao-liquidations" 25 | - "hagaetc/dex-metrics" 26 | queries: 27 | - 855 28 | embeds: 29 | - name: "Monthly Dai transaction volume" 30 | link: "https://explore.duneanalytics.com/embed/query/1100/visualization/1873?api_key=RHipExkbw08rqeoVGGQJ5kYcoNiYRIBddz3hGzme" 31 | --- 32 | 33 | The Dai stablecoin is a decentralized, unbiased, collateral-backed cryptocurrency soft-pegged to the US Dollar. Dai is held in cryptocurrency wallets or within platforms, and is supported on Ethereum and other popular blockchains. 34 | 35 | Dai is easy to generate, access, and use. Users generate Dai by depositing collateral assets into Maker Vaults within the Maker Protocol. This is how Dai is entered into circulation and how users gain access to liquidity. Others obtain Dai by buying it from brokers or exchanges, or simply by receiving it as a means of payment. 36 | 37 | *From https://makerdao.com/en/whitepaper.* 38 | -------------------------------------------------------------------------------- /pages/makerdao/makerdao.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "MakerDAO" 3 | logo: "makerdao.svg" 4 | color: "#1AAB98" 5 | schemas: 6 | - "maker" 7 | - "makermcd" 8 | links: 9 | - name: "Website" 10 | link: "https://makerdao.com" 11 | - name: "Docs" 12 | link: "https://docs.makerdao.com/" 13 | - name: "Oasis" 14 | link: "https://oasis.app/" 15 | - name: "Whitepaper" 16 | link: "https://makerdao.com/en/whitepaper/" 17 | tags: 18 | - "makerdao" 19 | - "DeFi" 20 | - "DAI" 21 | related: 22 | - "dai" 23 | dashboards: 24 | - "hagaetc/maker-dao---mcd" 25 | - "MatteoLeibowitz/makerdao-liquidations" 26 | - "MatteoLeibowitz/makerdao-p-e" 27 | queries: 28 | - 855 29 | embeds: 30 | - name: "Collateral USD value per day" 31 | link: "https://explore.duneanalytics.com/embed/query/1005/visualization/1684?api_key=T52lKJwyBHlbWWNZSTlBFUZX0IOBczi3bdPJASpm" 32 | --- 33 | 34 | The Maker Protocol, also known as the Multi-Collateral Dai (MCD) system, allows users to generate Dai by leveraging collateral assets approved by "Maker Governance." Maker Governance is the community organized and operated process of managing the various aspects of the Maker Protocol. 35 | 36 | Dai is a decentralized, unbiased, collateral-backed cryptocurrency soft-pegged to the US Dollar. Resistant to hyperinflation due to its low volatility, Dai offers economic freedom and opportunity to anyone, anywhere. 37 | 38 | *From https://makerdao.com.* 39 | -------------------------------------------------------------------------------- /pages/dodo/dodo.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "dodo" 3 | logo: "dodo.svg" 4 | color: "#ffd000" 5 | schemas: 6 | - "dodo" 7 | - "dodo_dex" 8 | links: 9 | - name: "Website" 10 | link: "https://dodoex.io/" 11 | - name: "App" 12 | link: "https://app.dodoex.io/" 13 | - name: "Docs" 14 | link: "https://docs.dodoex.io/" 15 | tags: 16 | - "dodo" 17 | - "PMM" 18 | - "defi" 19 | - "dex" 20 | - "swap" 21 | - "limit_order" 22 | - "rpq" 23 | dashboards: 24 | - "dodoex/dodoex-bnbchain-analysis" 25 | - "dodoex/dodoex-ethereum-analysis" 26 | - "dodoex/dodoex-polygon-analysis" 27 | embeds: 28 | - name: "DODOEX YTD Trading Volume ON BNBChain" 29 | link: "https://dune.com/embeds/1112478/1900856/35f57478-5435-495a-a551-b3fed8e6b1e1" 30 | - name: "DODOEX YTD Trading Volume ON Ethereum" 31 | link: "https://dune.com/embeds/1158945/1979859/d24adcd2-2174-4e83-88be-97a346135f4d" 32 | - name: "DODOEX YTD Trading Volume ON Polygon" 33 | link: "https://dune.com/embeds/1176659/2012748/a22e235e-abef-43a9-98c4-2502c62c8e99" 34 | --- 35 | 36 | DODO is a decentralized trading platform that uses the innovative Proactive Market Maker (PMM) algorithm to provide efficient on-chain liquidity for Web3 assets. In addition, DODO aggregates liquidity from other exchanges, making it easy for everyone to issue these assets and trade them with the best price guaranteed. 37 | 38 | DODO, Your On-Chain Liquidity Provider 39 | 40 | _From https://docs.dodoex.io/_ 41 | -------------------------------------------------------------------------------- /pages/0x/0x.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "0x" 3 | logo: "0x.svg" 4 | color: "#00AE99" 5 | schemas: 6 | - "zeroex" 7 | - "zeroex_v1" 8 | - "zeroex_v2" 9 | - "zeroex_v3" 10 | links: 11 | - name: "Website" 12 | link: "https://0x.org/" 13 | - name: "Docs" 14 | link: "https://0x.org/docs" 15 | - name: "Core Concepts" 16 | link: "https://0x.org/docs/core-concepts" 17 | tags: 18 | - "0x" 19 | - "zeroex" 20 | - "DeFi" 21 | - "DEX" 22 | related: 23 | - "matcha" 24 | dashboards: 25 | - "0x/0x-trading-activity" 26 | - "0x/0x-staking-stats" 27 | queries: 28 | - 4036 29 | --- 30 | 31 | **The exchange layer for the crypto economy** 32 | The world's assets are becoming tokenized on public blockchains. 0x Protocol is free, open-source infrastructure that developers and businesses utilize to build products that enable the purchasing and trading of crypto tokens. 33 | 34 | **Support for all Ethereum Standards** 35 | 0x Protocol facilitates the decentralized exchange of a growing number of Ethereum-based tokens, including all ERC-20 and ERC-721 assets. 36 | 37 | **Networked Liquidity** 38 | 0x is lowering the barrier to entry by building a layer of networked liquidity that allows businesses to tap into a shared pool of digital assets. 39 | 40 | **Flexible Integration** 41 | 0x is a modular system that enables businesses and projects, known as relayers, to easily add exchange functionality to any product experience. 42 | 43 | *From https://0x.org/why.* 44 | -------------------------------------------------------------------------------- /pages/bancor/bancor.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Bancor" 3 | logo: "bancor.png" 4 | color: "#0f59d1" 5 | schemas: 6 | - "bancornetwork" 7 | links: 8 | - name: "App" 9 | link: "app.bancor.network" 10 | - name: "Docs" 11 | link: "https://docs.bancor.network/" 12 | - name: "Discord" 13 | link: "https://discord.com/invite/3wJxvP" 14 | tags: 15 | - "bancor" 16 | - "dex" 17 | - "DeFi" 18 | - "BNT" 19 | dashboards: 20 | - "Bancor/bancor_1" 21 | - "Bancor/bancor-protected-v2-1-data" 22 | queries: 23 | - 3719 24 | embeds: 25 | - name: "30D USD Volume" 26 | link: "https://explore.duneanalytics.com/embed/query/3719/visualization/7220?api_key=XS0i6FfN7z1DoJ13AU68ypPrHAfzK4zoF4C2r0MD" 27 | --- 28 | 29 | The Bancor Protocol is a fully on-chain liquidity protocol that can be implemented on any smart contract-enabled blockchain. The Bancor Protocol is an open-source standard for liquidity pools, which in turn provide an endpoint for automated market-making (buying / selling tokens) against a smart contract. 30 | 31 | - Bancor Network currently operates on the Ethereum and EOS blockchains, but the protocol is designed to be interoperable for additional blockchains. 32 | - Our implementation can be easily integrated into any application enabling value exchanges. 33 | - Our implementation is open source and permissionless, and ecosystem participants are encouraged to contribute to and enhance the Bancor Protocol. 34 | 35 | *From https://docs.bancor.network/* 36 | -------------------------------------------------------------------------------- /pages/balancer/balancer.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Balancer" 3 | logo: "balancer.svg" 4 | color: "#333333" 5 | schemas: 6 | - "balancer" 7 | - "balancer_v2" 8 | links: 9 | - name: "Website" 10 | link: "https://balancer.fi/" 11 | - name: "Docs" 12 | link: "https://docs.balancer.fi/" 13 | - name: "Discord" 14 | link: "https://discord.balancer.fi/" 15 | tags: 16 | - "balancer" 17 | - "AMM" 18 | - "DeFi" 19 | - "DEX" 20 | related: [] 21 | dashboards: 22 | - "balancerlabs/balancer-pools" 23 | - "balancerlabs/balancer-exchange" 24 | - "balancerlabs/balancer-lbp" 25 | - "balancerlabs/Balancer-Volume-Token-Breakdown" 26 | - "balancerlabs/Balancer-Volume-Pool-Breakdown" 27 | - "balancerlabs/Balancer-Volume-Source-Breakdown" 28 | - "balancerlabs/Balancer-Pool-Analysis" 29 | - "balancerlabs/Balancer-Pool-Analysis-on-Polygon" 30 | queries: [] 31 | embeds: 32 | - name: "Total Value Locked (Ethereum)" 33 | link: "https://dune.xyz/embeds/31193/62877/a7284a40-96e1-484b-a99b-cc00c25f16b5" 34 | - name: "Total Value Locked (Polygon)" 35 | link: "https://dune.xyz/embeds/95319/190459/9fa5a159-ce5b-4f5e-ba43-4eab07c863ad" 36 | - name: "Volume (Ethereum)" 37 | link: "https://dune.xyz/embeds/31197/62885/4bc9872e-a0b4-4653-8169-e378fab58aa9" 38 | - name: "Volume (Polygon)" 39 | link: "https://dune.xyz/embeds/95324/217365/520ab77e-5dfb-4278-aa43-c5248d32a6f4" 40 | --- 41 | 42 | **Balancer is the leading platform for programmable liquidity** 43 | -------------------------------------------------------------------------------- /pages/tornado/tornado.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /pages/masq/masq.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "MASQ" 3 | logo: "masq.svg" 4 | color: "#003060" 5 | schemas: 6 | - "masq" 7 | links: 8 | - name: "Website" 9 | link: "https://masq.ai/?utm_source=Dune&utm_medium=projectpage" 10 | - name: "Medium" 11 | link: "https://medium.com/masq-project" 12 | - name: "Docs" 13 | link: "https://docs.masq.ai/masq/" 14 | - name: "Discord" 15 | link: "https://discord.com/invite/masq" 16 | - name: "Twitter" 17 | link: "https://twitter.com/MASQ_ai" 18 | tags: 19 | - "dVPN" 20 | - "Web3" 21 | dashboards: 22 | - "masq_network/masq-network-dashboard" 23 | embeds: 24 | - name: "[MASQ] Fully Diluted Valuation and Market Capital" 25 | link: "https://dune.com/embeds/1331326/2275304/baa2cac5-6306-40cd-81c7-305dbc9c7d4c" 26 | - name: "[MASQ] Average Daily Price" 27 | link: "https://dune.com/embeds/1331326/2275290/9b7077f9-ec36-4df6-bd07-123988e446eb" 28 | - name: "[MASQ] TVL on Ethereum" 29 | link: "https://dune.com/embeds/1331326/2275250/0879ebaa-4aa7-4f25-be18-54b71921f7e7" 30 | - name: "[MASQ] TVL on Polygon" 31 | link: "https://dune.com/embeds/1331326/2275257/7f74f4b1-e2f4-4b83-890f-049db5f052e9" 32 | --- 33 | 34 | "MASQ is a dMeshVPN, browser, web3 Store, protocol, and earning ecosystem that makes living in web3 anonymous and private. The unique MASQ software provides borderless internet access for all netizens through a seamless User Experience while combining the benefits of VPN and Tor technology to offer superior privacy features." 35 | 36 | *From https://docs.masq.ai/masq/* 37 | -------------------------------------------------------------------------------- /pages/tellor/tellor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 11 | 13 | 17 | 18 | 19 | 22 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /pages/zerion/zerion.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Zerion" 3 | logo: "zerion.svg" 4 | color: "#2962EF" 5 | schemas: 6 | - "zerion" 7 | links: 8 | - name: "Website" 9 | link: "https://zerion.io/" 10 | - name: "Twitter" 11 | link: "https://twitter.com/zerion_io" 12 | - name: "Discord" 13 | link: "https://zerion.io/discord" 14 | tags: 15 | - "Zerion" 16 | - "Wallet" 17 | - "DeFi" 18 | - "NFT" 19 | dashboards: 20 | - "hildobby/zerion-on-ethereum" 21 | - "hildobby/Zerion-L1s-and-L2s-Router?Granularity=Daily" 22 | embeds: 23 | - name: "Ethereum Volume" 24 | link: "https://dune.com/embeds/834224/1458564/eac62eed-e976-4d31-b4c0-01697030b042" 25 | - name: "Polygon Volume" 26 | link: "https://dune.com/embeds/545580/1024905/e304c486-8c3f-4de6-b781-c6e916318397?Granularity=Weekly" 27 | - name: "Optimism Volume" 28 | link: "https://dune.com/embeds/541338/1017968/67bb95e4-875a-4576-ad1f-e89d30522ba2?Granularity=Weekly" 29 | - name: "BNB Volume" 30 | link: "https://dune.com/embeds/545551/1024846/998799f9-122e-47f2-931d-796423633618Granularity=Weekly" 31 | --- 32 | 33 | Zerion is a web3 smart, social wallet and investing tool that enables anyone with a mobile phone to manage their DeFi and NFT portfolios. With a relentless focus on user-centered design and a technology stack that aggregates across every major wallet, network and decentralized exchange, users are offered a single point of entry for managing their digital assets, including NFTs. Zerion is non-custodial, which means users never delegate their funds to the platform. This agile approach mitigates centralization risk and has allowed Zerion to operate globally since inception. 34 | -------------------------------------------------------------------------------- /pages/stafi/stafi.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "StaFi" 3 | logo: "stafi.svg" 4 | color: "#1AAB98" 5 | schemas: 6 | - "stafi" 7 | links: 8 | - name: "Website" 9 | link: "https://www.stafi.io/" 10 | - name: "App" 11 | link: "https://app.stafi.io/" 12 | - name: "Docs" 13 | link: "https://docs.stafi.io/" 14 | - name: "Discord" 15 | link: "http://discord.gg/Up6vdp8fWx" 16 | tags: 17 | - "StaFi" 18 | - "rETH" 19 | - "staking" 20 | - "liquid staking" 21 | - "DeFi" 22 | dashboards: 23 | - "stafi-analysis/stafi-staked-eth" 24 | - "stafi-analysis/stafi-staked-maticerc20" 25 | 26 | queries: [] 27 | embeds: 28 | - name: "StaFi Staked ETH Total Supply" 29 | link: "https://dune.com/embeds/2381080/3905179/6c0033d2-f5d2-4aab-b336-dd7cf67b096c" 30 | - name: "StaFi Staked MATIC(ERC20) Total Supply" 31 | link: "https://dune.com/embeds/2472351/4067067/037e73ae-69c6-438f-a188-32fa3d970cb2" 32 | --- 33 | --- 34 | 35 | **The Liquid Staking Solution for PoS Blockchains** 36 | StaFi protocol is the first liquid staking protocol for multiple POS blockchains. StaFi aims to solve the contradiction between Mainnet security and token liquidity in PoS consensus. 37 | 38 | **Strengthening Network Infrastructure** 39 | StaFi protocol lets users stake their tokens(ETH, MATIC, ATOM etc) - without locking assets or maintaining infrastructure - whilst participating in on-chain activities. 40 | 41 | **Unlocking Liquidity** 42 | The token holders are staking through staking contracts built in StaFi protocol, and then get alternative tokens(rToken ,such as rETH, rMATIC, rATOM, rBNB, rSOL etc.), rTokens are tradable and it can get staking rewards from original chain at the same time. 43 | 44 | *From https://docs.stafi.io/ 45 | -------------------------------------------------------------------------------- /pages/loopring/loopring.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Loopring" 3 | logo: "loopring.svg" 4 | color: "#1c42ff" 5 | schemas: 6 | - "loopring" 7 | links: 8 | - name: "Website" 9 | link: "https://loopring.org" 10 | - name: "Exchange" 11 | link: "https://loopring.io" 12 | - name: "GitHub" 13 | link: "https://github.com/Loopring/protocols" 14 | tags: 15 | - "loopring" 16 | - "DeFi" 17 | - "zkRollup" 18 | dashboards: 19 | - "Brecht/loopring" 20 | queries: 21 | - 14508 22 | - 14398 23 | - 18075 24 | embeds: 25 | - name: "Loopring.io Daily Volume" 26 | link: "https://explore.duneanalytics.com/embed/query/14508/visualization/29118?api_key=u69EF4fRavSQWPgQEK8Qw36SjsISkv7roJLWQKyA" 27 | - name: "Loopring.io Transactions" 28 | link: "https://explore.duneanalytics.com/embed/query/14398/visualization/28895?api_key=D8MK8HstMF3MsVksW83C1eGBrnGk8POh8EfFkUbv" 29 | --- 30 | 31 | Loopring is a zkRollup Exchange and Payment Protocol. 32 | 33 | **Secure:** Loopring is an open-sourced, audited, and non-custodial exchange protocol, which means nobody in the Loopring ecosystem needs to trust others. Cryptoassets are always under users' own control, with 100% Ethereum-level security guarantees. 34 | 35 | **High Throughput:** Loopring powers highly scalable decentralized exchanges by batch-processing thousands of requests off-chain, with verifiably correct execution via ZKPs. The performance of underlying blockchains is no longer the bottleneck. 36 | 37 | **Low Cost:** Loopring performs most operations, including order-matching and trade settlement, off the Ethereum blockchain. Such a design dramatically reduces gas consumption and thus overall settlement cost to only fractions of a cent. 38 | 39 | *From https://loopring.org.* 40 | -------------------------------------------------------------------------------- /pages/guild/guild.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Guild" 3 | logo: "guild.png" 4 | color: "#FFFFFF" 5 | schemas: 6 | - "guild" 7 | links: 8 | - name: "Website" 9 | link: "https://guild.xyz/" 10 | - name: "Docs" 11 | link: "https://guild.xyz/" 12 | - name: "Twitter" 13 | link: "https://twitter.com/guildxyz" 14 | - name: "Our Guild" 15 | link: "https://guild.xyz/our-guild" 16 | tags: 17 | - "Guild.xyz" 18 | - "guild" 19 | - "Social" 20 | - "Membership" 21 | - "Rewards" 22 | related: [] 23 | dashboards: 24 | - "rusty378/guildxyz-pins" 25 | - "tomi_ohl/guild-poap-fee-collector" 26 | - "vetalx/guild-payments-stats" 27 | queries: 28 | - 2513830 29 | - 2263308 30 | embeds: 31 | - name: "Total number of pins collected" 32 | link: "https://dune.com/embeds/2672567/4443249/955a01de-1bed-417b-9277-b4ca209c1259" 33 | - name: "Total POAP sales via FeeCollector" 34 | link: "https://dune.com/embeds/2672582/4443288/494c1ebb-cf10-4155-aafa-77402b8484c4" 35 | --- 36 | 37 | **Guild.xyz** is the infrastructure for platformless access management. Create portable memberships, social structures around on- & off-chain requirements and build unique user journeys across apps! 38 | 39 | We started out as a simple bot for connecting Ethereum with Discord, inspired by our own needs for better token-gating and general access management of internet native groups. 40 | 41 | Over time, Guild.xyz evolved to be integrated with multiple platforms like Discord, Telegram, Twitter, Google Workspace, GitHub in addition to 17 chains and several web3 protocols such as POAP, Mirror, Lens and Snapshot. Supporting a diverse set of communities like: Arbitrum, Zerion or Lil Nouns. 42 | 43 | _From https://help.guild.xyz/en/articles/6934383-introduction-to-guild._ -------------------------------------------------------------------------------- /ci/check_projects.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | const matter = require("gray-matter"); 3 | const validate = require("validate.js"); 4 | 5 | const mdFileConstraints = require("./mdFileConstraints"); 6 | 7 | // Turns readable file path (appropriate for error messages) 8 | // into full path that works with `fs` in GitHub actions 9 | const fsPath = (str) => `${__dirname}/../${str}`; 10 | 11 | const projectDirectories = fs.readdirSync(fsPath("pages")); 12 | 13 | projectDirectories.forEach((projectName) => { 14 | const mdFileName = `pages/${projectName}/${projectName}.md`; 15 | const { data } = matter(fs.readFileSync(fsPath(mdFileName))); 16 | 17 | // Check properties in the md file 18 | const errors = validate(data, mdFileConstraints); 19 | if (errors) { 20 | throw new Error( 21 | `Invalid file "${mdFileName}": ` + JSON.stringify(errors, null, 2) 22 | ); 23 | } 24 | 25 | if (data.logo) { 26 | // Check that logo exists 27 | const logoFileName = `pages/${projectName}/${data.logo}`; 28 | if (!fs.existsSync(fsPath(logoFileName))) { 29 | throw new Error( 30 | `Could not find logo "${logoFileName}" (specified in "${mdFileName}")` 31 | ); 32 | } 33 | 34 | // Check logo file size: 35 | // In order to download images greater than 1Mb you need to use the github data api. 36 | // Since these are just logos we should keep the build process simple and restrict the image 37 | // sizes to less than 1 MiB 38 | const stats = fs.statSync(fsPath(logoFileName)); 39 | if (stats.size > 1024 ** 2) { 40 | throw new Error( 41 | `Image (${p(logoFileName)}) must be less than 1 MiB. Instead it is ${ 42 | stats.size 43 | } Bytes` 44 | ); 45 | } 46 | } 47 | }); 48 | -------------------------------------------------------------------------------- /pages/curvefi/curvefi.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Curve" 3 | logo: "curvefi.svg" 4 | color: "#a5a4ce" 5 | schemas: 6 | - "curvefi" 7 | links: 8 | - name: "Website" 9 | link: "https://www.curve.fi/" 10 | - name: "Docs" 11 | link: "https://www.curve.fi/devdocs" 12 | - name: "User Resources" 13 | link: "https://resources.curve.fi/" 14 | tags: 15 | - "curvefi" 16 | - "DeFi" 17 | - "lp" 18 | dashboards: 19 | - "mrblock_buidl/Curve.fi" 20 | - "pengiundev/curve-fi" 21 | queries: 22 | - 2271 23 | - 2658 24 | - 2668 25 | - 3117 26 | embeds: 27 | - name: "Curve.fi all liquidity" 28 | link: "https://explore.duneanalytics.com/embed/query/2547/visualization/4826?api_key=nOI9uFYd08NneQ5eQmfsgyC40eW90O1FI10GpF26" 29 | - name: "Curve.fi monthy volume" 30 | link: "https://explore.duneanalytics.com/embed/query/10784/visualization/21412?api_key=k1Ckdi0qWMnJi5hl1uZMcLKVuWDwj8DGIHLXGiDx" 31 | - name: "Curve.fi cumulative volume" 32 | link: "https://explore.duneanalytics.com/embed/query/4245/visualization/8263?api_key=lcOV6Ab25bgtBj0S6AIKG1Z7zC9b6BpCtTy2Shlj" 33 | --- 34 | 35 | Curve is an exchange liquidity pool designed for extremely efficient stable-asset trading. Its main goal is to let users and other decentralised protocols exchange stable assets (stablecoins, different kind of Bitcoin on Ethereum) through it with low fees and low slippage. 36 | 37 | Curve is fully decentralized and all decisions about the protocol are taken by CRV holders. 38 | 39 | Unlike exchanges out there that match a buyer and a seller, the behaviour of Curve is different, it uses liquidity pools. Liquidity providers deposit one or more stablecoins in a Curve pool and receive Curve LP tokens. Liquidity providers receive 0.02% of trading fees currently and are also incentivized with CRV token. 40 | -------------------------------------------------------------------------------- /pages/gcr/gcr.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "GCR" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "gcr.png" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#2649f5" 10 | 11 | # List of relevant links to the project. 12 | links: 13 | - name: "Website" 14 | link: "https://globalcoinresearch.com/" 15 | - name: "FAQs" 16 | link: "https://globalcoinresearch.com/faq/" 17 | - name: "Discord" 18 | link: "https://discord.gg/globalcoinresearch" 19 | 20 | # List of applicable tags in Dune. These will link to e.g... 21 | tags: 22 | - "GCR" 23 | - "DAO" 24 | - "community" 25 | - "gcr" 26 | - "globalcoinresearch" 27 | 28 | 29 | # List of relevant dashboard slugs prefixed with username 30 | dashboards: 31 | - "miket/Global-Coin-Research-(GCR)-Token-Tracker" 32 | - "datumscientist/Dashboard-Beta-Datum" 33 | 34 | 35 | 36 | # List of visualizations to embed 37 | embeds: 38 | - name: "GCR Community by Membership Type" 39 | link: "https://dune.com/embeds/679243/1259774/1fde40ea-880b-4bf4-870e-ca495375de0a" 40 | --- 41 | 42 | Global Coin Research is a tokenized, decentralized DAO of learners and investors in web3. 43 | 44 | $GCR is a social token community with a writers platform and token-gated Discord group. It’s where all the best writers, researchers, and community members in the crypto space can come together. 45 | 46 | Holders of $GCR and writers on the platform get access to the best resources the community has to offer, including but not limited to deep insights and research generated by the community, founder-focused events online and offline, learning and user feedback sessions, and direct deal-flow. 47 | 48 | *From https://globalcoinresearch.com/faq/* 49 | -------------------------------------------------------------------------------- /pages/TempleDAO/TempleDAO.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai 3 | name: "TempleDAO" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "TempleDAO.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#BD7B4F" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "TempleDAO" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://templedao.link/" 19 | - name: "Docs" 20 | link: "https://docs.templedao.link/" 21 | 22 | 23 | # List of applicable tags in Dune. These will link to e.g... 24 | tags: 25 | - "Temple" 26 | - "TempleDAO" 27 | - "DeFi" 28 | - "yield" 29 | 30 | # List of related projects. These projects must exist in this repo and the name... 31 | related: [] 32 | 33 | # List of relevant dashboard slugs prefixed with username 34 | dashboards: 35 | - "ethpanda/TempleDAO" 36 | - "ethpanda/TempleDAO-Stake-calculator" 37 | 38 | # List of relevant query-ids. 39 | queries: [] 40 | 41 | # List of visualizations to embed 42 | embeds: 43 | - name: "Temple DAO Treasury" 44 | link: "https://dune.xyz/embeds/237286/444049/2d170ee8-29d0-4b30-aa50-3652728b4f5c" 45 | - name: "Intrinsic Value and Over the Counter Price" 46 | link: "https://dune.xyz/embeds/237286/444046/03776551-1308-480b-a912-967050fb3b28" 47 | --- 48 | 49 | In a world of volatility and instant gratification, the Temple of long-term wealth creation is where Templars come to stake, sleep easy, and chill. 50 | 51 | The TempleDAO protocol aims to provide DeFi users with a safe haven where they can be sheltered from crypto market volatility while benefiting from a set of investment opportunities offering high yields and steady price appreciation. 52 | 53 | *From https://docs.templedao.link/.* 54 | -------------------------------------------------------------------------------- /pages/dhedge/dhedge.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "dHEDGE" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "dhedge_logo.png" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#00a0d0" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "dhedge" 14 | - "dhedge_v2" 15 | 16 | # List of relevant links to the project. 17 | links: 18 | - name: "Website" 19 | link: "https://www.dhedge.org/" 20 | - name: "Docs" 21 | link: "https://docs.dhedge.org/" 22 | - name: "App" 23 | link: "https://app.dhedge.org/#" 24 | 25 | # List of applicable tags in Dune. These will link to e.g... 26 | tags: 27 | - "dHEDGE" # ...explore.duneanalytics.com/dashboards?tags=DAI 28 | - "dhedge" # ...explore.duneanalytics.com/dashboards?tags=makerdao 29 | - "dHedgeV2" 30 | 31 | # List of relevant dashboard slugs prefixed with username 32 | dashboards: 33 | - "patet/dhedge-network-analytics" 34 | - "vishy0108/dhedge-v2-polygon" 35 | - "roblw/dHedge-V1" 36 | - "jakerichards/dHEDGE-General" 37 | 38 | # List of visualizations to embed 39 | embeds: 40 | - name: "Total Number of Pools dHEDGE V1" 41 | link: "https://dune.com/embeds/1008496/1742765/2b38e277-06e3-4e8a-af30-5ee81c00c5ed" 42 | - name: "Total Number of Pools dHEDGE V2" 43 | link: "https://dune.com/embeds/1008466/1742694/492ccfaf-7ecf-47ff-a92d-bd9f65f316ae" 44 | --- 45 | 46 | An open source asset management protocol operating on EVM chains: Ethereum, Polygon, and Optimism - connecting investors to investment managers in a permissionless and and non-custodial way. 47 | 48 | Investors retain full ownership over their funds while reaping the rewards of enabling the best managers to trade their capital. 49 | 50 | _From https://docs.dhedge.org/_ 51 | -------------------------------------------------------------------------------- /pages/rook/rook_logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pages/fantv/fantv.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "FanTV" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "fantv.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#3454FA" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "fantv" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://fantv.in/" 19 | - name: "FAQ" 20 | link: "https://fantv.in/#Faqs" 21 | - name: "Twitter" 22 | link: "https://twitter.com/FanTV_official" 23 | - name: "Telegram" 24 | link: "https://t.me/+6ldTYbzU1epmMmU9" 25 | 26 | # List of applicable tags in Dune. These will link to e.g... 27 | tags: 28 | - "xFanTV" # ...explore.duneanalytics.com/dashboards?tags=DAI 29 | - "watch2earn" # ...explore.duneanalytics.com/dashboards?tags=makerdao 30 | - "create2earn" 31 | 32 | # List of related projects. These projects must exist in this repo and the name... 33 | related: 34 | - "fantv" # ...should match like "pages/makerdao/makerdao.md". 35 | 36 | # List of relevant dashboard slugs prefixed with username 37 | dashboards: 38 | - "fantv/dashboard" 39 | 40 | # List of relevant query-ids. 41 | queries: 42 | - 2979554 43 | - 2979801 44 | - 2980035 45 | --- 46 | 47 | FanTV is a decentralised Video Streaming Platform here to revolutionise the Entertainment Industry by incentivising both Creators and Viewers. We are a passionate team of technologists and entertainment industry experts committed to revolutionising how content is consumed and appreciated. We want to revolutionise how long form content is consumed by building a discovery, distribution, and funding platform in order to better the lives of independent creators. We want to be the world's favourite video streaming platform for creators and viewers, built and run by them. -------------------------------------------------------------------------------- /pages/liquity/liquity.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/liquity. 3 | name: "Liquity" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "liquity.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#2eb6ea" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "liquity" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://www.liquity.org/" 19 | - name: "Docs" 20 | link: "https://docs.liquity.org/" 21 | - name: "Use Liquity" 22 | link: "https://www.liquity.org/frontend#use-liquity" 23 | 24 | # List of applicable tags in Dune. These will link to e.g... 25 | tags: 26 | - "Liquity" 27 | - "LUSD" 28 | - "LQTY" 29 | - "DeFi" 30 | 31 | # List of relevant dashboard slugs prefixed with username 32 | dashboards: 33 | - "dani/Liquity" 34 | - "ed/Liquity" 35 | 36 | # List of visualizations to embed 37 | embeds: 38 | - name: "TVL Over Time" 39 | link: "https://duneanalytics.com/embeds/32041/65524/6be6e3c3-9d1f-4ee9-b113-cd77fe8919e2" 40 | - name: "Daily LUDS Mint / Burn" 41 | link: "https://duneanalytics.com/embeds/31990/64451/D8MK8HstMF3MsVksW83C1eGBrnGk8POh8EfFkUbv" 42 | - name: "Daily gains from LQTY Staking" 43 | link: "https://duneanalytics.com/embeds/32674/65737/1e975a0b-b165-4949-950a-0a3331713b96" 44 | --- 45 | 46 | Liquity is a decentralized borrowing protocol that allows you to draw 0% interest loans against Ether used as collateral. Loans are paid out in LUSD - a USD pegged stablecoin, and need to maintain a minimum collateral ratio of only 110%. 47 | 48 | In addition to the collateral, the loans are secured by a Stability Pool containing LUSD and by fellow borrowers collectively acting as guarantors of last resort. 49 | 50 | Liquity protocol is non-custodial, immutable and governance-free. 51 | 52 | *From https://www.liquity.org/.* 53 | -------------------------------------------------------------------------------- /pages/erasure/erasure.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Erasure" 3 | logo: "erasure.png" 4 | color: "#ff3074" 5 | schemas: 6 | - "erasure_v100" 7 | - "erasure_v110" 8 | - "erasure_v120" 9 | - "erasure_v130" 10 | links: 11 | - name: "Erasure Bay" 12 | link: "https://erasurebay.org/" 13 | - name: "Docs" 14 | link: "https://docs.erasure.world/" 15 | tags: 16 | - "erasure" 17 | dashboards: 18 | - "thibault_bnd/erasure" 19 | embeds: 20 | - name: "Requests" 21 | link: "https://explore.duneanalytics.com/embed/query/2549/visualization/4828?api_key=1QpnQQSXdiveXnZcYQaHUtyDXzb3brGUeEZzYo4E" 22 | --- 23 | 24 | Buying information has traditionally been difficult because you can only judge its quality once you have paid for and received it. This has meant only buying information from trusted sources with a good reputation. This excludes the long tail of people around the world who have valuable insights but no way to be believed. 25 | 26 | Now imagine if information sources staked their offering: a buyer can then punish the source if they do not like what was delivered. Like this, information can be trusted from the individuals who do not have track records or wish to stay anonymous. Erasure is being used for this right now: 27 | 28 | **Numerai**: a hedge fund that trades equities based on an aggregation of thousands of predictions made by a global network of competing data scientists. Because each user stakes on their predictions and inaccurate predictions have their stakes destroyed, Numerai can gauge the confidence of the anonymous competitors. 29 | 30 | **Erasure Bay**: a new marketplace for sourcing any kind of information. Make requests for information like predictions, secrets, whistleblowers, recommendations and require that fulfillers place a stake. Try it today. 31 | 32 | **Numerai Signals**: an ongoing tournament to gather Russell 3000 stock predictions, currently in beta. All predictions are staked, and are burned according to accuracy. Rewards paid are proportional to the stake. 33 | 34 | *From https://erasure.world/* 35 | -------------------------------------------------------------------------------- /pages/xdollar/xdollar.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/xdollar. 3 | name: "xDollar" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "xdollar.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#e91e63" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "xdollar" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://xdollar.fi/" 19 | - name: "Docs" 20 | link: "https://docs.xdollar.fi/tokenomics/xdo-token" 21 | - name: "Frontend" 22 | link: "https://xdollar.mcn.ventures/" 23 | 24 | # List of applicable tags in Dune. These will link to e.g... 25 | tags: 26 | - "xDollar" 27 | - "xUSD" 28 | - "XDO" 29 | - "DEFI" 30 | - "Lending" 31 | 32 | # List of relevant dashboard slugs prefixed with username 33 | dashboards: 34 | - "leifu/xDollar" 35 | 36 | # List of visualizations to embed 37 | embeds: 38 | - name: "TVL Over Time" 39 | link: "https://duneanalytics.com/embeds/84923/169437/1897726b-40cc-43e8-a6a5-41d8228c37da" 40 | - name: "Daily xUSD Mint / Burn" 41 | link: "https://duneanalytics.com/embeds/84122/167951/cddf0ab7-69f2-46ef-aa70-df91e4ee68b2" 42 | - name: "Daily gains from XDO Staking" 43 | link: "https://duneanalytics.com/embeds/84790/169236/9138a7a7-8c9d-44d5-91f9-4df9363fee83" 44 | --- 45 | 46 | xDollar is the first cross-chain decentralized lending platform on multi-chains with DAO governance component and multi-collateral vault system. In recognizing the Liquity protocol thorough designed operating mechanism, xDollar has the features and benefits consistent with the Liquity protocol. 47 | 48 | To begin our decentralized borrowing journey, xDollar starts with the Polygon network and will eventually expand into other chains/protocols. 49 | 50 | Furthermore, we have designed a new tokenomics to support xDollar’s long-term vision. 51 | 52 | *From https://docs.xdollar.fi/* 53 | -------------------------------------------------------------------------------- /pages/idlefinance/idlefinance.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /pages/ipor/ipor.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "IPOR" 3 | logo: "ipor.svg" 4 | color: "#05123B" 5 | schemas: 6 | - "ipor" 7 | links: 8 | - name: "Website" 9 | link: "https://ipor.io/" 10 | - name: "App" 11 | link: "https://app.ipor.io/" 12 | - name: "Docs" 13 | link: "https://docs.ipor.io/" 14 | - name: "Twitter" 15 | link: "https://twitter.com/ipor_io" 16 | - name: "Telegram" 17 | link: "https://t.me/+TlM0ZVYHkGo1RkAx" 18 | - name: "GitHub" 19 | link: "https://github.com/IPOR-Labs" 20 | - name: "Discord" 21 | link: "https://discord.com/invite/bSKzq6UMJ3" 22 | - name: "Medium" 23 | link: "https://medium.com/ipor-labs" 24 | - name: "Research" 25 | link: "https://ipor-labs.notion.site/e592feae2660418a90c35434849f0c0b?v=d35d84b479204c26bc1bb30d2b8ace4a" 26 | - name: "YouTube" 27 | link: "https://www.youtube.com/@iporlabs" 28 | tags: 29 | - "IPOR" 30 | - "DeFi" 31 | - "Swap" 32 | - "interest rate" 33 | - "yield" 34 | - "Index" 35 | related: 36 | - "aave" 37 | - "compound" 38 | dashboards: 39 | - "ipor/ipor-protocol" 40 | - "ipor/ipor-rates" 41 | queries: 42 | - 1618591 43 | - 1737851 44 | - 1716184 45 | - 1737881 46 | embeds: 47 | - name: "USDC IPOR Index" 48 | link: "https://dune.com/embeds/1737851/2892679/add38423-57ce-412a-9df2-71fdcf92e84b" 49 | - name: "USDT IPOR Index" 50 | link: "https://dune.com/embeds/1716184/2892706/a8e6909b-569a-4d5e-9260-df86f7a84addd" 51 | - name: "DAI IPOR Index" 52 | link: "https://dune.com/embeds/1737881/2892705/f63bd557-d3e6-495b-a9f4-42881e070e86" 53 | - name: "IPOR Liquidity Pool" 54 | link: "https://dune.com/embeds/1602849/2663210/d3fc5f41-fc26-4168-8109-2521999d78d0" 55 | --- 56 | 57 | **IPOR** is a set of protocols, smart contracts, and software that forms a set of Decentralized Applications (DApps) for Decentralized Finance (DeFi) focused on interest rate derivatives. 58 | 59 | The core IPOR infrastructure consists of three main parts: the IPOR Index (Index), Liquidity Pools with an Automated Market Maker (AMM), and Asset Management smart contracts. 60 | 61 | _From https://ipor.io/._ 62 | -------------------------------------------------------------------------------- /pages/fuseio/fuseio.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Fuse.io" 3 | 4 | logo: "fuseio.svg" 5 | 6 | color: "#7af5c6" 7 | 8 | # List of relevant schemas you can query in dune. 9 | schemas: 10 | - "ethereum" 11 | - "bsc" 12 | 13 | # List of relevant links to the project. 14 | links: 15 | - name: "Website" 16 | link: "https://fuse.io" 17 | - name: "Docs" 18 | link: "https://docs.fuse.io/" 19 | - name: "Fuse studio" 20 | link: "https://studio.fuse.io/" 21 | 22 | # List of applicable tags in Dune. These will link to e.g... 23 | tags: 24 | - "fuseio" # ...explore.duneanalytics.com/dashboards?tags=DAI 25 | - "mainnet" 26 | - "ethereum" 27 | - "bsc" 28 | 29 | # List of related projects. These projects must exist in this repo and the name... 30 | related: 31 | - "fuseio" # ...should match like "pages/fuseio/fuseio.md 32 | 33 | # List of relevant dashboard slugs prefixed with username 34 | dashboards: 35 | - "t0mcr8se/Fuse-token-metrics-(on-Ethereum)" 36 | 37 | # List of relevant query-ids. 38 | queries: 39 | - 217820 40 | - 217972 41 | 42 | # List of visualizations to embed 43 | embeds: 44 | - name: "Classification of Fuse Holders on Ethereum" 45 | link: "https://dune.xyz/embeds/217972/409368/a74a946a-b080-4035-9cfa-a9561885f1e7" 46 | --- 47 | Fuse Network is the decentralized EVM-compatible public blockchain that powers the Fuse platform and ecosystem. It is fully compatible with Ethereum meaning that any smart contract that can be deployed on the latter can also run on top of Fuse Network. 48 | 49 | The Fuse Network blockchain uses a variant of delegated Proof of Stake (dPoS) for achieving consensus. The consensus is secured by a significant number of independent validators, only one of which is run by the Fuse core team. 50 | 51 | Fuse is a decentralized blockchain-powered platform and technology stack whose goal is to enable genuine mass adoption of crypto payments and decentralized finance (DeFi). 52 | 53 | The project was launched in 2019 by a team formerly involved in building the Colu project aimed at bringing local currencies to the blockchain. 54 | 55 | *From https://docs.fuse.io.* 56 | -------------------------------------------------------------------------------- /pages/optimism/optimism.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /pages/thales/thales.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pages/bnbchain/bnbchain.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "BNBChain" 3 | logo: "bnbchain.svg" 4 | color: "#F0B90B" 5 | schemas: 6 | - "bnbchain" 7 | - "bsc" 8 | links: 9 | - name: "Website" 10 | link: "https://www.bnbchain.world/en" 11 | - name: "Docs" 12 | link: "https://docs.bnbchain.world/docs/bnbIntro" 13 | - name: "Explorer" 14 | link: "https://bscscan.com/" 15 | - name: "Accelerator Fund" 16 | link: "https://www.bnbchain.world/en/accelerator" 17 | - name: "Staking" 18 | link: "https://www.bnbchain.world/en/staking" 19 | tags: 20 | - "BSC" 21 | - "BNBChain" 22 | - "EVM" 23 | - "L1 Blockchain" 24 | related: 25 | - "bnbchain" 26 | dashboards: 27 | - "hicrypto/BNBChain-Chain-Stats-and-Trends" 28 | - "hicrypto/BNBChain-Gas" 29 | - "brownboy/BNB-NFT-Summary" 30 | - "akriti_vij_binance/BNB-NFT-Marketplaces-Trading-Volume" 31 | queries: 32 | - 960 33 | embeds: 34 | - name: "BNBChain Daily Active Addresses" 35 | link: "https://dune.xyz/embeds/561143/1052084/271143d8-e697-444e-90bd-189d58dfb656" 36 | --- 37 | 38 | BNB Chain, one of the most popular blockchains in the world, dedicates to delivering its core infrastructure necessary for future public adoption, and always remains as a community-first and open-source ecosystem built on a permissionless and decentralized environment. 39 | 40 | Binance Chain and Binance Smart Chain have formed together as BNB Chain since February 15, 2022. BNB Chain comprises BNB Beacon Chain (previously Binance Chain) and BNB Smart Chain (previously Binance Smart Chain). While BNB (formerly called “Binance Coin”) has also been renamed as “Build and Build.” The name change is not merely for welcoming the crypto world with more than 1 billion users but also to strengthen the delivery of the core infrastructure necessary for future public adoption and, most importantly, to build a better ecosystem for embracing the MetaFi. 41 | 42 | MetaFi is a concept that provides advanced and sophisticated DeFi Infra to all the different types of projects such as metaverse, GameFi, SocialFi, Web3, and NFTs and puts them under one umbrella – MetaFi. 43 | 44 | _From https://docs.bnbchain.world/docs/bnbIntro_ 45 | -------------------------------------------------------------------------------- /pages/verse/verse.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "VERSE" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "verse-black.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#FFFFFF" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "verse" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://www.bitcoin.com/" 19 | - name: "Verse DEX" 20 | link: "https://verse.bitcoin.com" 21 | - name: "Whitepaper" 22 | link: "https://www.getverse.com/verse-whitepaper.pdf" 23 | - name: "Github" 24 | link: "https://github.com/bitcoin-portal/bitcoincom-solidity-swap" 25 | 26 | # List of applicable tags in Dune. These will link to e.g... 27 | tags: 28 | - "verse" 29 | - "ethereum" 30 | - "bcom" 31 | - "bch" 32 | - "smartbch" 33 | - "bitcoin" 34 | - "DeFi" 35 | - "DEX" 36 | 37 | # List of related projects. These projects must exist in this repo and the name... 38 | related: 39 | - "verse" 40 | 41 | # List of relevant dashboard slugs prefixed with username 42 | dashboards: 43 | - "Henrystats/verse-dex-overview" 44 | - "alun/verse" 45 | - "jtk/verse-staking" 46 | - "Henrystats/verse-farmers-analytics" 47 | - "jtk/verse-burns" 48 | 49 | # List of relevant query-ids. 50 | --- 51 | 52 | VERSE is the rewards and utility token for the Bitcoin.com ecosystem. Launched in December 2022, VERSE is now being 53 | integrated into Bitcoin.com’s suite of products. These include the multichain Bitcoin.com Wallet, where over 40 million 54 | self-custodial wallets have been created, and the award-winning Bitcoin.com News platform, with over 2.5 million monthly 55 | readers. 56 | 57 | VERSE will enable anyone to receive rewards for buying, selling, spending, swapping, and staying informed about crypto. 58 | At the same time, VERSE tokens will provide utility within and beyond Bitcoin.com’s ecosystem. Use cases will include 59 | unlocking rewards along tiers, method of payment, access to exclusive platform services and more. 60 | 61 | https://bitcoin.com 62 | -------------------------------------------------------------------------------- /pages/1inch/1inch.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "1inch" 3 | logo: "1inch.svg" 4 | color: "#083751" 5 | schemas: 6 | - "oneinch" 7 | - "oneswap" 8 | - "oneproto" 9 | links: 10 | - name: "Website" 11 | link: "https://1inch.io" 12 | - name: "FAQ" 13 | link: "https://help.1inch.io/en/collections/2617022-faq" 14 | tags: 15 | - "DeFi" 16 | - "DEX" 17 | - "Aggregator" 18 | dashboards: 19 | - "1inch/main" 20 | - "1inch/aggregator" 21 | - "1inch/token" 22 | embeds: 23 | - name: "1inch USD Volume Per Month" 24 | link: "https://explore.duneanalytics.com/embed/query/1738852/visualization/2866870?api_key=1nxpOfINoCOzTRHSc15PWaHlu3vjyQinBbYjtDNU" 25 | --- 26 | 27 | 1inch is a distributed network for decentralized protocols on Ethereum and BSC (Binance Smart Chain) enabling the most lucrative, fastest and protected operations in DeFi (decentralized finance). 28 | 29 | The 1inch Network consists of 5 distinct yet interoperable components: 30 | 31 | - The 1inch Aggregation Protocolfacilitates cost-efficient and secure atomic transactions by utilizing a wide range of protocols and performing argument validation and execution verification. Users leverage the Aggregation Protocol anytime they interact with 1inch in order to find and execute the most efficient transactions across DEXes. 32 | 33 | - The 1inch Liquidity Protocol is a next-generation automated market maker that protects users from front-running attacks and offers capital efficiency to liquidity providers. 34 | 35 | - The 1inch Network is governed by the 1inch DAO, a decentralized autonomous organization that enables 1INCH stakers to vote for key protocol parameters and take part in the network’s governance. 36 | 37 | - A key contributor to the 1inch Network is 1inch Labs, a decentralized group of software builders that develop a range of open-source protocols governed by users through the 1inch DAO. 38 | 39 | - The 1inch Foundation is a non-profit organization that issued the 1INCH token and is dedicated to fostering the 1inch Network and initiatives that benefit the network’s community. The 1inch Foundation incentivizes contributions through grants and other capital deployment vehicles. 40 | 41 | *From https://help.1inch.io/en/articles/4585093-what-is-1inch* 42 | -------------------------------------------------------------------------------- /pages/SKALE/SKALE.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "SKALE" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "skale.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#043892" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "SKALE" 14 | - "skl" 15 | 16 | # List of relevant links to the project. 17 | links: 18 | - name: "Website" 19 | link: "https://skale.space/" 20 | - name: "SKALE stats" 21 | link: "https://skale.space/stats" 22 | - name: "Twitter" 23 | link: "https://twitter.com/SkaleNetwork" 24 | 25 | 26 | # List of applicable tags in Dune. These will link to e.g... 27 | tags: 28 | - "SKALE Network" 29 | - "EVM" 30 | - "Zero Gas Fees" 31 | 32 | # List of relevant dashboard slugs prefixed with username 33 | dashboards: 34 | - "skale/analytics" 35 | - "skale/validator" 36 | - "skale/delegator" 37 | - "skale/statistics" 38 | - "skale/node" 39 | - "skale/schain" 40 | 41 | # List of visualizations to embed 42 | embeds: 43 | - name: "SKALE chains running" 44 | link: "https://dune.com/embeds/2702309/4498115" 45 | - name: "Staked per SKALE validator" 46 | link: "https://dune.com/embeds/2749952/4576851" 47 | --- 48 | 49 | SKALE Network is an open-source, EVM-compatible multichain network built to scale Ethereum dApps with a focus on high-throughput, fast finality, and zero gas fee transactions via the native gas token sFuel. 50 | 51 | The Network enables dApp developers to access validator-operated nodes compute power and storage to run fast, containerized, EVM-compatible chains called SKALE Chains. 52 | 53 | SKALE chains can exchange transactions or messages with other SKALE Chains and the Ethereum Mainnet through the native validator secured bridge (IMA), allowing dApp developers to use SKALE for powering their dApps while enabling token and message transfers to and from Ethereum or other chains. 54 | 55 | With SKALE, dApps run zero-cost transactions on dedicated Proof-of-Stake chains distributed across a randomly chosen set of 16 nodes. 56 | 57 | *From [SKALE Labs](https://skale.space/)* 58 | -------------------------------------------------------------------------------- /pages/synthetix/synthetix.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Synthetix" 3 | logo: "synthetix.svg" 4 | color: "#00D1FF" 5 | schemas: 6 | - "synthetix" 7 | links: 8 | - name: "Website" 9 | link: "https://synthetix.io/" 10 | - name: "Twitter" 11 | link: "https://twitter.com/Synthetix_io" 12 | - name: "Discord" 13 | link: "https://discord.gg/synthetix" 14 | - name: "GitHub" 15 | link: "https://github.com/synthetixio" 16 | tag: 17 | - "Synthetix" 18 | - "Lyra" 19 | - "derivative" 20 | - "DeFi" 21 | related: 22 | - "lyra" 23 | dashboards: 24 | - "nemoventures/Synthetix" 25 | - "drethereum/Synthetix-Futures:-Overview" 26 | - "synthquest/snx-escrow-release" 27 | - "gunboats/SNX-Liquidation" 28 | - "gunboats/snx-atomic-exchange-observation" 29 | queries: 30 | - 31 | embeds: 32 | - name: "SNX Fee L1+L2" 33 | link: "https://dune.com/embeds/960709/1668214/d3a249f0-781a-47f2-990c-12427c00ce8b" 34 | - name: "Synthetix Futures Volume" 35 | link: "https://dune.com/embeds/857643/1494161/942809bc-d523-442a-97dd-900f374421dd" 36 | --- 37 | 38 | Synthetix is building a decentralized liquidity provisioning protocol that any protocol can tap into for various purposes. Its deep liquidity and low fees serve as a backend for many exciting protocols on both Optimism and Ethereum. Many user-facing protocols in the Synthetix Ecosystem, such as Kwenta (Spot and Futures), Lyra (Options), Polynomial (Automated Options), and 1inch & Curve (Atomic Swaps), tap into Synthetix liquidity to power their protocols. Synthetix is built on Optimism and Ethereum Mainnet. 39 | 40 | The Synthetix Network is collateralized by SNX, ETH, and LUSD, enabling the issuance of synthetic assets (Synths). This pooled collateral enables an array of on-chain, composable financial instruments backed by liquidity from Synthetix. 41 | 42 | Some of the most exciting upcoming releases from SNX are Perps V2 which hopes to enable low fee on-chain futures trading through the usage of off-chain oracles, and Synthetix V3 which aims to rebuild the protocol to achieve its earliest goal, being a fully permissionless derivatives protocol. Learn more about Synthetix on their blog or by joining the SNX Discord. -------------------------------------------------------------------------------- /pages/Tokamak-Network/Tokamak-Network.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "Tokamak Network" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "Tokamak-Network.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#2a72e5" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "tokamaknetwork" 14 | - "ovm" 15 | 16 | # List of relevant links to the project. 17 | links: 18 | - name: "Website" 19 | link: "https://www.tokamak.network/" 20 | - name: "Medium" 21 | link: "https://medium.com/onther-tech" 22 | - name: "Twitter" 23 | link: "https://twitter.com/Tokamak_Network" 24 | - name: "Discord" 25 | link: "https://discord.gg/FuwksZQQ7r" 26 | - name: "Telegram" 27 | link: "https://t.me/tokamak_network" 28 | - name: "Linkedin" 29 | link: "https://www.linkedin.com/company/tokamaknetwork/" 30 | 31 | # List of applicable tags in Dune. These will link to e.g... 32 | tags: 33 | - "Tokamak Network" # ...explore.duneanalytics.com/dashboards?tags=DAI 34 | - "TON" 35 | - "L2" 36 | 37 | # List of relevant dashboard slugs prefixed with username 38 | dashboards: 39 | - "tokamak-network/tokamak-network-tokenomics-dashboard" 40 | - "tokamak-network/tokamak-network-staking-dashboard" 41 | 42 | # List of relevant query-ids. 43 | queries: 44 | - 3181703 45 | 46 | # List of visualizations to embed 47 | embeds: 48 | - name: "Tokamak Network Token Daily Transactions" 49 | link: "https://dune.com/embeds/3198200/5344870" 50 | 51 | --- 52 | Tokamak Network is a layer 2 protocol including plasma and roll-up that boosts interoperability, scalability, functionality, and usability, while the security and data availability are guaranteed by the decentralized Ethereum blockchain. Anyone can open an on-demand layer 2 solution and adapt it o their specific needs for scalability. The mission of Tokamak Network is to support various services from DApp projects to Ethereum infrastructure solutions, in order to meet the requirements for Ethereum mass adoption. 53 | 54 | See more at [tokamak.network](https://www.tokamak.network/) 55 | 56 | *From [tokamak.network](https://www.tokamak.network/).* -------------------------------------------------------------------------------- /pages/lido/lido.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Lido" 3 | logo: "lido.svg" 4 | color: "#00a3ff" 5 | schemas: 6 | - "lido" 7 | links: 8 | - name: "Website" 9 | link: "https://lido.fi/" 10 | - name: "Docs" 11 | link: "https://docs.lido.fi/" 12 | - name: "Discord" 13 | link: "https://discord.com/invite/lido" 14 | tags: 15 | - "lido" 16 | - "stETH" 17 | - "staking" 18 | - "liquid staking" 19 | - "DeFi" 20 | dashboards: 21 | - "LidoAnalytical/Lido-Finance-Extended" 22 | - "LidoAnalytical/Integration-monitor-dashboard" 23 | - "LidoAnalytical/LPs-Incentives-monitor-dashboard" 24 | - "lido/wsteth-on-arbitrum" 25 | - "/lido/wsteth-on-optimism" 26 | - "sam_la/lido-on-polygon" 27 | queries: [] 28 | embeds: 29 | - name: "Total Value Locked (Ethereum)" 30 | link: "https://dune.com/embeds/837989/1465115/fbb4a037-a307-43a7-bac1-9c1309894bbd" 31 | - name: "stETH Staking APR" 32 | link: "https://dune.com/embeds/570874/1464690/446ff2ad-82b1-46ac-933f-b0870ca016e4" 33 | - name: "LDO Price" 34 | link: "https://dune.com/embeds/202044/377005/c1bfbbc3-7937-4c03-8d36-32581267aa1d" 35 | - name: "Total Value Locked (Polygon)" 36 | link: "https://dune.com/embeds/1088111/1863399/e47328b2-da2b-4d59-bd3e-ab2f4637998a" 37 | --- 38 | --- 39 | 40 | **The Liquid Staking Solution for PoS Blockchains** 41 | Lido is a liquid staking protocol for multiple PoS blockchains acked by industry-leading staking providers. stETH is the market-leading liquid staking derivative on the ETH network. 42 | 43 | **Strengthening Network Infrastructure** 44 | Lido lets users stake their ETH - without locking assets or maintaining infrastructure - whilst participating in on-chain activities, e.g. lending. 45 | 46 | **Unlocking Liquidity** 47 | Lido attempts to solve the problems associated with initial ETH staking - illiquidity, immovability and accessibility - making staked ETH liquid and allowing for participation with any amount of ETH to improve performance of the Ethereum network. 48 | 49 | **Decentralized Governance** 50 | The Lido DAO governs a set of liquid staking protocols, decides on key parameters (e.g., fees) and executes protocol upgrades to ensure efficiency and stability. LDO is the Ethereum token granting governance rights in the Lido DAO. 51 | 52 | *From https://lido.fi/faq -------------------------------------------------------------------------------- /pages/fantiger/fantiger.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "FanTiger" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "fantiger.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#3454FA" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "fantiger" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://fantiger.com/" 19 | - name: "FAQ" 20 | link: "https://fantiger.com/#Faqs" 21 | - name: "Twitter" 22 | link: "https://twitter.com/FanTiger_com" 23 | 24 | # List of applicable tags in Dune. These will link to e.g... 25 | tags: 26 | - "NFT" # ...explore.duneanalytics.com/dashboards?tags=DAI 27 | - "mint" # ...explore.duneanalytics.com/dashboards?tags=makerdao 28 | - "transfer" 29 | - "DeFi" 30 | 31 | # List of related projects. These projects must exist in this repo and the name... 32 | related: 33 | - "fantiger" # ...should match like "pages/makerdao/makerdao.md". 34 | 35 | # List of relevant dashboard slugs prefixed with username 36 | dashboards: 37 | - "fantiger/dashboard" 38 | 39 | # List of relevant query-ids. 40 | queries: 41 | - 2672702 42 | - 2672698 43 | - 2672614 44 | --- 45 | 46 | FanTiger is a groundbreaking decentralized platform reshaping the way users engage with music. We are revolutionizing music investment by introducing FanCards, digital assets tied directly to songs. When users purchase these FanCards, they are essentially buying a piece of the song itself, claiming ownership, and opening up a multitude of privileges. As the song garners revenue, FanCard owners are entitled to a share of these earnings, deriving royalties from their digital investments. In contrast to other crypto and NFT platforms, FanTiger stands out for offering faster liquidity and minimizing drastic price fluctuations. Trading FanCards on our platform not only gives music enthusiasts a new way to support their favorite artists but also provides them with a unique and potentially profitable investment opportunity. In short, FanTiger is where passion for music meets the excitement of trading and investing in a secure, rewarding, and streamlined decentralized environment. -------------------------------------------------------------------------------- /pages/SKALE/skale.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 10 | 13 | 22 | 23 | 26 | 32 | 34 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /pages/gnosis/gnosis.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Gnosis" 3 | logo: "gnosis.svg" 4 | color: "#ddd" 5 | schemas: 6 | - "gnosis" 7 | links: 8 | - name: "Website" 9 | link: "https://gnosis.io/" 10 | - name: "Gnosis Safe" 11 | link: "https://gnosis-safe.io/" 12 | - name: "CoW Protocol" 13 | link: "https://cow.fi" 14 | - name: "CowSwap" 15 | link: "https://cowswap.exchange" 16 | - name: "Github" 17 | link: "https://github.com/gnosis" 18 | tags: 19 | - "Gnosis Safe" 20 | - "CoW Protocol" 21 | - "DEX" 22 | - "DeFi" 23 | - "MEV" 24 | dashboards: 25 | - "tschubotz/gnosis-safe_2" 26 | - "gnosis.protocol/CowSwap" 27 | - "gnosis.protocol/GPv2-Solver-Info" 28 | - "Greame87/conditional-token-framework_1" 29 | embeds: 30 | - name: "Gnosis Safe Total Value Locked" 31 | link: "https://explore.duneanalytics.com/embed/query/5059/visualization/9969?api_key=d4YzPKwiyQGjBfvHMu9QlA23a4ZdlGBTz7Et01nw" 32 | - name: "Gnosis Protocol Daily Trading Volume" 33 | link: "https://dune.xyz/embeds/37065/75258/jN8q3XqC8sWUnHw2uzLciDLXNPmv0I4IDYcJA5W3" 34 | --- 35 | 36 | Gnosis builds new market mechanisms for open finance. By designing fairer marketplaces with open-source building blocks, Gnosis is committed to supporting an accessible, equitable future for decentralized finance. Our three interoperable product lines allow you to securely create, trade, and hold crypto assets. 37 | 38 | **Create:** Conditional tokens are an application-agnostic asset class designed for the creation of highly liquid prediction markets. This new type of asset uses the open Conditional Tokens Framework to enable combinatorial outcomes for information discovery through prediction markets, laying the foundation for use cases like futarchy, agentless escrow, and milestone-based funding & access rights allocation. 39 | 40 | **Trade:** Gnosis Protocol is a fully permissionless DEX that prevents front-running, maximizes liquidity through ring trades, and facilitates captial-efficient programmable orders on a customizable price range with batch auctions and custom market makers. 41 | 42 | **Hold:** Gnosis Safe Multisig is the trustless interface for Safe Apps, dApp modules that decode contract interaction into human-readable information for digital asset management on Ethereum. Safe Apps ensure security and persistence through IPFS hosting, and most are open-source and auditable. 43 | 44 | *From https://gnosis.io/* 45 | -------------------------------------------------------------------------------- /pages/juicebox/juicebox.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Juicebox" 3 | logo: "juicebox.svg" 4 | color: "#f5a312" 5 | schemas: 6 | - "juicebox" 7 | - "juicebox_v2" 8 | links: 9 | - name: "Website" 10 | link: "https://juicebox.money/" 11 | - name: "Info" 12 | link: "https://info.juicebox.money/" 13 | - name: "Twitter" 14 | link: "https://twitter.com/juiceboxETH" 15 | - name: "Discord" 16 | link: "https://discord.gg/eCT4apHz2a" 17 | tags: 18 | - "juicebox" 19 | - "DeFi" 20 | - "asset management" 21 | dashboards: 22 | - "twodam/Juicebox-Protocol-Overview" 23 | - "twodam/Juicebox-Projects" 24 | - "twodam/Juicebox-Portfolio" 25 | - "twodam/Juicebox-Logbook" 26 | queries: 27 | - [] 28 | embeds: 29 | - name: "Total Raised in USD" 30 | link: "https://dune.com/embeds/1170127/2000702/5d144cdd-23f0-4238-b02e-65b218508aed" 31 | - name: "New proejcts" 32 | link: "https://dune.com/embeds/389630/742977/6c1ca61d-031d-45e7-8900-b00abfb5258b" 33 | - name: "Fee and payment times" 34 | link: "https://dune.com/embeds/389638/743005/be1b5ec7-5e6d-4936-8bcf-af8373cb8eb9" 35 | --- 36 | 37 | **Fund anything** 38 | The programmable funding protocol for builders and creators. Light enough for a group of friends, powerful enough for a global network of anons. Community-owned, on Ethereum. 39 | Built for: 40 | 41 | * DAOs 42 | * Crowdfunding 43 | * NFT projects 44 | * Indie creators and builders 45 | 46 | **Programmable spending** 47 | Commit portions of your funds to the people or projects you want to support, or the contributors you want to pay. When you get paid, so do they. 48 | 49 | **ERC-20 community tokens** 50 | When someone pays your project, they'll receive your project's tokens in return. Tokens can be redeemed for a portion of your project's overflow funds; when you win, your community wins with you. Leverage your project's token to grant governance rights, community access, or other membership perks. 51 | 52 | **Redistributable surplus** 53 | Set a funding target to cover predictable expenses. Any extra funds (overflow) can be claimed by anyone holding your project's tokens alongside you. 54 | 55 | **Transparency & accountability** 56 | Changes to your project's funding configuration require a community-approved period to take effect, which acts as a safeguard against rug pulls. Your supporters don't have to trust you — even though they already do. 57 | 58 | *From https://juicebox.money/.* 59 | -------------------------------------------------------------------------------- /pages/index-coop/index-coop.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Index Coop" 3 | logo: "index-coop.svg" 4 | color: "#00BEC2" 5 | schemas: 6 | - "indexcoop" 7 | - "setprotocol_v2" 8 | links: 9 | - name: "Website" 10 | link: "https://www.indexcoop.com/" 11 | - name: "Forum" 12 | link: "https://gov.indexcoop.com/" 13 | - name: "Docs" 14 | link: "https://docs.indexcoop.com/" 15 | - name: "Discord" 16 | link: "https://discord.gg/NHWkSatPSn" 17 | - name: "Twitter" 18 | link: "https://twitter.com/indexcoop" 19 | tags: 20 | - "Index Coop" 21 | - "DeFi" 22 | dashboards: 23 | - "index_coop/investors" 24 | - "index_coop/sector-products" 25 | - "index_coop/leverage-products" 26 | - "index_coop/yield-products" 27 | embeds: 28 | - name: "Index Coop Addresses w/ $100+ Last 90 Days" 29 | link: "https://dune.com/embeds/1332657/2277641/58c9e263-674b-4f43-a618-9177164a5147" 30 | - name: "Index Coop Cumulative Net Flows - All Time" 31 | link: "https://dune.com/embeds/1329054/2271632/10af75c7-dd8b-4902-9629-98f709623bfd" 32 | - name: "Index Coop TVL - All Time" 33 | link: "https://dune.com/embeds/1329054/2271633/79705c57-4dd4-445c-9e04-cf40b44b68a6" 34 | --- 35 | 36 | The Index Coop is a decentralized autonomous organization (DAO) and the largest provider of on-chain structured decentralized finance (DeFi) products. Our diversified and automated products provide exposure to the most productive and sustainable strategies in DeFi. We currently offer a sector, leverage and yield-generating products via ERC20 tokens that are accessible, secure and simple to use. 37 | 38 | Disclaimer: 39 | 40 | _Index Coop token products are not marketed or offered to any Restricted Person, as this term is defined in our Terms of Service. As defined therein, a Restricted Person includes a citizen, resident (tax or otherwise), and/or green card holder, incorporated in, owned or controlled by a person or entity in, located in, or have a registered office or principal place of business in the U.S. (defined as a U.S. person), or a person in any jurisdiction in which such offer, sale, and/or purchase of Index Coop token products is unlawful, prohibited, or unauthorized._ 41 | 42 | _If you are a Restricted Person, you may not purchase or otherwise acquire Index Coop token products. If you are unsure as to your eligibility, read our Terms of Service and list of Tokens Restricted for US Persons, and consult your financial, legal and/or tax advisor._ 43 | -------------------------------------------------------------------------------- /pages/liquity/liquity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pages/badgerdao/badgerdao.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "Badger" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "badgerdao.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#f2a52b" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "badgerdao" 14 | 15 | # List of relevant links to the project. 16 | links: 17 | - name: "Website" 18 | link: "https://badger.finance/" 19 | - name: "App" 20 | link: "http://app.badger.finance/" 21 | - name: "Twitter" 22 | link: "https://twitter.com/BadgerDAO" 23 | - name: "Telegram" 24 | link: "https://t.me/badger_dao" 25 | - name: "GitHub" 26 | link: "https://github.com/Badger-Finance" 27 | - name: "Discord" 28 | link: "https://discord.com/invite/xSPFHHS" 29 | - name: "Forum" 30 | link: "https://forum.badger.finance/" 31 | 32 | # List of applicable tags in Dune. These will link to e.g... 33 | tags: 34 | - "BadgerDAO" 35 | - "BADGER" 36 | - "DIGG" 37 | - "ibBTC" 38 | - "bridge" 39 | - "Bitcoin" 40 | 41 | # List of related projects. These projects must exist in this repo and the name... 42 | #related: 43 | # - "project" # ...should match like "pages/project/project.md". 44 | 45 | # List of relevant dashboard slugs prefixed with username 46 | dashboards: 47 | - "summmason/badger-dao" 48 | - "gosuto/BadgerDAO-KPIs" 49 | - "petrovska/ibBTC-dashboard" 50 | - "gosuto/Badger-Bitcoin-Bridge" 51 | 52 | # List of relevant query-ids. 53 | #queries: 54 | # - 855 55 | 56 | # List of visualizations to embed 57 | embeds: 58 | - name: "WBTC/ibBTC SLP Ratio" 59 | link: "https://duneanalytics.com/embeds/50766/100126/f715ef07-9d89-4196-903f-f258b1cda841" 60 | --- 61 | 62 | Badger is a decentralized autonomous organization (DAO) with a single purpose: build the products and infrastructure necessary to accelerate Bitcoin as collateral across other blockchains. 63 | 64 | It’s meant to be an ecosystem DAO where projects and people from across DeFi can come together to collaborate and build the products our space needs. Shared ownership in the DAO will allow builders to have aligned incentives while decentralized governance can ensure those incentives remain fair to all parties. The idea is less competing and more collaborating. 65 | 66 | *Read our introduction at https://badgerdao.medium.com/introducing-badger-dao-ed47a586c619* 67 | -------------------------------------------------------------------------------- /pages/lyra/lyra.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Lyra" 3 | logo: "lyra.svg" 4 | color: "#05C99B" 5 | schemas: 6 | - "lyra_v1" 7 | links: 8 | - name: "Website" 9 | link: "https://www.lyra.finance/" 10 | - name: "App" 11 | link: "https://app.lyra.finance/" 12 | - name: "Documentation" 13 | link: "https://docs.lyra.finance/" 14 | - name: "GitHub" 15 | link: "https://github.com/lyra-finance" 16 | tags: 17 | - "Lyra" 18 | - "Optimism" 19 | - "Synthetix" 20 | - "Options" 21 | - "Derivatives" 22 | - "L2" 23 | dashboards: 24 | - "Muir/Lyra-Usage-Statistics-(Post-Regenesis)" 25 | - "Tyche/Lyra" 26 | - "ro_your_boat/Lyra-Options-OVM2.0" 27 | - "ro_your_boat/Lyra-Volatility-Data" 28 | - "aeto/Lyra-or-AMM-strike-positions" 29 | queries: 30 | - 253788/475394 31 | - 253763/475356 32 | - 253780/475383 33 | embeds: 34 | - name: "Lyra Daily Unique Traders" 35 | link: "https://dune.xyz/embeds/249685/483839/7697ca6f-2631-4d1b-ad41-8818fb2eec3f" 36 | - name: "Lyra Daily sUSD Volume" 37 | link: "https://dune.xyz/embeds/249685/483837/86351a30-0f67-4037-a37c-b975a777ea22" 38 | - name: "Lyra Number of Trades" 39 | link: "https://dune.xyz/embeds/253393/474427/5314b822-9435-494e-9c63-4371724b82f2" 40 | --- 41 | 42 | Lyra is an automated market maker for trading options on Optimism Ethereum. 43 | 44 | ### How is Lyra different from the other options protocols? 45 | Lyra uses a dynamic volatility input to price the entire options surface using a Black Scholes model. Current implementations use a static IV or other, less accurate workarounds to price options. 46 | 47 | Lyra is also the first options AMM to compose with other DeFi projects to automatically price and hedge risk for LPs. The reduced risk allows LPs to feel comfortable to provide deeper liquidity, yielding more trading volume and higher fees. 48 | 49 | ### Why use Optimism and not another scaling solution? 50 | Optimism is a layer 2 scaling platform that inherits the security of Ethereum by virtue of being a rollup. Sidechains like Polygon do not share this property. Their security is dependent on their own consensus mechanism. 51 | 52 | V1 of Lyra has been designed to hedge risk via Synthetix, which offers zero slippage, infinite liquidity and a simple means of getting long/short. This is why Lyra has chosen to deploy to Optimism. Future versions of the protocol will be designed to ensure Lyra can be deployed on multiple L2s, so that the protocol can exist wherever the majority of users and liquidity ends up. 53 | 54 | 55 | *From https://docs.lyra.finance/faq* 56 | -------------------------------------------------------------------------------- /pages/swarm/swarm.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Swarm" 3 | 4 | logo: "swarm.svg" 5 | 6 | color: "#DD7200" 7 | 8 | links: 9 | - name: "Website" 10 | link: "https://ethswarm.org/" 11 | - name: "Docs" 12 | link: "https://docs.ethswarm.org/docs/" 13 | - name: "Desktop App" 14 | link: "https://www.ethswarm.org/build/desktop" 15 | - name: "Blog" 16 | link: "https://blog.ethswarm.org/" 17 | - name: "Whitepaper" 18 | link: "https://www.ethswarm.org/swarm-whitepaper.pdf" 19 | - name: "Awesome Swarm" 20 | link: "https://github.com/ethersphere/awesome-swarm" 21 | 22 | tags: 23 | - "ethswarm" 24 | - "swarm" 25 | - "Ethereum" 26 | - "storage" 27 | - "bzz" 28 | 29 | related: 30 | - "gnosis" 31 | 32 | dashboards: 33 | - "markoshi/swarm-metrics" 34 | - "pablog/bzz-swarm" 35 | - "shytortoise1/total-holder-by-day-bzz" 36 | --- 37 | 38 | Swarm is a decentralised storage and communication system for a sovereign digital society. 39 | 40 | The system is economically self-sustaining due to a built-in incentive system enforced through smart contracts on the Ethereum blockchain. Users remain sovereign owners of their personal data in alignment with fair data principles. The architecture makes the system resilient to connectivity issues, node churn, or targeted DDOS attacks, and enables a zero-downtime service. 41 | 42 | Swarm exists so the internet can again be decentralised. 43 | Swarm’s longer term vision is to become the operating system of the re-decentralised internet. It provides a scalable and self-sustaining infrastructure for a supply-chain economy of data. 44 | 45 | - **Unstoppable features for unstoppable dApps**: Privacy preservation, communication and redundancy are built in to ensure availability and continued data delivery even when individual nodes go offline. Any data, any device. On demand. 46 | 47 | - **Radical data ownership and management**: Data is split up into small chunks that are stored throughout the network without vulnerable central hubs. Operators cannot know what content is stored on their nodes while still being paid for storing. 48 | 49 | - **Enabling zero-cost economics**: No central party controls the data or can monetize it. Instead of relying on intermediaries to ensure the availability and integrity of data, all node operators participate in enabling a fair data economy. 50 | 51 | Shifting the cost of access, hosting and execution to users removes the last obstacle to truly agile and adaptive application development to make web3 a reality. 52 | 53 | _Read more at https://www.ethswarm.org/swarm-whitepaper.pdf_ 54 | -------------------------------------------------------------------------------- /pages/fantom/fantom.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "Fantom" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "fantom.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#1965E9" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "fantom" 14 | - "ftm" 15 | 16 | # List of relevant links to the project. 17 | links: 18 | - name: "Website" 19 | link: "https://fantom.foundation/" 20 | - name: "How to get Funding" 21 | link: "https://fantom.foundation/blog/how-to-get-funding-on-fantom/" 22 | - name: "Infinite AMA with Andre Cronje" 23 | link: "https://forum.fantom.network/t/andre-cronje-infinite-ama/" 24 | - name: "Twitter" 25 | link: "https://twitter.com/FantomFDN" 26 | - name: "Discord" 27 | link: "http://chat.fantom.network/" 28 | - name: "Blog" 29 | link: "https://fantom.foundation/blog/" 30 | - name: "Vertical Blocks Podcast" 31 | link: "https://www.youtube.com/playlist?list=PLnIhjZ2Pd4JW2lqTPvyWNN44v2Gp4woaX" 32 | 33 | # List of applicable tags in Dune. These will link to e.g... 34 | tags: 35 | - "Fantom" 36 | - "FTM" 37 | - "L1" 38 | 39 | # List of relevant dashboard slugs prefixed with username 40 | dashboards: 41 | - "sixdegree/fantom-blockchain-overview" 42 | - "Henrystats/fantom-ecosystem-overview" 43 | - "bravenoob21/fantom-gitcoin-grants-round-1" 44 | - "bravenoob21/fantom-dapp-gas-monetization" 45 | 46 | # List of relevant query-ids. 47 | queries: 48 | - 1936417 49 | 50 | # List of visualizations to embed 51 | embeds: 52 | - name: "Fantom Daily Users" 53 | link: "https://dune.com/embeds/1949687/3216965/9db9c17f-651f-4c7b-bf7c-992b42873398" 54 | - name: "Fantom Daily Users" 55 | link: "https://dune.com/embeds/1949687/3216965/9db9c17f-651f-4c7b-bf7c-992b42873398" 56 | - name: "Total Gas Used & dApp Gas Monetization Program" 57 | link: "https://dune.com/embeds/1854735/3052858/c17db44e-fcd5-4212-ad68-14d7162b1d6b" 58 | --- 59 | Fantom is a high-performance, scalable, EVM-compatible, and secure smart-contract platform. 60 | 61 | Fantom’s mainnet deployment—Fantom Opera—is built on Fantom’s consensus mechanism, Lachesis. Fantom is a leaderless, asynchronous, and byzantine fault-tolerant Layer 1 blockchain protocol. 62 | 63 | Lachesis enables Fantom to deliver fast transaction speeds, low transaction costs, and deterministic finality. This is achieved while remaining permissionless, decentralized, and open-source. 64 | 65 | *From [fantom.foundation](https://fantom.foundation/intro-to-fantom/)* 66 | -------------------------------------------------------------------------------- /pages/axelar/axelar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /pages/TrueFi/TrueFi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 13 | 16 | 18 | 20 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /pages/dai/dai.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/zkBob/zkBob.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "zkBob" 3 | logo: "zkBob.svg" 4 | color: "#2A1B5C" 5 | schemas: 6 | - "zkbob" 7 | links: 8 | - name: "Website" 9 | link: "https://app.zkbob.com/?utm_source=dune&utm_medium=project" 10 | - name: "FAQ" 11 | link: "https://linktr.ee/zkbob" 12 | tags: 13 | - "zkBob" 14 | - "BOB" 15 | - "privacy" 16 | - "Polygon" 17 | - "Optimism" 18 | - "stablecoin" 19 | dashboards: 20 | - "zkbob/zkbob-main" 21 | - "zkbob/bob" 22 | - "zkbob/zkbob-on-polygon" 23 | - "zkbob/zkbob-on-optimism" 24 | - "zkbob/bob-cdp" 25 | - "zkbob/zkbobpooleth-on-optimism" 26 | - "zkbob/lifi" 27 | embeds: 28 | - name: "BOB Deposited Over Time On Polygon" 29 | link: "https://dune.com/embeds/2009800/3326301/6ebe83bf-8fa1-4624-b18b-c560c38a8877" 30 | - name: "BOB Deposited Over Time On Optimism" 31 | link: "https://dune.com/embeds/2445692/4019506/c10569e2-3bdd-439f-bec4-ee360132a129" 32 | - name: "BOB Total Supply" 33 | link: "https://dune.com/embeds/1631254/2703447/eea02c6f-ec2e-4429-8d50-0154b3846178" 34 | 35 | --- 36 | 37 | zkBob is a stablecoin-based privacy application deployed on Polygon and Optimism and designed for everyday users and common use cases. zkBob uses zkSNARKS to anonymize senders, receivers, and amounts when transferring stable funds. 38 | 39 | Compliance features deter bad actors and illicit usage, giving privacy and safety back to ordinary blockchain users. 40 | 41 | zkBob is optimized to work with the BOB token, a multi-chain stable token (stablecoin) enhanced with optional privacy. Other tokens such as ETH, USDC and others will appear later. 42 | 43 | The main components of zkBob ecosystem are the following: 44 | 45 | 1. zkBob is a zk-based privacy application built for stablecoin transfers. It accepts BOB stablecoins for deposit, and once deposited in the zkBob app, BOB can be transferred anonymously between participants. BOB can then be withdrawn from the application to an EOA (externally owned address) preserving anonymity of the transfer amounts and participants. [Lean more](https://docs.zkbob.com/zkbob-overview/readme) 46 | 47 | 2. BOB is a multi-chain & multi-collateral stable token (stablecoin) enhanced with optional privacy features. It could be acquired through swaps using apps like Paraswap, 1inch and others. BOB can also be transferred between users in a shielded form using the zkBOB application. [Learn more](https://bob-docs.zkbob.com/) 48 | 49 | 3. The Bob CDP (collateralized debt position) module allows borrowers to use various types of on-chain collateral to mint over-collateralized BOB tokens as debt. LP providers of the following pairs can mint BOB to start (minimum $100 collateral): BOB/USDC, BOB/USDT, BOB/MATIC, BOB/WETH. [Learn more](https://bob-docs.zkbob.com/bob-cdp/about) 50 | 51 | 52 | *From https://docs.zkbob.com/zkbob-overview/basic-concepts* 53 | -------------------------------------------------------------------------------- /pages/zerion/zerion.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /pages/barnbridge/barnbridge.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /pages/aave/aave.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /pages/alkemi/alkemi.svg: -------------------------------------------------------------------------------- 1 | Asset 1 -------------------------------------------------------------------------------- /pages/cyberconnect/cyberconnect.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "CyberConnect" 3 | logo: "cyberconnect-black.svg" 4 | color: "#000000" 5 | schemas: 6 | - "link3_profile_bnb" 7 | - "link3_ethereum" 8 | links: 9 | - name: "Website" 10 | link: "https://cc.me/" 11 | - name: "Docs" 12 | link: "https://docs.cyberconnect.me/" 13 | - name: "Link3" 14 | link: "https://link3.to/" 15 | - name: "Tutorials" 16 | link: "https://cyberconnect.hashnode.dev/" 17 | - name: "Mirror" 18 | link: "https://mirror.xyz/cyberlab.eth" 19 | - name: "Github" 20 | link: "https://github.com/cyberconnecthq" 21 | - name: "Twitter" 22 | link: "https://twitter.com/CyberConnectHQ" 23 | 24 | tags: 25 | - "Protocol" 26 | - "Social" 27 | - "ccProfile" 28 | - "CyberConnect" 29 | - "Decentralized Social" 30 | dashboards: 31 | - "cyberconnecthq/cyberconnect-link3-metrics" 32 | queries: 33 | - 1985938 34 | - 2162808 35 | embeds: 36 | - name: "Total ccProfile Count" 37 | link: "https://dune.com/embeds/1985222/3282306/5b08248b-5845-40da-b617-09743a78e111" 38 | - name: "Weekly Active Users Count" 39 | link: "https://dune.com/embeds/2109404/3469459/5b08248b-5845-40da-b617-09743a78e111" 40 | --- 41 | 42 | [CyberConnect](https://cc.me/) is a decentralized social graph protocol with identity sovereignty for mass adoption and network effects. To enable dApps in building Web3-native social experiences, CyberConnect Social Graph offers developers a robust set of tools to build composable applications utilizing all user-created content and social connections generated on the CyberConnect protocol. To enable programmability and scalability, CyberConnect Social Graph implements a hybrid architecture with Smart Contracts and Scalable Storage Modules. 43 | 44 | CyberConnect Social Graph’s smart contracts represent key elements of social data in the format of ERC-721 tokens with the flexibility of customizing them as non-transferable SBTs ([**soulbound tokens**](https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4105763)). Three core concepts make up the CyberConnect protocol, namely **ProfileNFT**, **SubscriberNFT**, and **EssenceNFT**. When user A follows user B from their on-chain profile, user A mints user B’s SubscriberNFT. Further, when user A creates a post, they may choose to use EssenceNFT to represent the post and implement on-chain monetization. 45 | 46 | The protocol also offers a rich set of customizable and extensible middleware smart contracts for ProfileNFT owners to choose when they want to issue their SubscriberNFT or EssenceNFT. The middleware design enables users to implement Web3-native use cases like “only BAYC holders can subscribe” or “pay 1 ETH to collect my 500 limited edition posts.” To learn more, visit [**CyberConnect Developer Center**](https://docs.cyberconnect.me/) or dive deep into our previous [**tutorials**](https://cyberconnect.hashnode.dev/getting-started-with-cyberconnect). 47 | 48 | *From [https://cyberconnect.me/](https://cyberconnect.me/)* 49 | -------------------------------------------------------------------------------- /pages/airswap/airswap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pages/makerdao/makerdao.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pages/xdollar/xdollar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Layer 1 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /pages/thales/thales.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Thales" 3 | logo: "thales.svg" 4 | color: "#04045a" 5 | schemas: 6 | - "thales" 7 | - "overtime" 8 | links: 9 | - name: "Thales Website" 10 | link: "https://thalesmarket.io/" 11 | - name: "Thales Twitter" 12 | link: "https://twitter.com/thalesmarket" 13 | - name: "Thales Blog" 14 | link: "https://thalesmarket.medium.com/" 15 | - name: "Thales Docs" 16 | link: "https://docs.thalesmarket.io/" 17 | - name: "Overtime Website" 18 | link: "https://overtimemarkets.xyz/" 19 | - name: "Overtime Twitter" 20 | link: "https://twitter.com/OvertimeMarkets" 21 | - name: "Overtime Blog" 22 | link: "https://medium.com/@OvertimeMarkets.xyz" 23 | - name: "Overtme Docs" 24 | link: "https://docs.overtimemarkets.xyz/" 25 | - name: "Discord" 26 | link: "https://discord.com/invite/rB3AWKwACM" 27 | - name: "GitHub" 28 | link: "https://github.com/thales-markets" 29 | tag: 30 | - "Thales" 31 | - "Overtime" 32 | - "Options" 33 | - "DeFi" 34 | - "Sports" 35 | dashboards: 36 | - "leifu/overtime-sports-market" 37 | - "leifu/overtime-sports-market-arbitrum" 38 | - "leifu/Thales-Key-Metrics-(OE)" 39 | - "leifu/thales-key-metrics-arbitrum" 40 | - "leifu/thales-speed-markets-overview" 41 | queries: 42 | - 3046192 43 | - 1047340 44 | - 2056923 45 | - 2682170 46 | embeds: 47 | - name: "Thales AMM - Weekly AMM PnL w/o Safebox Fee By Maturity Date" 48 | link: "https://dune.com/embeds/3046192/5066688" 49 | - name: "Overtime - Daily Stats By Sport" 50 | link: "https://dune.com/embeds/1047340/1804997" 51 | - name: "Overtime - Weekly AMM PnL w/ SafeBox Fee Per Sport" 52 | link: "https://dune.com/embeds/2056923/3402931" 53 | - name: "New User vs. Returning User Weekly - Overtime" 54 | link: "https://dune.com/embeds/2682170/4460450" 55 | 56 | --- 57 | 58 | Thales Protocol offers an oracle-based automated liquidity solution, enabling the creation of various on-chain Positional Markets. These markets are limited only by the data available to the blockchain. 59 | 60 | The simple yet robust smart contracts at the core of Thales Market allow participation in markets for various crypto assets. However, this is not limited to straightforward up/down positions. Thales Protocol continues to innovate by developing the world's first **SportsAMM** and **ParlayAMM** solutions. 61 | 62 | Overtime serves as a positional market for popular sporting events, operating independently of centralized entities, unlike most sports markets. Inspired by Thales contracts, and fueled by reliable data feeds from industry-leading oracle **Chainlink**, Overtime offers an unparalleled DeFi experience. Traders can enjoy sports markets without KYC, without third-party custody of funds, and without user registration. Nobody can be excluded or barred from using Overtime. 63 | 64 | This is the first public product that combines decentralization, instant liquidity, and highly competitive odds—all in one place. Overtime is truly bringing the game to the blockchain! 65 | -------------------------------------------------------------------------------- /pages/optimism/optimism.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 3 | name: "Optimism" 4 | 5 | # The name of the logo file. Should have the same name as the markdown file. 6 | logo: "optimism.svg" 7 | 8 | # The main color of the project. Remember to quote this value. 9 | color: "#FF0420" 10 | 11 | # List of relevant schemas you can query in dune. 12 | schemas: 13 | - "optimism" 14 | - "ovm" 15 | 16 | # List of relevant links to the project. 17 | links: 18 | - name: "Website" 19 | link: "https://www.optimism.io/" 20 | - name: "Optimism Ecosystem" 21 | link: "https://www.optimism.io/apps/all" 22 | - name: "The Optimistic Vision" 23 | link: "https://www.optimism.io/vision" 24 | - name: "Governance Forums" 25 | link: "https://gov.optimism.io/" 26 | - name: "Retroactive Public Goods Funding (RetroPGF)" 27 | link: "https://app.optimism.io/retropgf" 28 | - name: "Twitter" 29 | link: "https://twitter.com/optimismFND" 30 | - name: "Discord" 31 | link: "https://discord-gateway.optimism.io/" 32 | - name: "Blog" 33 | link: "https://optimism.mirror.xyz/" 34 | - name: "Docs" 35 | link: "https://community.optimism.io/" 36 | - name: "Help Center" 37 | link: "https://help.optimism.io/hc/en-us" 38 | 39 | # List of applicable tags in Dune. These will link to e.g... 40 | tags: 41 | - "Optimism" # ...explore.duneanalytics.com/dashboards?tags=DAI 42 | - "OP" 43 | - "L2" 44 | 45 | # List of relevant dashboard slugs prefixed with username 46 | dashboards: 47 | - "optimismfnd/Optimism" 48 | - "optimismfnd/Optimism-Project-Usage-Trends" 49 | - "optimismfnd/optimism-op-token-house" 50 | - "optimismfnd/optimism-l1-batch-submission-fees-security-costs" 51 | 52 | # List of relevant query-ids. 53 | queries: 54 | - 347720 55 | - 491942 56 | - 876366 57 | - 871360 58 | 59 | # List of visualizations to embed 60 | embeds: 61 | - name: "Optimism Daily Transactions" 62 | link: "https://dune.com/embeds/347720/662079/cb3d491a-069f-49eb-989a-bc44195b4d9e" 63 | - name: "Top Projects on Optimism - Last 30 Days" 64 | link: "https://dune.com/embeds/491942/932394/dec1b71b-f548-413d-90d1-74100e2b848f" 65 | - name: "Optimism - Daily Sequencer Fee Margin" 66 | link: "https://dune.com/embeds/876366/2745145/4b7b45d9-c7b4-449f-8113-10e055b1cb3e" 67 | - name: "Optimism Token House - Top Delegates by Voting Weight" 68 | link: "https://dune.com/embeds/871360/1518911/ea541898-dda9-47cf-9a59-5015f80eae55" 69 | --- 70 | Optimism is a fast, stable, and scalable L2 blockchain built by Ethereum developers, for Ethereum developers. Built as a minimal extension to existing Ethereum software, Optimism’s [EVM-equivalent architecture](https://medium.com/ethereum-optimism/introducing-evm-equivalence-5c2021deb306) scales your Ethereum apps without surprises. If it works on Ethereum, it works on Optimism at a fraction of the cost. 71 | 72 | We pledge to uphold the values of Ethereum by producing infrastructure that promotes the growth and sustainability of public goods. See more at [optimism.io/about](https://www.optimism.io/about) 73 | 74 | *From [optimism.io](https://www.optimism.io/) & [help.optimism.io](https://help.optimism.io/).* 75 | -------------------------------------------------------------------------------- /pages/bnbchain/bnbchain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /pages/gnosis/gnosis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | 17 | 19 | 22 | 26 | 28 | 32 | 33 | 34 | 36 | 37 | 40 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /pages/fxs/fxs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /pages/loopring/loopring.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | logo-blue 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /pages/Tokamak-Network/Tokamak-Network.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # PROJECT PAGES ARE DEPRECATED 2 | 3 | Use team profiles instead. 4 | 5 | As a result, **we've stopped processing PRs in this repo.** 6 | 7 | The projects must flow! 8 | 9 | -------- 10 | 11 | # Dune Analytics Project Pages 12 | 13 | This repository hosts the content rendered on [duneanalytics.com/projects](https://duneanalytics.com/projects). We welcome contributions to exisiting pages as well as entirely new pages. 14 | 15 | ## Format 16 | 17 | Each page should have it's own folder within the `pages/` folder. The folder should contain two files with the same name as the folder, one with a `.md`-suffix and one with a `.svg` (high res, transparent `.png` also works, but `.svg` is preferred). 18 | 19 | ### `project.md` 20 | 21 | The data is formatted in a markdown file with a YAML frontmatter section. Consider the below example configuration for DAI which is saved in the `pages/dai/dai.md`-file: 22 | 23 | ```markdown 24 | --- 25 | # Name of the project. Also the URL i.e. duneanalytics.com/projects/dai. 26 | name: "DAI" 27 | 28 | # The name of the logo file. Should have the same name as the markdown file. 29 | logo: "dai.svg" 30 | 31 | # The main color of the project. Remember to quote this value. 32 | color: "#F4B731" 33 | 34 | # List of relevant schemas you can query in dune. 35 | schemas: 36 | - "maker" 37 | - "makermcd" 38 | 39 | # List of relevant links to the project. 40 | links: 41 | - name: "Website" 42 | link: "https://makerdao.com/en/" 43 | - name: "Docs" 44 | link: "https://docs.makerdao.com/" 45 | - name: "Oasis" 46 | link: "https://oasis.app/" 47 | 48 | # List of applicable tags in Dune. These will link to e.g... 49 | tags: 50 | - "DAI" # ...explore.duneanalytics.com/dashboards?tags=DAI 51 | - "makerdao" # ...explore.duneanalytics.com/dashboards?tags=makerdao 52 | - "maker" 53 | - "DeFi" 54 | 55 | # List of related projects. These projects must exist in this repo and the name... 56 | related: 57 | - "makerdao" # ...should match like "pages/makerdao/makerdao.md". 58 | 59 | # List of relevant dashboard slugs prefixed with username 60 | dashboards: 61 | - "user1/maker-dao---mcd" 62 | - "user2/makerdao-liquidations" 63 | - "user3/dex-metrics" 64 | 65 | # List of relevant query-ids. 66 | queries: 67 | - 855 68 | 69 | # List of visualizations to embed 70 | embeds: 71 | - name: "This is the name of the embed" 72 | link: "https://explore.duneanalytics.com/embed/query/2165/visualization/4001?api_key=D8MK8HstMF3MsVksW83C1eGBrnGk8POh8EfFkUbv" 73 | --- 74 | 75 | The Dai stablecoin is a decentralized, unbiased, collateral-backed cryptocurrency 76 | soft-pegged to the US Dollar. Dai is held in cryptocurrency wallets or within 77 | platforms, and is supported on Ethereum and other popular blockchains. 78 | 79 | Dai is easy to generate, access, and use. Users generate Dai by depositing collateral 80 | assets into Maker Vaults within the Maker Protocol. This is how Dai is entered into 81 | circulation and how users gain access to liquidity. Others obtain Dai by buying it 82 | from brokers or exchanges, or simply by receiving it as a means of payment. 83 | 84 | *From https://makerdao.com/en/whitepaper.* 85 | ``` 86 | 87 | The lower part of the `.md`-file is a markdown area where you can write or borrow a description from a project. If you copy it, please link back to the page you quoted it from. Note that all the keys are mandatory, so if you have an empty queries field it should be listed as `queries: []`. 88 | 89 | ### `project.svg` 90 | 91 | Add the projects logo as a svg-file, or if that doesn't exist: a high resolution, transparent `project.png`-file will also work. Note that the logo should use dark text, as it will be rendered on a light background. 92 | 93 | ## CODEOWNERS 94 | 95 | Representatives from the different projects may PR themselves into [CODEOWNERS](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners) file the different folders. You will then be granted write permissions, and merging pull requests to this folder will trigger a build of the dune analytics homepage, your project page included. 96 | -------------------------------------------------------------------------------- /pages/swarm/swarm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/ipor/ipor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | 14 | 16 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 37 | 38 | 39 | 40 | 41 | 42 | 44 | 45 | 46 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 56 | 57 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /pages/index-coop/index-coop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /pages/dodo/dodo.svg: -------------------------------------------------------------------------------- 1 | 编组 --------------------------------------------------------------------------------