diff --git a/schema/project.yaml b/schema/project.yaml index f0ea53e6..212330ee 100644 --- a/schema/project.yaml +++ b/schema/project.yaml @@ -8,27 +8,27 @@ properties: id: type: string title: ID - description: | - Unique project identifier - pattern: '^[a-z0-9-]+$' + description: | + Unique project identifier + pattern: "^[a-z0-9-]+$" #PROJECT DESCRIPTION ------------------------------------------------------------- - name: + name: type: string categories: type: array - items: + items: type: string - pattern: '^[a-z0-9-]+$' + pattern: "^[a-z0-9-]+$" assets_used: type: array - items: + items: type: string - pattern: '^[A-Z0-9-]+$' + pattern: "^[A-Z0-9-]+$" ecosystem: type: array - items: + items: type: string - pattern: '^[a-z0-9-]+$' + pattern: "^[a-z0-9-]+$" project_type: type: string description: @@ -84,7 +84,7 @@ properties: type: string link: type: string - format: uri + format: uri funding: type: object properties: @@ -215,7 +215,7 @@ properties: type: string link: type: string - format: uli + format: uri p2p: type: boolean data_masking: @@ -243,7 +243,7 @@ properties: type: string client_diversability: type: array - items: + items: type: object properties: name: @@ -263,7 +263,7 @@ properties: type: string format: uri data_usage: - type: string + type: string traceability: type: object properties: @@ -273,13 +273,16 @@ properties: type: boolean sign_in_type_requirments: type: string + required: + - kyc compliance: - anyOf: [{type: boolean}, {type: string}] + anyOf: [{ type: boolean }, { type: string }] storage: type: object properties: decentralized: type: boolean + # SECURITY --------------------------------------------------------------------- third_party_dependency: type: boolean @@ -310,14 +313,14 @@ properties: properties: live_status: type: boolean - version: + version: type: string testnet: type: boolean mainnet: type: boolean - usecases: + usecases: type: array - items: + items: type: string - pattern: '^[a-z0-9-]+$' + pattern: "^[a-z0-9-]+$" diff --git a/script.py b/script.py new file mode 100644 index 00000000..51786e17 --- /dev/null +++ b/script.py @@ -0,0 +1,64 @@ +import yaml +import os + +# Funkce pro načtení YAML souboru +def load_yaml(file_path): + with open(file_path, 'r', encoding='utf-8') as file: + return yaml.safe_load(file) + +# Funkce pro zápis YAML souboru +def save_yaml(file_path, data): + with open(file_path, 'w', encoding='utf-8') as file: + yaml.dump(data, file, allow_unicode=True) + +# Funkce pro odstranění všeho kromě 'usecase' +def keep_only_usecase(file_path): + try: + # Načti YAML soubor + data = load_yaml(file_path) + + # Ponechej jen klíč 'usecase', pokud existuje + if 'usecase' in data: + filtered_data = {'usecase': data['usecase']} + else: + filtered_data = {} + + # Ulož upravený soubor zpět + save_yaml(file_path, filtered_data) + return True + except Exception as e: + print(f"Chyba při zpracování souboru {file_path}: {e}") + return False + +# Funkce pro procházení složek a zpracování souborů index.yaml +def process_yaml_projects(projects_dir): + total_files = 0 + processed_files = 0 + + for project in os.listdir(projects_dir): + project_path = os.path.join(projects_dir, project) + index_file_path = os.path.join(project_path, 'index.yaml') + + # Ověř, že cesta je složka a obsahuje soubor 'index.yaml' + if os.path.isdir(project_path): + total_files += 1 + if os.path.isfile(index_file_path): + success = keep_only_usecase(index_file_path) + if success: + print(f"Zpracováno: {index_file_path}") + processed_files += 1 + else: + print(f"Nelze zpracovat: {index_file_path}") + else: + print(f"Složka {project_path} neobsahuje soubor 'index.yaml'") + + print(f"Celkový počet složek: {total_files}") + print(f"Úspěšně zpracovaných souborů: {processed_files}") + print(f"Nepřepsaných složek (bez 'index.yaml' nebo s chybou): {total_files - processed_files}") + +# Použití +# Zde nastav složku, kde jsou tvé projekty (src/projects) +projects_dir = "src/projects" + +# Spusť zpracování +process_yaml_projects(projects_dir) diff --git a/src/projects/01-labs/index.yaml b/src/projects/01-labs/index.yaml index b54bf734..51e75757 100644 --- a/src/projects/01-labs/index.yaml +++ b/src/projects/01-labs/index.yaml @@ -1,8 +1,11 @@ name: 01 Labs -categories: [ rd ] -description: 'Catalyzing a new generation of applications powered by zero knowledge cryptography.' +categories: [applications] +description: "Catalyzing a new generation of applications powered by zero knowledge cryptography." links: web: https://o1labs.org github: https://github.com/o1-labs blog: https://www.o1labs.org/blog twitter: https://x.com/o1_labs + +usecases: + - research-and-development diff --git a/src/projects/0xtip/index.yaml b/src/projects/0xtip/index.yaml index 4866b2c5..cf79dd51 100644 --- a/src/projects/0xtip/index.yaml +++ b/src/projects/0xtip/index.yaml @@ -1,5 +1,8 @@ name: 0xTIP -categories: [ mixing-service ] -description: '0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers.' +categories: [applications] +description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers." links: web: https://0xmonero.com/mixer + +usecases: + - mixing-service diff --git a/src/projects/1984/index.yaml b/src/projects/1984/index.yaml index 76dc061d..5905548c 100644 --- a/src/projects/1984/index.yaml +++ b/src/projects/1984/index.yaml @@ -1,8 +1,11 @@ -name: '1984' -categories: [ infrastructure ] -description: 'High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero.' +name: "1984" +categories: [infrastructure] +description: "High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero." team: anonymous: true links: web: https://1984.hosting/ docs: https://kb.1984hosting.com/doku.php?id=start + +usecases: + - infrastructure diff --git a/src/projects/1rpc/index.yaml b/src/projects/1rpc/index.yaml index ff863426..cf77c31f 100644 --- a/src/projects/1rpc/index.yaml +++ b/src/projects/1rpc/index.yaml @@ -1,7 +1,10 @@ name: 1RPC -categories: [ rpc ] -description: 'The Web3 Private RPC Relay' +categories: [infrastructure] +description: "The Web3 Private RPC Relay" links: web: https://www.1rpc.io docs: https://docs.ata.network/1rpc/introduction/ twitter: https://x.com/1rpc_ + +usecases: + - rpc-provider diff --git a/src/projects/2fa-guru/index.yaml b/src/projects/2fa-guru/index.yaml index 1dc44d2b..a44d5f4f 100644 --- a/src/projects/2fa-guru/index.yaml +++ b/src/projects/2fa-guru/index.yaml @@ -1,6 +1,9 @@ name: 2FA Guru -categories: [ dapps ] -description: 'A simple solution to interact with DApps by enforcing an additional signature check before each transaction' +categories: [applications] +description: "A simple solution to interact with DApps by enforcing an additional signature check before each transaction" links: web: https://www.2fa.guru github: https://github.com/skiff-org/skiff-mail + +usecases: + - dapps diff --git a/src/projects/AIOZ network/index.yaml b/src/projects/AIOZ network/index.yaml index 56c30eb5..86295856 100644 --- a/src/projects/AIOZ network/index.yaml +++ b/src/projects/AIOZ network/index.yaml @@ -1,6 +1,7 @@ +id: aioz-network name: Aioz network -categories: [ AI ] -description: 'DePIN for Web3 AI, Storage & Streaming' +categories: [applications] +description: "DePIN for Web3 AI, Storage & Streaming" links: web: https://aioz.network/ block_explorer: https://t.me/aioznetwork @@ -8,3 +9,6 @@ links: blog: https://aioz.network/blog twitter: https://x.com/AIOZNetwork telegram: https://t.me/aioznetwork + +usecases: + - ai diff --git a/src/projects/Adamant/index.yaml b/src/projects/Adamant/index.yaml index a322befd..6598fcd6 100644 --- a/src/projects/Adamant/index.yaml +++ b/src/projects/Adamant/index.yaml @@ -1,10 +1,11 @@ +id: adamant name: Adamant -categories: [ messaging ] -description: 'Decentralized anonymous blockchain Messenger & crypto Wallet' +categories: [social-and-communications] +description: "Decentralized anonymous blockchain Messenger & crypto Wallet" team: anonymous: true - + links: web: https://adamant.im/ github: https://github.com/adamant-im @@ -13,7 +14,7 @@ links: blog: https://news.adamant.im/ twitter: https://x.com/adamant_im telegram: https://t.me/adamant_eng - + project_status: live_status: true version: Mainnet @@ -26,4 +27,6 @@ tokens: - name: ADMToken symbol: $ADM network: Ethereum - + +usecases: + - messaging diff --git a/src/projects/AnonKlub/index.yaml b/src/projects/AnonKlub/index.yaml index bc64f04f..0e1f7649 100644 --- a/src/projects/AnonKlub/index.yaml +++ b/src/projects/AnonKlub/index.yaml @@ -1,7 +1,12 @@ +id: anon-club name: AnonKlub -categories: [ DID ] -description: 'AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership.' -project_status: testnet +categories: [applications] +description: "AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership." +project_status: + live_status: false + version: testnet + testnet: true + mainnet: false team: anonymous: true links: @@ -10,3 +15,7 @@ links: github: https://github.com/anonklub/anonklub technology: type: circom, snarkjs, halo2 + features: ["zkp"] + +usecases: + - did diff --git a/src/projects/Arcium/index.yaml b/src/projects/Arcium/index.yaml index 1231d321..fb2ae84b 100644 --- a/src/projects/Arcium/index.yaml +++ b/src/projects/Arcium/index.yaml @@ -1,6 +1,7 @@ -name: 'Arcium' -categories: [ FHE ] -description: 'The first parallelized confidential computing network' +id: arcium +name: "Arcium" +categories: [infrastructure] +description: "The first parallelized confidential computing network" links: web: https://arcium.com/ github: https://github.com/elusiv-privacy diff --git a/src/projects/Bandada/index.yaml b/src/projects/Bandada/index.yaml index e144fb4c..7056e5fc 100644 --- a/src/projects/Bandada/index.yaml +++ b/src/projects/Bandada/index.yaml @@ -1,7 +1,9 @@ +id: bandada name: Bandada -categories: [ DID ] -description: 'An open-source system for managing privacy-preserving groups of anonymous individuals.' -project_status: testnet +categories: [applications] +description: "An open-source system for managing privacy-preserving groups of anonymous individuals." +project_status: + version: "testnet" team: anonymous: true links: @@ -9,3 +11,6 @@ links: docs: https://docs.bandada.pse.dev/ github: https://github.com/bandada-infra/bandada type: semaphore, zk-kit + +usecases: + - did diff --git a/src/projects/BlockBlend/index.yaml b/src/projects/BlockBlend/index.yaml index e9109238..e893b2a7 100644 --- a/src/projects/BlockBlend/index.yaml +++ b/src/projects/BlockBlend/index.yaml @@ -1,14 +1,15 @@ +id: blockblend name: BlockBlend -categories: [ bridge ] -ecosystem: [ Ethereum, Polygon, Base, Bnb, Solana ] -description: 'Privacy Cross-Chain Decentralized Services' +categories: [applications] +ecosystem: [ethereum, polygon, base, bnb, solana] +description: "Privacy Cross-Chain Decentralized Services" team: anonymous: false teammembers: - name: Tom link: https://x.com/TomBlockBlend - + links: web: https://blockblend.io/ docs: https://docs.blockblend.io/ @@ -16,7 +17,7 @@ links: blog: https://blockblendio.medium.com/ twitter: https://x.com/blockblendio telegram: https://t.me/blockblendIO - + project_status: live_status: true version: Mainnet @@ -30,3 +31,6 @@ tokens: symbol: $BBL network: Ethereum contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124" + +usecases: + - bridge diff --git a/src/projects/Broearn/index.yaml b/src/projects/Broearn/index.yaml index fccf3956..0a959e72 100644 --- a/src/projects/Broearn/index.yaml +++ b/src/projects/Broearn/index.yaml @@ -1,10 +1,11 @@ +id: broearn name: Broearn -categories: [ browser ] -description: 'Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser' +categories: [applications] +description: "Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser" team: anonymous: true - + links: web: https://www.broearn.com/ docs: https://docs.broearn.com/ @@ -19,3 +20,6 @@ project_status: mainnet: true have_token: false + +usecases: + - browser diff --git a/src/projects/ChainPort/index.yaml b/src/projects/ChainPort/index.yaml index b7c79207..7d08a13e 100644 --- a/src/projects/ChainPort/index.yaml +++ b/src/projects/ChainPort/index.yaml @@ -1,22 +1,23 @@ +id: chainport name: ChainPort -categories: [ bridge ] -ecosystem: [ Ethereum, Arbitrum, Optimism, Base, Bnb, Fantom, Polygon, Avalanche ] -description: 'next-gen custodian secure bridge' +categories: [infrastructure] +ecosystem: [ethereum, arbitrum, optimism, base, bnb, fantom, polygon, avalanche] +description: "next-gen custodian secure bridge" team: anonymous: false teammembers: - - name: DcentraLab + - name: DcentraLab link: https://x.com/DcentraLab - + links: web: https://www.chainport.io/private-bridge github: https://github.com/chainport - docs: https://docs.chainport.io/ + docs: https://docs.chainport.io/ blog: https://medium.com/chainport twitter: https://x.com/chain_port telegram: https://t.me/chainport_news - + project_status: live_status: true version: Mainnet @@ -30,3 +31,6 @@ tokens: symbol: $PORTX network: Ethereum contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac" + +usecases: + - bridge diff --git a/src/projects/Chainback/index.yaml b/src/projects/Chainback/index.yaml index b7439fb7..559b9c32 100644 --- a/src/projects/Chainback/index.yaml +++ b/src/projects/Chainback/index.yaml @@ -1,23 +1,21 @@ +id: chainback name: Chainback -categories: [ storage ] -ecosystem: [ Ethereum, Solana, Bsc, Polygon] -usecases: [storage, cloud ] -description: 'Ultimate Cloud Computing & File Storage' -product_lunch_day: "2022-12" +categories: [applications] +ecosystem: [ethereum, solana, bsc, polygon] +description: "Ultimate Cloud Computing & File Storage" team: anonymous: true - + links: web: https://chainback.org/ docs: https://chainback.gitbook.io/chainback-whitepaper block_explorer: https://app.chainback.org/explorer whitepaper: https://drive.google.com/file/d/1wtzmijhSoJJmIO5S2PRDH3-rV3IH93xv/view - blog: https://medium.com/@chainback.archive + blog: https://medium.com/@chainback.archive twitter: https://x.com/ChainbackWeb3 - telegram: https://t.me/chainback_archive + telegram: https://t.me/chainback_archive -project_phase: Alpha sunset: false tokens: @@ -34,8 +32,6 @@ funding: blockchain_features: opensource: false asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: defined: true @@ -48,7 +44,9 @@ traceability: sign_in_type_requirments: wallet third_party_dependency: false compliance: false - + storage: decentralized: true +usecases: + - storage diff --git a/src/projects/Cloak-ai/index.yaml b/src/projects/Cloak-ai/index.yaml index 22f15b3f..78672842 100644 --- a/src/projects/Cloak-ai/index.yaml +++ b/src/projects/Cloak-ai/index.yaml @@ -1,8 +1,9 @@ +id: cloak-ai name: Cloak Ai -categories: [ AI ] -description: 'The purpose-built Web3 GenAI engine for the privacy conscious individual or business' +categories: [applications] +description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business" links: - web: https://www.cloakai.xyz/ + web: https://www.cloakai.xyz/ twitter: https://x.com/Cloak_xyz telegram: https://t.me/cloakai have_token: true @@ -12,4 +13,6 @@ tokens: symbol: CLOAK network: Ethereum contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da" -sunset: false +sunset: false + +usecases: [ai] diff --git a/src/projects/Codex/index.yaml b/src/projects/Codex/index.yaml index eee68e02..b01bb3b9 100644 --- a/src/projects/Codex/index.yaml +++ b/src/projects/Codex/index.yaml @@ -1,9 +1,10 @@ +id: codex name: Codex categories: - - Storage + - applications ecosystem: - - Ethereum -description: 'Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship.' + - ethereum +description: "Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship." team: anonymous: false @@ -16,7 +17,7 @@ links: blog: https://blog.codex.storage twitter: https://x.com/codex_storage discord: https://discord.com/invite/codex-storage - farcaster: "@codexstorage" + farcaster: "https://farcaster/@codexstorage" project_status: live_status: true @@ -24,7 +25,8 @@ project_status: testnet: false mainnet: false -licenses: Apache 2.0 and MIT - traceability: kyc: false + +usecases: + - storage diff --git a/src/projects/Coti/index.yaml b/src/projects/Coti/index.yaml index 81157620..58424f95 100644 --- a/src/projects/Coti/index.yaml +++ b/src/projects/Coti/index.yaml @@ -1,6 +1,7 @@ +id: coti name: Coti -categories: [ layer-2 ] -description: 'EVM L2 solving blockchain privacy with Garbled Circuits' +categories: [infrastructure] +description: "EVM L2 solving blockchain privacy with Garbled Circuits" team: anonymous: false @@ -35,3 +36,6 @@ tokens: symbol: $COTI network: Ethereum contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5" + +usecases: + - eth-layer-2 diff --git a/src/projects/Cursive/index.yaml b/src/projects/Cursive/index.yaml index 0c81099d..e1a04527 100644 --- a/src/projects/Cursive/index.yaml +++ b/src/projects/Cursive/index.yaml @@ -1,9 +1,10 @@ -name: 'Cursive' -categories: [ FHE ] -description: 'A cryptography lab focused on human-first applications of signed data.' +id: cursive +name: "Cursive" +categories: [applications] +description: "A cryptography lab focused on human-first applications of signed data." links: web: https://www.cursive.team/ - github: https://github.com/cursive-team + github: https://github.com/cursive-team blog: https://www.cursive.team/blog twitter: https://x.com/cursive_team telegram: https://t.me/+z5REVOBXp_hmNDIx diff --git a/src/projects/DeChat/index.yaml b/src/projects/DeChat/index.yaml index d1b1bf08..0605c901 100644 --- a/src/projects/DeChat/index.yaml +++ b/src/projects/DeChat/index.yaml @@ -1,6 +1,7 @@ +id: dechat name: DeChat -categories: [ messaging ] -description: 'open and secure web3 communications protocol that powers decentralized user interactions' +categories: [social-and-communications] +description: "open and secure web3 communications protocol that powers decentralized user interactions" team: anonymous: false @@ -14,14 +15,14 @@ team: - name: DANIEL DRESCHER role: COO link: https://www.linkedin.com/in/danieldrescher/ - + links: web: https://www.dechat.io/home docs: https://dechat.gitbook.io/dechat twitter: https://x.com/dechat_io discord: https://discord.com/invite/dechat telegram: https://t.me/dechat_community - + project_status: live_status: true version: Testnet @@ -35,3 +36,6 @@ tokens: symbol: $DeChat network: BSC contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519" + +usecases: + - messaging diff --git a/src/projects/DeGuard/index.yaml b/src/projects/DeGuard/index.yaml index 010a474b..6fa4cd03 100644 --- a/src/projects/DeGuard/index.yaml +++ b/src/projects/DeGuard/index.yaml @@ -1,6 +1,7 @@ +id: deguard name: DeGuard -categories: [ VPN ] -description: 'Provide utimate privacy based on web3' +categories: [applications] +description: "Provide utimate privacy based on web3" team: anonymous: false @@ -23,3 +24,6 @@ project_status: mainnet: true have_token: false + +usecases: + - vpn diff --git a/src/projects/DeNet/index.yaml b/src/projects/DeNet/index.yaml index 82329422..5b5c9245 100644 --- a/src/projects/DeNet/index.yaml +++ b/src/projects/DeNet/index.yaml @@ -1,9 +1,8 @@ +id: denet name: DeNet -categories: [ storage ] -ecosystem: [ Polygon ] -usecases: [storage, Depin ] -description: 'Decentralized Storage Protocol for Web3 services ' -product_lunch_day: "2017" +categories: [applications] +ecosystem: [polygon] +description: "Decentralized Storage Protocol for Web3 services " team: anonymous: false @@ -16,13 +15,12 @@ team: links: web: https://denet.pro/ github: https://github.com/denetpro - doc: https://docs.denet.pro/ - blog: https://medium.com/denetpro + doc: https://docs.denet.pro/ + blog: https://medium.com/denetpro twitter: https://x.com/DeNetPro telegram: https://t.me/denetnews discord: https://discord.com/invite/PSnjPCq4x5 -project_phase: Mainet sunset: false tokens: @@ -32,15 +30,12 @@ tokens: contract_address: "0x081ec4c0e30159c8259bad8f4887f83010a681dc" token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc - blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: - defined: false + defined: false default_privacy: true @@ -52,6 +47,5 @@ compliance: false storage: decentralized: true - - - +usecases: + - storage diff --git a/src/projects/Ergo/index.yaml b/src/projects/Ergo/index.yaml index 339b3ba7..0045db2c 100644 --- a/src/projects/Ergo/index.yaml +++ b/src/projects/Ergo/index.yaml @@ -1,9 +1,8 @@ +id: ergo-platform name: Ergo Platform -categories: [ infrastructure ] -ecosystem: [ Ergo, Btc ] -usecases: [ wallet, mining, mixer ] -description: 'Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools' -product_lunch_day: "2017" +categories: [infrastructure] +ecosystem: [ergo, btc] +description: "Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools" team: anonymous: false @@ -24,7 +23,6 @@ links: telegram: https://t.me/Ergo_Chats discord: https://discord.com/invite/ergo-platform-668903786361651200 -project_phase: Testnet sunset: false tokens: @@ -32,13 +30,10 @@ tokens: symbol: $ERG network: Ergochain token_link: https://www.coingecko.com/en/coins/ergo - + blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true - privacy_policy: defined: true link: https://ergoplatform.org/en/privacy-policy/ @@ -56,7 +51,5 @@ audits: link: https://www.aumasson.jp/ time: 2019-12 -tecnology: - type: vpn, mixer - - +usecases: + - infrastructure diff --git a/src/projects/Exabits/index.yaml b/src/projects/Exabits/index.yaml index 1ea2c60c..7ad5765d 100644 --- a/src/projects/Exabits/index.yaml +++ b/src/projects/Exabits/index.yaml @@ -1,6 +1,7 @@ +id: exabits name: Exabits -categories: [ AI ] -description: 'Simplified Access to the Currency of the Future ' +categories: [applications] +description: "Simplified Access to the Currency of the Future " team: anonymous: true links: @@ -11,4 +12,6 @@ links: discord: https://discord.com/invite/exabits telegram: https://t.me/+D0CulDl9udZjMWIx have_token: false -sunset: false +sunset: false + +usecases: [ai] diff --git a/src/projects/FairMath/index.yaml b/src/projects/FairMath/index.yaml index 187b86c8..9e31eb87 100644 --- a/src/projects/FairMath/index.yaml +++ b/src/projects/FairMath/index.yaml @@ -1,8 +1,9 @@ -name: 'FairMath' -categories: [ FHE ] -description: 'Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)' +id: fairmath +name: "FairMath" +categories: [applications] +description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)" links: web: https://fairmath.xyz/ - github: https://github.com/fairmath + github: https://github.com/fairmath twitter: https://x.com/FairMath discord: https://discord.com/invite/NfhXwyr9M5 diff --git a/src/projects/Fhenix/index.yaml b/src/projects/Fhenix/index.yaml index b364ab61..4c31f8e0 100644 --- a/src/projects/Fhenix/index.yaml +++ b/src/projects/Fhenix/index.yaml @@ -1,6 +1,7 @@ -name: 'Fhenix' -categories: [ FHE ] -description: 'Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality.' +id: fhenix +name: "Fhenix" +categories: [applications] +description: "Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality." links: web: https://www.fhenix.io/ github: https://github.com/FhenixProtocol diff --git a/src/projects/Humanode/index.yaml b/src/projects/Humanode/index.yaml index fb2feba2..7b97daea 100644 --- a/src/projects/Humanode/index.yaml +++ b/src/projects/Humanode/index.yaml @@ -1,20 +1,19 @@ +id: humanode name: Humanode -categories: [ did] -ecosystem: [ Polkadot ] -usecases: [ biometrically verified nodes ] -description: '1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web' -product_lunch_day: "2020" +categories: [applications] +ecosystem: [polkadot] +description: "1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web" team: anonymous: false teammembers: - name: Dato Kavazi - link: https://x.com/DatoKavazi + link: https://x.com/DatoKavazi - name: Sasha Shilina link: https://x.com/sshshln - name: Andrei Kraciun - link: https://x.com/andreikraciun + link: https://x.com/andreikraciun - name: Victor - link: https://x.com/tech_mingler + link: https://x.com/tech_mingler links: web: https://humanode.io/ @@ -27,7 +26,6 @@ links: telegram: https://t.me/humanode discord: https://discord.com/invite/8my5gbgptx -project_phase: Mainnet sunset: false tokens: @@ -39,11 +37,9 @@ tokens: blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: - defined: false + defined: false default_privacy: true @@ -55,8 +51,7 @@ compliance: false audits: - name: Certik link: https://skynet.certik.com/projects/humanode - time: 2023-01-30 + time: "2023-01-30" -tecnology: - type: ZKP - +usecases: + - did diff --git a/src/projects/IVPN/index.yaml b/src/projects/IVPN/index.yaml index c542b4d9..bac5722d 100644 --- a/src/projects/IVPN/index.yaml +++ b/src/projects/IVPN/index.yaml @@ -1,6 +1,7 @@ +id: ivpn name: IVPN -categories: [ VPN ] -description: 'Audited, privacy focused VPN service.' +categories: [applications] +description: "Audited, privacy focused VPN service." team: anonymous: false @@ -9,27 +10,27 @@ team: role: CEO link: https://github.com/cipheromega - name: Edward De - role: Technical Support Lead + role: Technical Support Lead link: https://www.linkedin.com/in/edward-de-91793b163/ - name: Iain Douglas link: https://github.com/Iain-ivpn - name: Gorka Pernas - role: Senior QA Engineer + role: Senior QA Engineer link: https://github.com/gorkapernas - name: Natanael Rodriguez link: https://github.com/nathanrod - name: Juraj Hilje role: Dev - link: https://github.com/jurajhilje + link: https://github.com/jurajhilje - name: Alexandr Stelnykovych role: Dev link: https://github.com/stenya - - name: Jordan Sullivan - link: https://github.com/jordan-ivpn + - name: Jordan Sullivan + link: https://github.com/jordan-ivpn links: web: https://www.ivpn.net/en/ - github: https://github.com/ivpn + github: https://github.com/ivpn blog: https://www.ivpn.net/en/blog/ twitter: https://x.com/ivpnnet @@ -40,3 +41,6 @@ project_status: mainnet: true have_token: false + +usecases: + - vpn diff --git a/src/projects/Inco/index.yaml b/src/projects/Inco/index.yaml index fcbfd49a..a0d81dad 100644 --- a/src/projects/Inco/index.yaml +++ b/src/projects/Inco/index.yaml @@ -1,6 +1,7 @@ -name: 'Inco' -categories: [ FHE ] -description: 'Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains ' +id: inco +name: "Inco" +categories: [infrastructure] +description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains " team: anonymous: false links: @@ -8,7 +9,7 @@ links: github: https://github.com/Inco-fhevm block_explorer: https://explorer.testnet.inco.org/ docs: https://docs.inco.org/ - blog: https://www.inco.org/blog/ + blog: https://www.inco.org/blog/ twitter: https://x.com/inconetwork discord: https://discord.com/invite/fnKZp2qHPQ telgram: https://t.me/inconetwork diff --git a/src/projects/Intmax/index.yaml b/src/projects/Intmax/index.yaml index e9dac08f..515782f4 100644 --- a/src/projects/Intmax/index.yaml +++ b/src/projects/Intmax/index.yaml @@ -1,9 +1,10 @@ +id: intmax name: Intmax -categories: - - layer-2 -ecosystem: [ Ethereum ] +categories: + - infrastructure +ecosystem: [ethereum] project_type: Layer2 zk-rollup -description: 'A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time.' +description: "A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time." team: anonymous: false @@ -11,7 +12,7 @@ team: - name: Leona Hioki role: Co-founder link: https://x.com/HiokiLeona - + links: web: https://www.intmax.io/ github: https://github.com/InternetMaximalism @@ -25,6 +26,9 @@ project_status: live_status: true version: testnet2 testnet: true - mainnet: false + mainnet: false -have_token: false +have_token: false + +usecases: + - eth-layer-2 diff --git a/src/projects/Kinto/index.yaml b/src/projects/Kinto/index.yaml index be8a3276..13e64ad3 100644 --- a/src/projects/Kinto/index.yaml +++ b/src/projects/Kinto/index.yaml @@ -1,12 +1,13 @@ +id: kinto name: Kinto -categories: [ Layer-2 ] -description: 'The safety-first L2 for Finance' +categories: [infrastructure] +description: "The safety-first L2 for Finance" team: anonymous: false teammembers: - name: Ramon Recuero - role: CEO + role: CEO link: https://x.com/ramonrecuero links: @@ -32,3 +33,6 @@ tokens: symbol: $KINTO network: Kinto contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87" + +usecases: + - eth-layer-2 diff --git a/src/projects/Mailchain/index.yaml b/src/projects/Mailchain/index.yaml index ccf3c99f..46e6da66 100644 --- a/src/projects/Mailchain/index.yaml +++ b/src/projects/Mailchain/index.yaml @@ -1,9 +1,8 @@ +id: mailchain name: Mailchain -categories: [ dapps ] -ecosystem: [ Ethereum ] -usecases: [ mail ] -description: 'Web3 communication layer & web3 email for everyone' -product_lunch_day: "2019" +categories: [applications] +ecosystem: [ethereum] +description: "Web3 communication layer & web3 email for everyone" team: anonymous: false @@ -23,17 +22,17 @@ team: - name: Zubeyir O. link: https://github.com/zubeyiro - name: Antonio Ivanovski - link: https://github.com/toteto + link: https://github.com/toteto - name: Nathan Sorochan link: https://x.com/nathansorochan - name: Tom Sargent - link: https://x.com/expensive_jpeg + link: https://x.com/expensive_jpeg - name: Becky Prunty - link: https://www.linkedin.com/in/becky-prunty-b93406a9/ + link: https://www.linkedin.com/in/becky-prunty-b93406a9/ links: web: https://mailchain.com/ - github: https://github.com/mailchain + github: https://github.com/mailchain whitepaper: https://mailchain.com/papers/mailchain-whitepaper docs: https://docs.mailchain.com/ blog: https://medium.com/@mailchain @@ -41,14 +40,11 @@ links: lens: https://hey.xyz/u/mailchain farcaster: https://warpcast.com/mailchain -project_phase: Mainnet sunset: false blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: defined: true @@ -61,4 +57,6 @@ traceability: sign_in_type_requirments: wallet third_party_dependency: false compliance: false - + +usecases: + - dapps diff --git a/src/projects/Media network/index.yaml b/src/projects/Media network/index.yaml index ef74a850..fb5df614 100644 --- a/src/projects/Media network/index.yaml +++ b/src/projects/Media network/index.yaml @@ -1,23 +1,21 @@ +id: media-network name: Media Network -categories: [ computing-network ] -ecosystem: [ Ethereum, Solana, Base, Bnb, Optimist ] -usecases: [ cloud, DePin] -description: 'The Web3 replacement for AWS and Google Cloud' -product_lunch_day: "2021" +categories: [infrastructure] +ecosystem: [ethereum, solana, base, bnb, optimist] +description: "The Web3 replacement for AWS and Google Cloud" team: anonymous: true - + links: web: https://www.media.network/ - github: https://github.com/mediafoundation + github: https://github.com/mediafoundation docs: https://docs.media.network/ blog: https://www.media.network/blog twitter: https://x.com/Media_FDN telegram: https://t.me/Media_FDN discord: https://discord.com/invite/nyCS7ePWzf -project_phase: Beta Mainet sunset: false tokens: @@ -26,15 +24,13 @@ tokens: network: Ethereum contract_address: "0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1" token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1 - + blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: - defined: false + defined: false default_privacy: true @@ -42,3 +38,6 @@ traceability: kyc: false third_party_dependency: false compliance: false + +usecases: + - computing diff --git a/src/projects/Mindnetwork/index.yaml b/src/projects/Mindnetwork/index.yaml deleted file mode 100644 index 8d9ed278..00000000 --- a/src/projects/Mindnetwork/index.yaml +++ /dev/null @@ -1,11 +0,0 @@ -name: 'MindNetwork' -categories: [ FHE ] -description: 'An FHE Restaking Layer for PoS and AI Networks ' -links: - web: https://www.mindnetwork.xyz/ - github: https://github.com/mind-network - docs: https://docs.mindnetwork.xyz/minddocs - blog: https://mindnetwork.medium.com/ - twitter: https://x.com/mindnetwork_xyz - discord: https://discord.com/invite/UYj94MJdGJ - telegram: https://t.me/MindNetwork_xyz diff --git a/src/projects/Mindnetwork/logo.png b/src/projects/Mindnetwork/logo.png deleted file mode 100644 index 7b17e86f..00000000 Binary files a/src/projects/Mindnetwork/logo.png and /dev/null differ diff --git a/src/projects/Nata network/index.yaml b/src/projects/Nata network/index.yaml index 6b88fa43..ce623a1e 100644 --- a/src/projects/Nata network/index.yaml +++ b/src/projects/Nata network/index.yaml @@ -1,6 +1,7 @@ +id: nata-network name: Nata network -categories: [ bridge ] -description: 'Nata Network is your portal to private cross-chain transactions.' +categories: [infrastructure] +description: "Nata Network is your portal to private cross-chain transactions." team: anonymous: true @@ -9,7 +10,7 @@ links: web: https://app.natarouter.com/ github: https://github.com/shichiro-nakahara block_explorer: https://explorer.natanetwork.io/ - docs: https://docs.natanetwork.io/ + docs: https://docs.natanetwork.io/ blog: https://mirror.xyz/natanetwork.eth twitter: https://x.com/nata_network_io discord: https://discord.com/invite/m9Ma7PbFwb @@ -21,3 +22,6 @@ project_status: mainnet: true have_token: false + +usecases: + - bridge diff --git a/src/projects/Nuco.cloud/index.yaml b/src/projects/Nuco.cloud/index.yaml index cbbdb817..8ee8d9a0 100644 --- a/src/projects/Nuco.cloud/index.yaml +++ b/src/projects/Nuco.cloud/index.yaml @@ -1,6 +1,7 @@ +id: nuco-cloud name: Nuco-cloud -categories: [ AI ] -description: 'Enabling tomorrow’s tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction.' +categories: [applications] +description: "Enabling tomorrow’s tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction." links: web: https://www.nuco.cloud/ github: https://github.com/IronEagleCapital @@ -13,8 +14,10 @@ links: have_token: true token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B tokens: - - name: nuco.cloud + - name: nuco.cloud symbol: NCDT network: Ethereum contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b" sunset: false + +usecases: [ai] diff --git a/src/projects/OpSec/index.yaml b/src/projects/OpSec/index.yaml index d403e17e..7ca99104 100644 --- a/src/projects/OpSec/index.yaml +++ b/src/projects/OpSec/index.yaml @@ -1,9 +1,10 @@ +id: opsec name: OpSec -categories: [ AI ] -description: ' AI-powered decentralized cloud security.' +categories: [applications] +description: " AI-powered decentralized cloud security." links: - web: https://opsec.computer/ - docs: https://docs.opsec.computer/ + web: https://opsec.computer/ + docs: https://docs.opsec.computer/ twitter: https://x.com/OpSecCloud discord: https://discord.com/invite/opseccloud telegram: https://t.me/OpSecCloud @@ -15,3 +16,5 @@ tokens: network: Ethereum contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98" sunset: false + +usecases: [ai] diff --git a/src/projects/OriginTrail/index.yaml b/src/projects/OriginTrail/index.yaml index c17c9c8f..fed9e2f9 100644 --- a/src/projects/OriginTrail/index.yaml +++ b/src/projects/OriginTrail/index.yaml @@ -1,13 +1,15 @@ +id: origin-trail name: OriginTrail -categories: [ AI ] -description: 'Powering Verifiable Internet for Artificial Intelligence -' +categories: [applications] +description: "Powering Verifiable Internet for Artificial Intelligence " links: web: https://origintrail.io/ - github: https://github.com/OriginTrail + github: https://github.com/OriginTrail docs: https://docs.origintrail.io/ whitepaper: https://origintrail.io/documents/Verifiable_Internet_for_Artificial_Intelligence_whitepaper_v3_pre_publication.pdf blog: https://origintrail.io/blog twitter: https://x.com/origin_trail discord: https://discord.com/invite/QctFuPCMew telegram: https://t.me/origintrail + +usecases: [ai] diff --git a/src/projects/OxO/index.yaml b/src/projects/OxO/index.yaml index 43d25bcf..eedcc1fd 100644 --- a/src/projects/OxO/index.yaml +++ b/src/projects/OxO/index.yaml @@ -1,9 +1,8 @@ +id: oxo name: OxO -categories: [ AI ] -ecosystem: [ Ethereum ] -usecases: [ Audit, mixer ] -description: 'All-in-One Privacy Exchange' -product_lunch_day: "2023-01" +categories: [applications] +ecosystem: [ethereum] +description: "All-in-One Privacy Exchange" team: anonymous: false @@ -15,18 +14,17 @@ team: - name: Jay link: https://x.com/xcyb0rg - name: Andy - link: https://t.me/Andy_0x0 + link: https://t.me/Andy_0x0 links: web: https://0x0.ai/ - github: https://github.com/0x0exchange + github: https://github.com/0x0exchange docs: https://docs.0x0.ai/ blog: https://medium.com/@0x0exchange twitter: https://x.com/0x0exchange telegram: https://t.me/Portal0x0 discord: https://discord.com/invite/0x0exchange -project_phase: Mainnet sunset: false tokens: @@ -39,11 +37,9 @@ tokens: blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: - defined: false + defined: false default_privacy: true @@ -52,4 +48,5 @@ traceability: sign_in_type_requirments: wallet third_party_dependency: false compliance: false - + +usecases: [ai] diff --git a/src/projects/Particl/index.yaml b/src/projects/Particl/index.yaml deleted file mode 100644 index 2bc20754..00000000 --- a/src/projects/Particl/index.yaml +++ /dev/null @@ -1,51 +0,0 @@ -name: Particl -categories: [ dapps ] -ecosystem: [ Particl ] -usecases: [ marketplace ] -description: 'The only marketplace for private and unrestricted e-commerce' -product_lunch_day: "2017" - -team: - anonymous: false - teammembers: - - name: Gerlof van Ek - link: https://x.com/gerlof - - name: Henk Swardt - link: https://www.linkedin.com/in/hswardt/ - -links: - web: https://particl.io/marketplace - github: https://github.com/particl - whitepaper: https://github.com/particl/whitepaper - docs: https://particl.wiki/ - block_explorer: https://explorer.particl.io/ - blog: https://particl.news/ - twitter: https://x.com/particlproject - telegram: https://t.me/particltg - discord: https://discord.me/particl - -project_phase: Alpha -sunset: false - -tokens: - - name: Particl Part - symbol: Part - network: Particl Blockchain - token_link: https://explorer.particl.io/ - -blockchain_features: - opensource: true - asset_custody_type: non-custody - upgradability: - enabled: true - -privacy_policy: - defined: true - link: https://academy.particl.io/en/latest/particl-blockchain/blockchain_privacy.html - -default_privacy: true - -traceability: - kyc: false -third_party_dependency: false -compliance: false diff --git a/src/projects/Presearch/index.yaml b/src/projects/Presearch/index.yaml index c66ec991..d12645a4 100644 --- a/src/projects/Presearch/index.yaml +++ b/src/projects/Presearch/index.yaml @@ -1,9 +1,8 @@ +id: presearch name: Preserch -categories: [ browser ] -ecosystem: [ Ethereum ] -usecases: [ browser ] -description: 'The Decentralized Search Engine with more than 4 million members' -product_lunch_day: "2017" +categories: [applications] +ecosystem: [ethereum] +description: "The Decentralized Search Engine with more than 4 million members" team: anonymous: false @@ -25,20 +24,19 @@ team: - name: Trey Grainger link: https://www.linkedin.com/in/treygrainger/ - name: Luís Dalmolin - link: https://www.linkedin.com/in/luisdalmolin/ + link: https://www.linkedin.com/in/luisdalmolin/ links: web: https://presearch.com/ github: https://github.com/presearchofficial whitepaper: https://presearch.io/vision.pdf - docs: https://docs.presearch.io/ + docs: https://docs.presearch.io/ blog: https://news.presearch.io/ forum: https://community.presearch.io/ twitter: https://x.com/presearchnews telegram: https://t.me/presearch discord: https://discord.com/invite/KUpshRZz2n -project_phase: Mainnet sunset: false tokens: @@ -51,8 +49,6 @@ tokens: blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: defined: true @@ -71,6 +67,8 @@ audits: link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf time: 2023-10 - storage: decentralized: true + +usecases: + - browser diff --git a/src/projects/Privasea/index.yaml b/src/projects/Privasea/index.yaml index fb908d22..3e13a7c1 100644 --- a/src/projects/Privasea/index.yaml +++ b/src/projects/Privasea/index.yaml @@ -1,6 +1,7 @@ -name: 'Privasea' -categories: [ FHE ] -description: 'An AI + DePIN Network enabled through FHEML' +id: privasea +name: "Privasea" +categories: [infrastructure] +description: "An AI + DePIN Network enabled through FHEML" links: web: https://www.privasea.ai/ github: https://github.com/Privasea diff --git a/src/projects/Privy/index.yaml b/src/projects/Privy/index.yaml index e148fce8..1af88896 100644 --- a/src/projects/Privy/index.yaml +++ b/src/projects/Privy/index.yaml @@ -1,9 +1,8 @@ +id: privy name: Privy -categories: [ wallets ] -ecosystem: [Solana ] -usecases: [ wallet] -description: 'Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe.' -product_lunch_day: "2021" +categories: [applications] +ecosystem: [solana] +description: "Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe." team: anonymous: false @@ -16,18 +15,15 @@ team: links: web: https://www.privy.io/ github: https://github.com/privy-io - docs: https://docs.privy.io/ - blog: https://www.privy.io/blog + docs: https://docs.privy.io/ + blog: https://www.privy.io/blog twitter: https://x.com/privy_io - -project_phase: Mainet + sunset: false blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: defined: true @@ -46,7 +42,5 @@ audits: link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf time: 2023-08 -tecnology: - type: AA - - +usecases: + - wallets diff --git a/src/projects/RawBox/index.yaml b/src/projects/RawBox/index.yaml index b41c28d4..5f72b011 100644 --- a/src/projects/RawBox/index.yaml +++ b/src/projects/RawBox/index.yaml @@ -1,7 +1,8 @@ +id: raw-box name: RawBox -categories: [ Hardware ] -ecosystem: [ Nym ] -description: 'Redefined privacy-enabled router.' +categories: [hardware] +ecosystem: [nym] +description: "Redefined privacy-enabled router." team: anonymous: false @@ -15,8 +16,8 @@ team: - name: Beyond link: https://x.com/Beyond_Karto -links: - github: https://github.com/Raw-Box/ +links: + github: https://github.com/Raw-Box/ twitter: https://x.com/rawbox_tech telegram: https://t.me/+G4ixLEgYBXJkZWRi @@ -27,3 +28,6 @@ project_status: mainnet: false have_token: false + +usecases: + - hardware diff --git a/src/projects/Rido/index.yaml b/src/projects/Rido/index.yaml index 39c14e31..92b123a7 100644 --- a/src/projects/Rido/index.yaml +++ b/src/projects/Rido/index.yaml @@ -1,14 +1,17 @@ +id: rido name: Rido -categories: [ AI ] -description: 'Web3 Personal Data Layer for AI ' +categories: [applications] +description: "Web3 Personal Data Layer for AI " team: anonymous: true links: - web: https://www.rido.io/ + web: https://www.rido.io/ github: https://github.com/ridoio/rido-dao-contract blog: https://medium.com/@Rido_io - twitter: https://x.com/rido_crypto + twitter: https://x.com/rido_crypto discord: https://discord.com/invite/Ekb98rR3pu telegram: https://t.me/+N6HLxnRL_WE5ZDVl have_token: false sunset: false + +usecases: [ai] diff --git a/src/projects/Ritual/index.yaml b/src/projects/Ritual/index.yaml index e3086fcd..0f972b4d 100644 --- a/src/projects/Ritual/index.yaml +++ b/src/projects/Ritual/index.yaml @@ -1,8 +1,8 @@ +id: ritual name: Ritual -categories: [ ai ] -ecosystem: [ Ethereum, Solana, Polygon ] -usecases: [ ai, node ] -description: 'We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code.' +categories: [applications] +ecosystem: [ethereum, solana, polygon] +description: "We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code." product_launch_day: "2023" team: @@ -19,11 +19,11 @@ team: - name: Saneel Sreeni link: https://x.com/sanlsrni - name: Maryam Bahrani - link: https://www.mbahrani.net/ + link: https://www.mbahrani.net/ - name: Yahya Hassanzadeh link: https://www.linkedin.com/in/yhassanzadeh/ - name: Praveen Palanisamy - link: https://www.linkedin.com/in/praveenpalanisamy/ + link: https://www.linkedin.com/in/praveenpalanisamy/ links: web: https://ritual.net/ @@ -33,10 +33,8 @@ links: twitter: https://x.com/ritualnet discord: https://discord.com/invite/ritual-net -project_phase: Testnet sunset: false - funding: name: archetype link: https://ritual.net/blog/introducing-ritual @@ -44,9 +42,6 @@ funding: blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true - privacy_policy: defined: false @@ -56,4 +51,5 @@ traceability: kyc: false third_party_dependency: false compliance: false - + +usecases: [ai] diff --git a/src/projects/Rotki/index.yaml b/src/projects/Rotki/index.yaml index ef3f5802..b014d4f7 100644 --- a/src/projects/Rotki/index.yaml +++ b/src/projects/Rotki/index.yaml @@ -1,9 +1,8 @@ +id: rotki name: Rotki -categories: [ dapps ] -ecosystem: [ Ethereum, Bitcoin, Base, Optimist, Gnosis, Scroll, ZkSync ] -usecases: [ os portfolio management ] -description: 'rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy' -product_lunch_day: "2017" +categories: [applications] +ecosystem: [ethereum, bitcoin, base, optimist, gnosis, scroll, zksync] +description: "rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy" team: anonymous: false @@ -13,20 +12,17 @@ team: links: web: https://rotki.com/ - github: https://github.com/rotki/rotki + github: https://github.com/rotki/rotki docs: https://docs.rotki.com/ blog: https://blog.rotki.com/ - twitter: https://x.com/rotkiapp + twitter: https://x.com/rotkiapp discord: https://discord.rotki.com/ -project_phase: Mainet sunset: false blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: defined: true @@ -39,4 +35,6 @@ traceability: sign_in_type_requirments: wallet third_party_dependency: false compliance: false - + +usecases: + - dapps diff --git a/src/projects/Self/index.yaml b/src/projects/Self/index.yaml index 365e2bfc..44824f61 100644 --- a/src/projects/Self/index.yaml +++ b/src/projects/Self/index.yaml @@ -1,8 +1,7 @@ +id: self name: Self -categories: [ did ] -usecases: [ digital identity, personal data ] -description: 'Build identification and personal data management for everything' -product_lunch_day: "2019" +categories: [applications] +description: "Build identification and personal data management for everything" team: anonymous: false @@ -16,19 +15,15 @@ team: links: web: https://www.joinself.com/ - github: https://github.com/joinself + github: https://github.com/joinself docs: https://docs.joinself.com/ - twitter: https://x.com/futureoftrust + twitter: https://x.com/futureoftrust -project_phase: testnet sunset: false blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true - privacy_policy: defined: true link: https://www.joinself.com/company/legal @@ -43,5 +38,5 @@ compliance: false storage: decentralized: true -tecnology: - type: ZK +usecases: + - did diff --git a/src/projects/Sentz/index.yaml b/src/projects/Sentz/index.yaml index 37e28ea2..5298897d 100644 --- a/src/projects/Sentz/index.yaml +++ b/src/projects/Sentz/index.yaml @@ -1,8 +1,7 @@ +id: sentz name: Sentz -categories: [ dapps ] -usecases: [ payment ] -description: 'Global payments app for Freelancers & Creators' -product_lunch_day: "2022" +categories: [applications] +description: "Global payments app for Freelancers & Creators" team: anonymous: false @@ -21,7 +20,6 @@ links: twitter: https://x.com/sentzapp discord: https://discord.com/invite/mobilecoin -project_phase: Mainet sunset: false tokens: @@ -29,13 +27,9 @@ tokens: symbol: $MOB token_link: https://www.coingecko.com/en/coins/mobilecoin - blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true - privacy_policy: defined: true link: https://www.sentz.com/privacy-policy @@ -52,5 +46,7 @@ audits: - name: Trail of Bits link: https://www.sentz.com/developers/audits -assets_used: [ eUSD ] +assets_used: [EUSD] +usecases: + - dapps diff --git a/src/projects/SightAI/index.yaml b/src/projects/SightAI/index.yaml index 88e97ea4..a6cc77ad 100644 --- a/src/projects/SightAI/index.yaml +++ b/src/projects/SightAI/index.yaml @@ -1,6 +1,7 @@ +id: sightai name: SightAI -categories: [ AI ] -description: 'Decentralized AI inference with FHE' +categories: [applications] +description: "Decentralized AI inference with FHE" team: anonymous: true links: @@ -8,7 +9,9 @@ links: github: https://github.com/sight-ai docs: https://sightai.gitbook.io/docs blog: https://medium.com/@theSightAI - twitter: https://x.com/theSightAI + twitter: https://x.com/theSightAI telegram: https://t.me/sightai have_token: false sunset: false + +usecases: [ai] diff --git a/src/projects/Summa/index.yaml b/src/projects/Summa/index.yaml index 2e854290..2fc8d8f1 100644 --- a/src/projects/Summa/index.yaml +++ b/src/projects/Summa/index.yaml @@ -1,8 +1,8 @@ +id: summa name: Summa -categories: infrastructure -description: 'Protocol enabling centralized exchanges to prove solvency without compromising private information.' -project_status: - +categories: [infrastructure] +description: "Protocol enabling centralized exchanges to prove solvency without compromising private information." +project_status: live_status: true team: anonymous: true @@ -10,3 +10,6 @@ links: github: https://github.com/summa-dev technology: type: halo2 + features: [""] + +usecases: [infrastructure] diff --git a/src/projects/Sunscreen/index.yaml b/src/projects/Sunscreen/index.yaml index 8312b0b9..87072ba2 100644 --- a/src/projects/Sunscreen/index.yaml +++ b/src/projects/Sunscreen/index.yaml @@ -1,8 +1,9 @@ -name: 'Sunsscreen' -categories: [ FHE ] -description: 'Privacy engine of the new web.' +id: sunscreen +name: "Sunsscreen" +categories: [applications] +description: "Privacy engine of the new web." links: - web: https://sunscreen.tech/ - blog: https://blog.sunscreen.tech/ + web: https://sunscreen.tech/ + blog: https://blog.sunscreen.tech/ twitter: https://x.com/sunscreentech discord: https://discord.com/invite/WHCs6jNNDS diff --git a/src/projects/Super Protocol/index.yaml b/src/projects/Super Protocol/index.yaml index d3b79af3..e361ef67 100644 --- a/src/projects/Super Protocol/index.yaml +++ b/src/projects/Super Protocol/index.yaml @@ -1,13 +1,16 @@ +id: super-protocol name: SuperProtocol -categories: [ AI ] -description: 'The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts' +categories: [applications] +description: "The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts" team: anonymous: true links: - web: https://superprotocol.com/ + web: https://superprotocol.com/ docs: https://docs.superprotocol.com/developers/ - twitter: https://x.com/super__protocol + twitter: https://x.com/super__protocol discord: https://discord.com/invite/superprotocol telegram: https://t.me/superprotocol have_token: false sunset: false + +usecases: [ai] diff --git a/src/projects/Synaps/index.yaml b/src/projects/Synaps/index.yaml index 5bd02172..f9603998 100644 --- a/src/projects/Synaps/index.yaml +++ b/src/projects/Synaps/index.yaml @@ -1,6 +1,7 @@ +id: synaps name: Synaps -categories: [ kyc ] -description: 'KYC provider and verifiable credential issuer for DID protocols.' +categories: [applications] +description: "KYC provider and verifiable credential issuer for DID protocols." team: anonymous: false @@ -8,14 +9,14 @@ team: - name: Florian Le Goff role: CEO link: https://x.com/0xAnimaniac - + links: web: https://synaps.io/ github: https://github.com/synaps-io docs: https://docs.synaps.io/ blog: https://synaps.io/blog twitter: https://x.com/synaps_id - + project_status: live_status: true version: Mainnet @@ -23,3 +24,6 @@ project_status: mainnet: true have_token: false + +usecases: + - kyc-solution diff --git a/src/projects/Taceo/index.yaml b/src/projects/Taceo/index.yaml index d21d51fc..4880d7ec 100644 --- a/src/projects/Taceo/index.yaml +++ b/src/projects/Taceo/index.yaml @@ -1,6 +1,7 @@ +id: taceo name: Taceo -categories: [ computing-network ] -description: 'Encrypted Computation Layer; MPC + ZK' +categories: [infrastructure] +description: "Encrypted Computation Layer; MPC + ZK" team: anonymous: false @@ -16,12 +17,14 @@ links: web: https://taceo.io/ github: https://github.com/TaceoLabs docs: https://docs.taceo.io/ - whitepaper: blog: https://blog.taceo.io/ twitter: https://x.com/TACEO_IO discord: https://discord.com/invite/gWZW2TANpk project_status: live_status: true - + have_token: false + +usecases: + - computing diff --git a/src/projects/The 4th Pillar/index.yaml b/src/projects/The 4th Pillar/index.yaml index d099fb87..dd9ba002 100644 --- a/src/projects/The 4th Pillar/index.yaml +++ b/src/projects/The 4th Pillar/index.yaml @@ -1,10 +1,11 @@ -name: The 4th Pillar -categories: [ messaging ] -description: 'Web3 Aligned Email & Chat Super App' +id: the-4th-pillar +name: The 4th Pillar +categories: [social-and-communications] +description: "Web3 Aligned Email & Chat Super App" team: anonymous: true - + links: web: https://the4thpillar.io/ github: https://github.com/4P-project/ @@ -14,7 +15,7 @@ links: twitter: https://x.com/4pfour discord: https://discord.com/invite/WaZZXeBhg4 telegram: https://t.me/the4thpillarofficial - + project_status: live_status: true version: Mainnet @@ -28,3 +29,6 @@ tokens: symbol: $FOUR network: Ethereum contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0" + +usecases: + - messaging diff --git a/src/projects/Venice/index.yaml b/src/projects/Venice/index.yaml index bca4ec9c..f2e8db86 100644 --- a/src/projects/Venice/index.yaml +++ b/src/projects/Venice/index.yaml @@ -1,8 +1,11 @@ +id: venice name: Venice -categories: [ AI ] -description: 'a generative AI app focused on privacy' +categories: [applications] +description: "a generative AI app focused on privacy" links: web: https://venice.ai blog: https://venice.ai/blog twitter: https://x.com/askvenice - farcaster: venice-ai + farcaster: https://forecaster.com/venice-ai + +usecases: [ai] diff --git a/src/projects/Vocdoni/index.yaml b/src/projects/Vocdoni/index.yaml index 642fbe7c..eccdc1cf 100644 --- a/src/projects/Vocdoni/index.yaml +++ b/src/projects/Vocdoni/index.yaml @@ -1,9 +1,8 @@ +id: vocdoni name: Vocdoni -categories: [ dapps ] -ecosystem: [ Ethereum ] -usecases: [ voting ] -description: 'To build open source solutions to facilitate decision making in any organization.' -product_lunch_day: "2017" +categories: [applications] +ecosystem: [ethereum] +description: "To build open source solutions to facilitate decision making in any organization." team: anonymous: false @@ -14,13 +13,13 @@ team: link: https://x.com/jp_aulet - name: Pau Escrich link: https://x.com/wildp4u - - name: Jordi Pinyana + - name: Jordi Pinyana - name: Marta Sancho link: https://x.com/MartaMordis - name: Guido Iribarren - link: https://github.com/altergui + link: https://github.com/altergui - name: Lucas Menéndez - link: https://github.com/lucasmenendez + link: https://github.com/lucasmenendez links: web: https://www.vocdoni.io/ @@ -28,10 +27,9 @@ links: docs: https://docs.vocdoni.io/about-us/how-we-work.html block_explorer: https://explorer.vote/ blog: https://blog.vocdoni.io/ - twitter: https://x.com/vocdoni + twitter: https://x.com/vocdoni discord: https://discord.com/invite/Qjm7krrFBf -project_phase: Mainnet sunset: false funding: @@ -41,22 +39,17 @@ funding: blockchain_features: opensource: true asset_custody_type: non-custody - upgradability: - enabled: true privacy_policy: defined: false default_privacy: true -traceability: - kyc: false - sign_in_type_requirments: wallet third_party_dependency: false compliance: false storage: decentralized: true -tecnology: - type: zkSNARKs +usecases: + - dapps diff --git a/src/projects/Zama/index.yaml b/src/projects/Zama/index.yaml index 0e0cdeba..5b83e45a 100644 --- a/src/projects/Zama/index.yaml +++ b/src/projects/Zama/index.yaml @@ -1,6 +1,7 @@ -name: 'Zama' -categories: [ FHE ] -description: 'an open source cryptography company building FHE solutions for blockchain and AI.' +id: zama +name: "Zama" +categories: [infrastructure] +description: "an open source cryptography company building FHE solutions for blockchain and AI." team: anonymous: false links: diff --git a/src/projects/ZkAGI/index.yaml b/src/projects/ZkAGI/index.yaml index 3b404e1b..9758152b 100644 --- a/src/projects/ZkAGI/index.yaml +++ b/src/projects/ZkAGI/index.yaml @@ -1,6 +1,7 @@ +id: zkagi name: ZkAGI -categories: [ AI ] -description: 'Pioneering Privacy AI with Decentralized Infrastructure (DePIN)' +categories: [applications] +description: "Pioneering Privacy AI with Decentralized Infrastructure (DePIN)" links: web: https://www.zkagi.ai/ docs: https://zkagi.gitbook.io/introduction @@ -11,3 +12,5 @@ links: telegram: https://t.me/ZkAGI_AI have_token: false sunset: false + +usecases: [ai] diff --git a/src/projects/actilist/index.yaml b/src/projects/actilist/index.yaml index 6d04820c..b3ccb305 100644 --- a/src/projects/actilist/index.yaml +++ b/src/projects/actilist/index.yaml @@ -1,6 +1,6 @@ name: Actilist -categories: [ nft ] -description: 'Secret NFT auctions.' +categories: [applications] +description: "Secret NFT auctions." links: web: https://test.actilist.io github: https://github.com/actilabs @@ -13,6 +13,9 @@ project_status: live_status: true version: testnet testnet: true - mainnet: false + mainnet: false have_token: false -sunset: false +sunset: false + +usecases: + - nft-community diff --git a/src/projects/aesirx-web3-id/index.yaml b/src/projects/aesirx-web3-id/index.yaml index ff0c513d..abdfa96d 100644 --- a/src/projects/aesirx-web3-id/index.yaml +++ b/src/projects/aesirx-web3-id/index.yaml @@ -1,6 +1,6 @@ name: AesirX WEB3 ID -categories: [ did ] -description: 'an advanced identity management solution that protects users’ personal data and ensures privacy on the internet.' +categories: [applications] +description: "an advanced identity management solution that protects users’ personal data and ensures privacy on the internet." links: web: https://web3id.aesirx.io github: https://github.com/aesirxio @@ -11,3 +11,6 @@ links: facebook: https://www.facebook.com/aesirxio telegram: https://t.me/aesirx_official_community have_token: true + +usecases: + - did diff --git a/src/projects/alaya/index.yaml b/src/projects/alaya/index.yaml index 0675001f..3fd3a9e9 100644 --- a/src/projects/alaya/index.yaml +++ b/src/projects/alaya/index.yaml @@ -1,8 +1,9 @@ name: Alaya -categories: [ computing-network ] -description: 'Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON.' -ecosystem: Ethereum -project_status: Mainnet, 2022 +categories: [infrastructure] +description: "Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON." +ecosystem: [ethereum] +project_status: + version: Mainnet links: web: https://alaya.network/en github: https://github.com/AlayaNetwork @@ -11,3 +12,6 @@ links: blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e team: anonymous: true + +usecases: + - computing diff --git a/src/projects/aleo/index.yaml b/src/projects/aleo/index.yaml index 9e5c2983..042d3629 100644 --- a/src/projects/aleo/index.yaml +++ b/src/projects/aleo/index.yaml @@ -1,6 +1,6 @@ name: Aleo -categories: [ infrastructure ] -description: 'An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1.' +categories: [infrastructure] +description: "An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1." team: anonymous: true links: @@ -28,14 +28,13 @@ blockchain_features: dissapearing_tx: true connected_tx: true client_diversability: - name: address - link: https://explorer.aleo.org/validators + - name: address + link: https://explorer.aleo.org/validators default_privacy: true -tracebility: - kyc: false - sign_in_type_requirements: wallet - tracked_data: non storage: decentralized: true compliance: false third_party_dependency: false + +usecases: + - infrastructure diff --git a/src/projects/aleph-zero/index.yaml b/src/projects/aleph-zero/index.yaml index 45b1d385..9e710a3b 100644 --- a/src/projects/aleph-zero/index.yaml +++ b/src/projects/aleph-zero/index.yaml @@ -1,8 +1,8 @@ name: Aleph Zero -categories: [ computing-network ] -description: 'Privacy-enhancing public blockchain with instant finality.' -ecosystem: Aleph -project_status: +categories: [infrastructure] +description: "Privacy-enhancing public blockchain with instant finality." +ecosystem: [aleph] +project_status: live_status: true version: Mainnet testnet: true @@ -20,3 +20,6 @@ team: anonymous: false company: link: https://alephzero.org/the-team + +usecases: + - computing diff --git a/src/projects/alter/index.yaml b/src/projects/alter/index.yaml index e909ff49..a20e0268 100644 --- a/src/projects/alter/index.yaml +++ b/src/projects/alter/index.yaml @@ -1,6 +1,6 @@ name: ALTER -categories: [ messaging ] -description: 'Private & Secure Communication App Utilizing Secret Nework secret contract technology.' +categories: [social-and-communications] +description: "Private & Secure Communication App Utilizing Secret Nework secret contract technology." team: anonymous: true links: @@ -15,3 +15,6 @@ project_status: version: mainnet testnet: false mainnet: true + +usecases: + - messaging diff --git a/src/projects/anagolay/index.yaml b/src/projects/anagolay/index.yaml index caf037eb..e672d483 100644 --- a/src/projects/anagolay/index.yaml +++ b/src/projects/anagolay/index.yaml @@ -1,6 +1,6 @@ name: Anagolay -categories: [ did ] -description: 'Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P' +categories: [applications] +description: "Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P" links: web: https://anagolay.network github: https://github.com/anagolay @@ -11,3 +11,6 @@ links: twitter: https://x.com/AnagolayNet discord: https://discord.com/invite/WHe4EuY have_token: true + +usecases: + - did diff --git a/src/projects/anoma/index.yaml b/src/projects/anoma/index.yaml index e661d87b..1f1f6cca 100644 --- a/src/projects/anoma/index.yaml +++ b/src/projects/anoma/index.yaml @@ -1,7 +1,8 @@ name: Anoma -categories: [ infrastructure ] -description: 'An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement' -project_status: testnet +categories: [infrastructure] +description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement" +project_status: + version: "testnet" team: anonymous: false teammembers: @@ -24,7 +25,9 @@ technology: - privacy for content blockchain_features: p2p: true -tracebility: - kyc: false + storage: decentralized: true + +usecases: + - infrastructure diff --git a/src/projects/anon-aadhaar/index.yaml b/src/projects/anon-aadhaar/index.yaml index 122dc324..a33a5045 100644 --- a/src/projects/anon-aadhaar/index.yaml +++ b/src/projects/anon-aadhaar/index.yaml @@ -1,8 +1,8 @@ name: Anon Aadhaar -categories: [ DID ] -description: 'Anon Aadhaar is a project that allows individuals to prove their citizenship anonymously. The project provides circuits, an SDK, and demo applications that generate and verify proofs of valid Aadhaar cards, integrating with the PCD framework to support a wide range of applications.' -project_status: testnet -live_status: true +categories: [applications] +description: "Anon Aadhaar is a project that allows individuals to prove their citizenship anonymously. The project provides circuits, an SDK, and demo applications that generate and verify proofs of valid Aadhaar cards, integrating with the PCD framework to support a wide range of applications." +project_status: + version: "testnet" team: anonymous: true links: @@ -12,3 +12,7 @@ links: github: https://github.com/anon-aadhaar/anon-aadhaar technology: type: zk, circom, rsa + features: [""] + +usecases: + - did diff --git a/src/projects/anon-nero/index.yaml b/src/projects/anon-nero/index.yaml index 6821bdfd..b7b71702 100644 --- a/src/projects/anon-nero/index.yaml +++ b/src/projects/anon-nero/index.yaml @@ -1,5 +1,8 @@ name: Anon/Nero -categories: [ wallets ] -description: 'Private wallet' +categories: [applications] +description: "Private wallet" links: web: https://t.me/anoneroapks + +usecases: + - wallets diff --git a/src/projects/anonybit/index.yaml b/src/projects/anonybit/index.yaml index dbae27fa..e6b28495 100644 --- a/src/projects/anonybit/index.yaml +++ b/src/projects/anonybit/index.yaml @@ -1,10 +1,13 @@ name: Anonybit -categories: [ did ] -description: 'Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)' -ecosystem: multichain -links: +categories: [applications] +description: "Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)" +ecosystem: [multichain] +links: web: https://www.anonybit.io/team/ - + blog: https://www.anonybit.io/blog/ twitter: https://x.com/Anonybit1 have_token: true + +usecases: + - did diff --git a/src/projects/anonzk-incognito/index.yaml b/src/projects/anonzk-incognito/index.yaml index 2f587f78..29448e49 100644 --- a/src/projects/anonzk-incognito/index.yaml +++ b/src/projects/anonzk-incognito/index.yaml @@ -1,5 +1,8 @@ name: AnonZK Incognito -categories: [ mixing-service ] -description: 'A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity.' +categories: [applications] +description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity." links: web: https://incognito.anonzk.io + +usecases: + - mixing-service diff --git a/src/projects/anydao/index.yaml b/src/projects/anydao/index.yaml index 5d68b20c..4a3de226 100644 --- a/src/projects/anydao/index.yaml +++ b/src/projects/anydao/index.yaml @@ -1,9 +1,12 @@ name: AnyDAO -categories: [ dao ] -description: 'Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting' +categories: [applications] +description: "Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting" links: web: https://app.anydao.io/bsc/explore docs: https://docs.anydao.io/ blog: https://anydao.medium.com/ twitter: https://x.com/0xAnyDAO telegram: https://t.me/AnyDAO + +usecases: + - dao diff --git a/src/projects/anytype/index.yaml b/src/projects/anytype/index.yaml index f20190bb..5a98a68f 100644 --- a/src/projects/anytype/index.yaml +++ b/src/projects/anytype/index.yaml @@ -1,7 +1,6 @@ name: Anytype -categories: [ infrastructure ] -description: 'local-first, E2E encrypted software designed as a secure place to create and store digital assets. You can use Anytype to create and connect your tasks, notes, ideas, documents, workflows, and more' -team: 56 members +categories: [infrastructure] +description: "local-first, E2E encrypted software designed as a secure place to create and store digital assets. You can use Anytype to create and connect your tasks, notes, ideas, documents, workflows, and more" links: web: https://anytype.io/en github: https://github.com/anytypeio @@ -10,3 +9,6 @@ links: twitter: https://twitter.com/anytypelabs telegram: https://t.me/anytype youtube: https://www.youtube.com/c/anytype + +usecases: + - infrastructure diff --git a/src/projects/arcana-s-private-nft/index.yaml b/src/projects/arcana-s-private-nft/index.yaml index 9a6c0ec1..38c95597 100644 --- a/src/projects/arcana-s-private-nft/index.yaml +++ b/src/projects/arcana-s-private-nft/index.yaml @@ -1,6 +1,9 @@ name: Arcana's Private NFT -categories: [ nft ] -description: 'New supported format by Arcana preserving privacy within NFT minting.' +categories: [applications] +description: "New supported format by Arcana preserving privacy within NFT minting." links: web: https://arcana.network/blog/launching-private-nfts-on-arcana/ github: https://docs.beta.arcana.network/docs/conceptpvtnft/ + +usecases: + - nft-community diff --git a/src/projects/arcana/index.yaml b/src/projects/arcana/index.yaml index 26ec7cb2..985c16fc 100644 --- a/src/projects/arcana/index.yaml +++ b/src/projects/arcana/index.yaml @@ -1,19 +1,19 @@ name: Arcana -categories: [ infrastructure ] -description: 'Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption' -team: +categories: [infrastructure] +description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption" +team: anonymous: false teammembers: - - name: Mayur Relekar - role: Co-Founder - - name: Aravindh Kumar - role: Co-Founder - - name: Ajay Shetty - role: Chief Operating Officer - - name: Abhishek Chaudhary - role: Chief Technology Officer - - name: Sharan Grandigae - role: Sharan Grandigae + - name: Mayur Relekar + role: Co-Founder + - name: Aravindh Kumar + role: Co-Founder + - name: Ajay Shetty + role: Chief Operating Officer + - name: Abhishek Chaudhary + role: Chief Technology Officer + - name: Sharan Grandigae + role: Sharan Grandigae links: web: https://arcana.network github: https://docs.beta.arcana.network @@ -27,3 +27,6 @@ links: have_token: true tokens: - symbol: XAR + +usecases: + - infrastructure diff --git a/src/projects/arpa/index.yaml b/src/projects/arpa/index.yaml index 856b6576..565c5cdc 100644 --- a/src/projects/arpa/index.yaml +++ b/src/projects/arpa/index.yaml @@ -1,8 +1,8 @@ name: ARPA -categories: [ computing-network ] -description: 'Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc' -ecosystem: multichain -project_status: +categories: [infrastructure] +description: "Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc" +ecosystem: [multichain] +project_status: live_status: true version: Mainnet testnet: true @@ -18,3 +18,6 @@ links: telegram: https://t.me/arpa_community team: anonymous: true + +usecases: + - computing diff --git a/src/projects/asmatch/index.yaml b/src/projects/asmatch/index.yaml index 89e05834..f955246f 100644 --- a/src/projects/asmatch/index.yaml +++ b/src/projects/asmatch/index.yaml @@ -1,6 +1,6 @@ name: AsMatch -categories: [ dapps ] -description: 'The only Web3 matching app that uses ZKPs to authenticate users’ on-chain credentials' +categories: [applications] +description: "The only Web3 matching app that uses ZKPs to authenticate users’ on-chain credentials" links: web: https://www.asmatch.app whitepaper: https://whitepaper.asmatch.app/ @@ -8,3 +8,6 @@ links: blog: https://asmatch.medium.com/ twitter: https://x.com/AsMatchApp discord: https://discord.com/invite/yqUWDdyfX9 + +usecases: + - dapps diff --git a/src/projects/asterizm/index.yaml b/src/projects/asterizm/index.yaml index 82542af2..a537c1f2 100644 --- a/src/projects/asterizm/index.yaml +++ b/src/projects/asterizm/index.yaml @@ -1,11 +1,13 @@ name: Asterizm -categories: [ infrastructure ] -description: 'Plug and play blockchain interoperability solution for enterprises, web3 protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions with their core modules - asset bridge, NFT bridge, native cross-chain token & NFT' +categories: [infrastructure] +description: "Plug and play blockchain interoperability solution for enterprises, web3 protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions with their core modules - asset bridge, NFT bridge, native cross-chain token & NFT" team: - - name: Artem Avdeev - role: CEO - - name: Denis Polulyakhov - role: Co-Founder + anonymous: false + teammembers: + - name: Artem Avdeev + role: CEO + - name: Denis Polulyakhov + role: Co-Founder links: web: https://asterizm.io github: https://github.com/Asterizm-Protocol @@ -15,3 +17,6 @@ links: twitter: https://twitter.com/Asterizm_layer discord: https://discord.gg/z5QVerD48C telegram: https://t.me/asterizm_protocol + +usecases: + - infrastructure diff --git a/src/projects/auth3/index.yaml b/src/projects/auth3/index.yaml index 8c3d3893..c91ac24e 100644 --- a/src/projects/auth3/index.yaml +++ b/src/projects/auth3/index.yaml @@ -1,19 +1,21 @@ name: Auth3 -categories: [ infrastructure ] +categories: [infrastructure] -description: 'a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data.' +description: "a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data." team: anonymous: true - + links: web: https://auth3.network whitepaper: https://auth3.network/Auth3-Whitepaper_v1.0.pdf twitter: https://twitter.com/auth3_network - + project_status: live_status: false version: TBD testnet: false mainnet: false - + +usecases: + - infrastructure diff --git a/src/projects/automata-network/index.yaml b/src/projects/automata-network/index.yaml index bde80768..a2863fa3 100644 --- a/src/projects/automata-network/index.yaml +++ b/src/projects/automata-network/index.yaml @@ -1,6 +1,6 @@ name: Automata Network -categories: [ infrastructure ] -description: 'The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA' +categories: [infrastructure] +description: "The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA" team: anonymous: true links: @@ -13,6 +13,9 @@ tokens: - symbol: ATA project_status: live_status: true - version: false + version: "" testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/avado/index.yaml b/src/projects/avado/index.yaml index 8819f3ee..735cd365 100644 --- a/src/projects/avado/index.yaml +++ b/src/projects/avado/index.yaml @@ -1,7 +1,7 @@ name: Avado -categories: [ hardware ] -description: 'A plug-and-play hardware device that connects users to many different kinds of blockchains' -ecosystem: multichain +categories: [hardware] +description: "A plug-and-play hardware device that connects users to many different kinds of blockchains" +ecosystem: [multichain] links: web: https://ava.do/ github: https://github.com/mysteriumnetwork/AVADO-DNP-Mysterium-Server @@ -14,3 +14,6 @@ team: anonymous: false company: link: https://www.mysterium.network/team + +usecases: + - hardware diff --git a/src/projects/axiatel/index.yaml b/src/projects/axiatel/index.yaml index 32c0e56e..87e91144 100644 --- a/src/projects/axiatel/index.yaml +++ b/src/projects/axiatel/index.yaml @@ -1,9 +1,12 @@ name: AXIAtel -categories: [ hardware ] -description: 'a privacy first mobile service for everyone' -ecosystem: multichain +categories: [hardware] +description: "a privacy first mobile service for everyone" +ecosystem: [multichain] links: web: https://axiatel.co blog: https://medium.com/@axiatel team: anonymous: true + +usecases: + - hardware diff --git a/src/projects/aztec-connect/index.yaml b/src/projects/aztec-connect/index.yaml index 31231aae..a6ec00f8 100644 --- a/src/projects/aztec-connect/index.yaml +++ b/src/projects/aztec-connect/index.yaml @@ -1,8 +1,11 @@ -name: Aztec Connect -categories: [bridge] -links: - github: https://github.com/AztecProtocol/aztec-connect-bridges - docs: https://docs.aztec.network/misc/aztec_connect_sunset - blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/ - discord: https://discord.com/invite/aztec - education: https://twitter.com/aztecnetwork/status/1575662728395358208 +name: Aztec Connect +categories: [applications] +links: + github: https://github.com/AztecProtocol/aztec-connect-bridges + docs: https://docs.aztec.network/misc/aztec_connect_sunset + blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/ + discord: https://discord.com/invite/aztec + education: https://twitter.com/aztecnetwork/status/1575662728395358208 + +usecases: + - bridge diff --git a/src/projects/basic-attention-token/index.yaml b/src/projects/basic-attention-token/index.yaml index fbfa5430..57fdf469 100644 --- a/src/projects/basic-attention-token/index.yaml +++ b/src/projects/basic-attention-token/index.yaml @@ -1,7 +1,7 @@ name: Basic Attention Token -categories: [ currency ] -description: 'Making Crypto and DeFi accessible and usable for everyone (powered by Brave)' -ecosystem: Solana +categories: [defi] +description: "Making Crypto and DeFi accessible and usable for everyone (powered by Brave)" +ecosystem: [solana] links: web: https://basicattentiontoken.org whitepaper: https://basicattentiontoken.org/static-assets/documents/BasicAttentionTokenWhitePaper-4.pdf @@ -10,3 +10,6 @@ links: discord: https://discord.com/invite/BATBrigade team: anonymous: false + +usecases: + - currency diff --git a/src/projects/basicswap/index.yaml b/src/projects/basicswap/index.yaml index d462b29a..dfa70fba 100644 --- a/src/projects/basicswap/index.yaml +++ b/src/projects/basicswap/index.yaml @@ -1,7 +1,7 @@ name: Basic Swap -categories: [ defi ] -ecosystem: Multichain -description: 'A private and cross-chain DEX' +categories: [defi] +ecosystem: [multichain] +description: "A private and cross-chain DEX" project_type: DeFi product_launch_day: "2022-12-08" technology: @@ -19,9 +19,6 @@ links: blockchain_features: p2p: true encryption: P2P, AtomicSwaps - upgradability: - enabled: true - type: fork opensource: true dissapearing_tx: true frontend_anonymity: self-hosted @@ -44,7 +41,7 @@ traceability: sign_in_type_requirments: wallets third_party_dependency: false compliance: none -client_diversability: +client_diversability: - name: BasicSwap client link: https://basicswapdex.com/ default_privacy: false @@ -53,3 +50,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - defi diff --git a/src/projects/bcchat/index.yaml b/src/projects/bcchat/index.yaml index 2c2d0f18..be6f865f 100644 --- a/src/projects/bcchat/index.yaml +++ b/src/projects/bcchat/index.yaml @@ -1,6 +1,6 @@ name: BCchat -categories: [ messaging ] -description: 'A decentralized, privacy messenger built over the Beldex blockchain.' +categories: [social-and-communications] +description: "A decentralized, privacy messenger built over the Beldex blockchain." team: anonymous: true links: @@ -16,4 +16,6 @@ project_status: version: mainnet testnet: false mainnet: true - + +usecases: + - messaging diff --git a/src/projects/beam-wallet/index.yaml b/src/projects/beam-wallet/index.yaml index 2275bed2..60b4fb46 100644 --- a/src/projects/beam-wallet/index.yaml +++ b/src/projects/beam-wallet/index.yaml @@ -1,6 +1,6 @@ name: Beam -categories: [ wallets ] -description: 'Self-custodial wallet built on eco.org' +categories: [applications] +description: "Self-custodial wallet built on eco.org" team: anonymous: true links: @@ -9,6 +9,9 @@ links: github: https://github.com/eco-association project_status: live_status: true - version: + version: "" testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/beam/index.yaml b/src/projects/beam/index.yaml index 5717ca5c..00fe0763 100644 --- a/src/projects/beam/index.yaml +++ b/src/projects/beam/index.yaml @@ -1,6 +1,6 @@ name: Beam -categories: [ currency ] -description: 'Best in class privacy coin and confidential DeFi platform' +categories: [defi] +description: "Best in class privacy coin and confidential DeFi platform" links: web: https://beam.mw github: https://github.com/BeamMW/beam @@ -10,7 +10,11 @@ links: twitter: https://x.com/beamprivacy discord: https://discord.com/invite/BHZvAhg telegram: https://t.me/BeamPrivacy -ecosystem: Beam -project_status: Mainnet +ecosystem: [beam] +project_status: + version: "Mainnet" team: anonymous: false + +usecases: + - currency diff --git a/src/projects/beepo/index.yaml b/src/projects/beepo/index.yaml index 50d321ce..a419742f 100644 --- a/src/projects/beepo/index.yaml +++ b/src/projects/beepo/index.yaml @@ -1,11 +1,13 @@ name: Beepo -categories: [ messaging ] -description: 'A social networking application integrated with a multichain chain crypto wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and a sales catalog section for business accounts' +categories: [social-and-communications] +description: "A social networking application integrated with a multichain chain crypto wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and a sales catalog section for business accounts" team: - - name: Michael Jimoh - role: Co-Founder & CEO - - name: Clement Hochart - role: Co-Founder + anonymous: false + teammembers: + - name: Michael Jimoh + role: Co-Founder & CEO + - name: Clement Hochart + role: Co-Founder links: web: https://beepoapp.net/#features github: https://github.com/beepo-app @@ -13,3 +15,6 @@ links: twitter: https://x.com/beepoapp discord: https://discord.com/invite/DhYJGgAVzR telegram: https://t.me/beepoapp + +usecases: + - messaging diff --git a/src/projects/beldex/index.yaml b/src/projects/beldex/index.yaml index f7bf71e0..b60c584c 100644 --- a/src/projects/beldex/index.yaml +++ b/src/projects/beldex/index.yaml @@ -1,7 +1,7 @@ name: Beldex -categories: [ currency ] -description: 'A privacy currency based on Monero, Beldex currently offers incentive-based Master Nodes and in the future Beldex will be using POS instead of POW' -ecosystem: Beldex +categories: [defi] +description: "A privacy currency based on Monero, Beldex currently offers incentive-based Master Nodes and in the future Beldex will be using POS instead of POW" +ecosystem: [beldex] project_status: live_status: true verion: Mainnet @@ -18,3 +18,6 @@ links: telegram: https://t.me/official_beldex team: anonymous: false + +usecases: + - currency diff --git a/src/projects/bermuda/index.yaml b/src/projects/bermuda/index.yaml index d05e670a..b3141138 100644 --- a/src/projects/bermuda/index.yaml +++ b/src/projects/bermuda/index.yaml @@ -1,6 +1,6 @@ name: Bermuda -categories: [ dapps ] -description: 'Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens' +categories: [applications] +description: "Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens" links: web: https://www.bmda.io whitepaper: https://www.bmda.io/bermuda-whitepaper-1.2.pdf @@ -8,3 +8,6 @@ links: blog: https://medium.com/@bmdaadmin twitter: https://x.com/BermudaEth telegram: https://t.me/bermudaportal + +usecases: + - dapps diff --git a/src/projects/bidshop/index.yaml b/src/projects/bidshop/index.yaml index 5229f116..90eceeed 100644 --- a/src/projects/bidshop/index.yaml +++ b/src/projects/bidshop/index.yaml @@ -1,6 +1,6 @@ name: Bidshop -categories: [ nft ] -description: 'The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs' +categories: [applications] +description: "The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs" links: web: https://www.bidshop.io docs: https://bidshop.gitbook.io/bidshop-platform @@ -14,3 +14,6 @@ tokens: symbol: BIDS network: Ethereum contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F" + +usecases: + - nft-community diff --git a/src/projects/blackbox/index.yaml b/src/projects/blackbox/index.yaml index 2255e7f2..0c3bc6b5 100644 --- a/src/projects/blackbox/index.yaml +++ b/src/projects/blackbox/index.yaml @@ -1,7 +1,7 @@ name: Blackbox -categories: [ defi ] -ecosystem: Secret -description: 'Collection of tools allowing you send & receive SCRT anonymously' +categories: [defi] +ecosystem: [secret] +description: "Collection of tools allowing you send & receive SCRT anonymously" project_type: DeFi product_launch_day: "2021-15-02" technology: @@ -19,8 +19,7 @@ links: blockchain_features: p2p: false encryption: TEE - upgradability: - enabled: false + opensource: true viewing_key: true dissapearing_tx: false @@ -32,7 +31,7 @@ blockchain_features: reversability_condition: hack data_masking: SNIP-20 token/SCRT contracts asset_custody_type: non-custody -licences: Apache License +licences: Apache License privacy_policy: defined: false team: @@ -54,7 +53,7 @@ third_party_dependency: true compliance: false social_trust: Slabs ( MRSINGER ), Contract operator ( Trivium ) technical_spof: Can decrypt/fraud -client_diversability: +client_diversability: - name: Keplr link: https://www.keplr.app/ - name: Starshell @@ -65,3 +64,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - defi diff --git a/src/projects/blackhat-coin/index.yaml b/src/projects/blackhat-coin/index.yaml index 5e1fff0c..f653b806 100644 --- a/src/projects/blackhat-coin/index.yaml +++ b/src/projects/blackhat-coin/index.yaml @@ -1,8 +1,9 @@ name: BlackHat Coin -categories: [ currency ] -description: 'Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol' -ecosystem: BlackHat -project_status: Mainnet +categories: [defi] +description: "Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol" +ecosystem: [blackhat] +project_status: + version: "Mainnet" links: web: https://blackhatco.in github: https://github.com/BlackHatCoin @@ -14,3 +15,6 @@ links: telegram: https://t.me/BlackHatCoin team: anonymous: true + +usecases: + - currency diff --git a/src/projects/blockstream-green/index.yaml b/src/projects/blockstream-green/index.yaml index 1701fa20..bcca1227 100644 --- a/src/projects/blockstream-green/index.yaml +++ b/src/projects/blockstream-green/index.yaml @@ -1,7 +1,7 @@ name: Blockstream Green -categories: [ wallets ] -description: 'A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream' -ecosystem: Bitcoin +categories: [applications] +description: "A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream" +ecosystem: [bitcoin] links: web: https://blockstream.com/green/ github: https://github.com/Blockstream/green_qt @@ -18,3 +18,6 @@ project_status: version: 2.0.6 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/blockwallet/index.yaml b/src/projects/blockwallet/index.yaml index d22367fa..b3f6aad7 100644 --- a/src/projects/blockwallet/index.yaml +++ b/src/projects/blockwallet/index.yaml @@ -1,7 +1,7 @@ name: BlockWallet -categories: [ wallets ] -description: 'BlockWallet is the epitome of speed, reliability, security, and privacy in the world of digital assets. As a self-custodial Web3 wallet, it empowers you to truly own your digital currencies while eliminating concerns surrounding asset management.' -ecosystem: Ethereum +categories: [applications] +description: "BlockWallet is the epitome of speed, reliability, security, and privacy in the world of digital assets. As a self-custodial Web3 wallet, it empowers you to truly own your digital currencies while eliminating concerns surrounding asset management." +ecosystem: [ethereum] links: web: https://blockwallet.io/ github: https://github.com/block-wallet @@ -14,3 +14,6 @@ project_status: version: v.1.2.9 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/blockyfile/index.yaml b/src/projects/blockyfile/index.yaml index 68e91f5e..55afe1c7 100644 --- a/src/projects/blockyfile/index.yaml +++ b/src/projects/blockyfile/index.yaml @@ -1,5 +1,8 @@ name: Blockyfile -categories: [ dapps ] -description: 'The new way to upload files anonymously and without censorship.' +categories: [applications] +description: "The new way to upload files anonymously and without censorship." links: web: https://blockyfile.org + +usecases: + - dapps diff --git a/src/projects/bluum/index.yaml b/src/projects/bluum/index.yaml index 5310f81c..15cc41c3 100644 --- a/src/projects/bluum/index.yaml +++ b/src/projects/bluum/index.yaml @@ -1,6 +1,9 @@ name: Bluum -categories: [ nft ] -description: 'Enable confidentiality of NFT content.' +categories: [applications] +description: "Enable confidentiality of NFT content." links: web: https://bluumprotocol.com github: https://github.com/BluumProtocol + +usecases: + - nft-community diff --git a/src/projects/bob-protocol/index.yaml b/src/projects/bob-protocol/index.yaml index b6cd5827..2750daff 100644 --- a/src/projects/bob-protocol/index.yaml +++ b/src/projects/bob-protocol/index.yaml @@ -1,7 +1,7 @@ name: BOB Protocol -categories: [ currency ] -description: 'A multi-chain, multi-collateral stable token enhanced with optional privacy features' -ecosystem: Polygon, Optimism, BNB, Ethereum +categories: [defi] +description: "A multi-chain, multi-collateral stable token enhanced with optional privacy features" +ecosystem: [polygon, optimism, bnb, ethereum] links: web: https://zkbob.com/ github: https://github.com/zkBob @@ -13,3 +13,6 @@ links: telegram: https://t.me/zkbobcommunity team: anonymous: true + +usecases: + - currency diff --git a/src/projects/boltz/index.yaml b/src/projects/boltz/index.yaml index 927b7566..e0c24607 100644 --- a/src/projects/boltz/index.yaml +++ b/src/projects/boltz/index.yaml @@ -1,6 +1,6 @@ name: Boltz -categories: [ currency ] -description: 'Privacy first, account-free crypto exchange' +categories: [defi] +description: "Privacy first, account-free crypto exchange" links: web: https://boltz.exchange github: https://github.com/BoltzExchange/ @@ -11,3 +11,6 @@ links: telegram: https://t.me/boltzhq team: anonymous: true + +usecases: + - currency diff --git a/src/projects/boring-protocol/index.yaml b/src/projects/boring-protocol/index.yaml index b91517fd..ac28c428 100644 --- a/src/projects/boring-protocol/index.yaml +++ b/src/projects/boring-protocol/index.yaml @@ -1,7 +1,7 @@ name: Boring Protocol -categories: [ vpn ] -description: 'A Decentralized VPN on Solana' -ecosystem: Solana +categories: [applications] +description: "A Decentralized VPN on Solana" +ecosystem: [solana] links: web: https://boringprotocol.io github: https://docs.boringprotocol.io/bop/information/boring-protocol @@ -10,3 +10,6 @@ team: have_token: true token_link: https://coinmarketcap.com/currencies/boring-protocol/ sunset: true + +usecases: + - vpn diff --git a/src/projects/bpsaa/index.yaml b/src/projects/bpsaa/index.yaml index 17df5355..00112688 100644 --- a/src/projects/bpsaa/index.yaml +++ b/src/projects/bpsaa/index.yaml @@ -1,6 +1,9 @@ name: BPSAA -categories: [ alliances ] -description: 'The Blockchain Privacy, Security & Adoption Alliance educates the public on privacy, security, and decentralization.' +categories: [social-and-communications] +description: "The Blockchain Privacy, Security & Adoption Alliance educates the public on privacy, security, and decentralization." links: web: https://bpsaa.vision twitter: https://twitter.com/BPSAA_Official + +usecases: + - alliances diff --git a/src/projects/brace/index.yaml b/src/projects/brace/index.yaml index 4074c258..722f38f1 100644 --- a/src/projects/brace/index.yaml +++ b/src/projects/brace/index.yaml @@ -1,7 +1,7 @@ name: Brace.to categories: - - dapps -description: 'Save links to everything and visit them later easily, anytime, on any device, with Web3 technology that empowers you to truly own your account and data.' + - applications +description: "Save links to everything and visit them later easily, anytime, on any device, with Web3 technology that empowers you to truly own your account and data." links: web: https://brace.to github: https://github.com/stxapps/brace-client @@ -9,3 +9,6 @@ links: twitter: https://x.com/bracedotto project_status: live_status: true + +usecases: + - dapps diff --git a/src/projects/brave-wallet/index.yaml b/src/projects/brave-wallet/index.yaml index cbf6b4f0..67211eb4 100644 --- a/src/projects/brave-wallet/index.yaml +++ b/src/projects/brave-wallet/index.yaml @@ -1,7 +1,7 @@ name: Brave Wallet -categories: [ wallets ] -description: 'The secure multi-chain crypto wallet' -ecosystem: multichain +categories: [applications] +description: "The secure multi-chain crypto wallet" +ecosystem: [multichain] links: web: https://brave.com/wallet/ github: https://github.com/brave/brave-wallet-docs @@ -13,6 +13,9 @@ team: link: https://brave.com/about/ project_status: live_status: true - version: + version: "" testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/brave/index.yaml b/src/projects/brave/index.yaml index bb3d9916..b1ecfaea 100644 --- a/src/projects/brave/index.yaml +++ b/src/projects/brave/index.yaml @@ -1,9 +1,12 @@ name: Brave -categories: [ browser ] -description: 'Browse privately. Search privately. And ditch Big Tech' +categories: [applications] +description: "Browse privately. Search privately. And ditch Big Tech" links: web: http://brave.com github: https://github.com/brave/brave-browser blog: https://brave.com/blog/ twitter: https://twitter.com/brave facebook: https://www.facebook.com/BraveSoftware/ + +usecases: + - browser diff --git a/src/projects/brightid/index.yaml b/src/projects/brightid/index.yaml index c6353732..5743177c 100644 --- a/src/projects/brightid/index.yaml +++ b/src/projects/brightid/index.yaml @@ -1,6 +1,6 @@ name: BrightID -categories: [ did ] -description: 'A social identity network that allows you to prove that you’re only using one account. It’s the holy grail of digital identity' +categories: [applications] +description: "A social identity network that allows you to prove that you’re only using one account. It’s the holy grail of digital identity" links: web: https://www.brightid.org github: https://github.com/BrightID @@ -11,3 +11,6 @@ links: twitter: https://x.com/BrightIDProject discord: https://discord.com/invite/brightid-596752664906432522 have_token: true + +usecases: + - did diff --git a/src/projects/bringing-privacy-to-ens/index.yaml b/src/projects/bringing-privacy-to-ens/index.yaml index 1c5c6012..4cf41c4c 100644 --- a/src/projects/bringing-privacy-to-ens/index.yaml +++ b/src/projects/bringing-privacy-to-ens/index.yaml @@ -1,6 +1,9 @@ name: Bringing Privacy to ENS -categories: [ dapps ] -description: 'ChainSafe’s Proposed Integration Using Aztec Network' +categories: [applications] +description: "ChainSafe’s Proposed Integration Using Aztec Network" links: web: https://www.cerebrum.com github: https://github.com/ChainSafe/ens-aztec-privacy/ + +usecases: + - dapps diff --git a/src/projects/brume-wallet/index.yaml b/src/projects/brume-wallet/index.yaml index 26447103..cd0ec530 100644 --- a/src/projects/brume-wallet/index.yaml +++ b/src/projects/brume-wallet/index.yaml @@ -1,7 +1,7 @@ name: Brume wallet -categories: [ wallets ] -ecosystem: Ethereum -description: 'Tor based wallet for Ethereum' +categories: [applications] +ecosystem: [ethereum] +description: "Tor based wallet for Ethereum" project_type: Wallets product_launch_day: "2022-11-13" technology: @@ -18,9 +18,6 @@ links: blockchain_features: p2p: true encryption: Tor - upgradability: - enabled: true - type: centralized opensource: true frontend_anonymity: Tor identity_integration: Profiles @@ -45,10 +42,10 @@ third_party_dependency: false compliance: compliant history: - title: Hackaton - event_type: Hackaton - description: Hackaton project - time: Nov 13, 2022 + - title: Hackaton + event_type: Hackaton + description: Hackaton project + time: Nov 13, 2022 default_privacy: true project_status: @@ -56,3 +53,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - wallets diff --git a/src/projects/buildoor/index.yaml b/src/projects/buildoor/index.yaml index 18457949..238ddd71 100644 --- a/src/projects/buildoor/index.yaml +++ b/src/projects/buildoor/index.yaml @@ -1,6 +1,6 @@ name: Buildoor -categories: [ dapps ] -description: 'Privacy Focused Analytics' +categories: [applications] +description: "Privacy Focused Analytics" links: web: https://buildoor.xyz docs: https://docs.buildoor.xyz/untitled @@ -8,3 +8,6 @@ links: blog: https://mirror.xyz/0xA19B625EdFB67422EE984712f6DF8d3625E64e61 twitter: https://x.com/buildoorxyz discord: https://discord.com/invite/3hcjSGmEWD + +usecases: + - dapps diff --git a/src/projects/burstiq/index.yaml b/src/projects/burstiq/index.yaml index b9e90bd6..fd312d2b 100644 --- a/src/projects/burstiq/index.yaml +++ b/src/projects/burstiq/index.yaml @@ -1,13 +1,15 @@ name: burstIQ -categories: [ infrastructure ] -description: 'Fuel your digital-first strategy with human health data' +categories: [infrastructure] +description: "Fuel your digital-first strategy with human health data" team: - - name: Frank Ricotta - role: CEO - - name: Brian Jackson - role: COO - - name: Tyson Henry - role: CTO + anonymous: false + teammembers: + - name: Frank Ricotta + role: CEO + - name: Brian Jackson + role: COO + - name: Tyson Henry + role: CTO links: web: https://burstiq.com twitter: https://twitter.com/BurstIQ @@ -16,6 +18,8 @@ tokens: - symbol: BIQ project_status: live_status: false - version: false testnet: false mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/burstlq/index.yaml b/src/projects/burstlq/index.yaml deleted file mode 100644 index e69de29b..00000000 diff --git a/src/projects/cake-wallet/index.yaml b/src/projects/cake-wallet/index.yaml index b8f10140..9925b044 100644 --- a/src/projects/cake-wallet/index.yaml +++ b/src/projects/cake-wallet/index.yaml @@ -1,15 +1,18 @@ name: Cake Wallet -categories: [ wallets ] -description: 'Cake Wallet allows you to safely store, send, receive, and exchange your XMR, BTC, LTC, and XHV and exchange other currencies' -ecosystem: Monero +categories: [applications] +description: "Cake Wallet allows you to safely store, send, receive, and exchange your XMR, BTC, LTC, and XHV and exchange other currencies" +ecosystem: [monero] links: web: https://monero.com/wallets github: https://github.com/cake-tech/cake_wallet docs: https://guides.cakewallet.com/ project_status: live_status: true - version: + version: "" testnet: false mainnet: false team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/calamari-network/index.yaml b/src/projects/calamari-network/index.yaml index a721f095..f2b820c0 100644 --- a/src/projects/calamari-network/index.yaml +++ b/src/projects/calamari-network/index.yaml @@ -1,8 +1,8 @@ name: Calamari network categories: - infrastructure -description: 'Manta Network canary net, is the plug-and-play privacy-preservation parachain built to serve the Kusama world' -team: +description: "Manta Network canary net, is the plug-and-play privacy-preservation parachain built to serve the Kusama world" +team: anonymous: true links: web: https://calamari.network @@ -16,3 +16,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/calimero-network/index.yaml b/src/projects/calimero-network/index.yaml index 58f93b85..1c8e5d3e 100644 --- a/src/projects/calimero-network/index.yaml +++ b/src/projects/calimero-network/index.yaml @@ -1,7 +1,7 @@ name: Calimero network categories: - infrastructure -description: 'Calimero Network is a decentralized peer-to-peer protocol for building self-sovereign networks of applications and sharing data in a completely secure and private way' +description: "Calimero Network is a decentralized peer-to-peer protocol for building self-sovereign networks of applications and sharing data in a completely secure and private way" team: anonymous: true links: @@ -10,6 +10,9 @@ links: twitter: https://twitter.com/CalimeroNetwork project_status: live_status: false - version: false + version: "" testnet: false mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/calyxos/index.yaml b/src/projects/calyxos/index.yaml index 5816197e..f5f3f72b 100644 --- a/src/projects/calyxos/index.yaml +++ b/src/projects/calyxos/index.yaml @@ -1,7 +1,7 @@ name: CalyxOS categories: - - os -description: 'Android mobile operating system that puts privacy and security into the hands of everyday users' + - applications +description: "Android mobile operating system that puts privacy and security into the hands of everyday users" team: anonymous: true links: @@ -14,3 +14,6 @@ project_status: version: 5.7.1 testnet: false mainnet: true + +usecases: + - operation-systems diff --git a/src/projects/cape/index.yaml b/src/projects/cape/index.yaml index 4f2481a5..c23f24b5 100644 --- a/src/projects/cape/index.yaml +++ b/src/projects/cape/index.yaml @@ -1,7 +1,7 @@ name: CAPE categories: [defi] -ecosystem: Ethereum -description: 'Configurable Asset Privacy for Ethereum' +ecosystem: [ethereum] +description: "Configurable Asset Privacy for Ethereum" links: web: https://app.firn.cash/ github: https://github.com/EspressoSystems/cape @@ -12,4 +12,5 @@ project_status: team: anonymous: true - +usecases: + - defi diff --git a/src/projects/carbon-browser/index.yaml b/src/projects/carbon-browser/index.yaml index d5e8dbe3..5b9661c8 100644 --- a/src/projects/carbon-browser/index.yaml +++ b/src/projects/carbon-browser/index.yaml @@ -1,10 +1,13 @@ name: Carbon Browser categories: - - browser -description: 'The Fastest Web 3 Browser. AdBlock + 100% Privacy' + - applications +description: "The Fastest Web 3 Browser. AdBlock + 100% Privacy" links: web: https://carbon.website github: https://github.com/Carbon-Browser whitepapaer: https://carbon.website/whitepaper/ twitter: https://twitter.com/trycarbonio telegram: https://t.me/trycarbonio + +usecases: + - browser diff --git a/src/projects/cerebrum/index.yaml b/src/projects/cerebrum/index.yaml index c514a1c4..0b106f65 100644 --- a/src/projects/cerebrum/index.yaml +++ b/src/projects/cerebrum/index.yaml @@ -1,7 +1,7 @@ name: Cerebrum categories: - - did -description: 'Ensure everyone in your organization is credentialed and compliant with Cerebrum verifiable data technology and vID ecosystem' + - applications +description: "Ensure everyone in your organization is credentialed and compliant with Cerebrum verifiable data technology and vID ecosystem" links: web: https://www.cerebrum.com github: https://github.com/cerebruminc @@ -9,3 +9,6 @@ links: blog: https://blog.cerebrum.com/ twitter: https://x.com/cerebruminc have_token: true + +usecases: + - did diff --git a/src/projects/certup/index.yaml b/src/projects/certup/index.yaml index 002afd1c..51f44222 100644 --- a/src/projects/certup/index.yaml +++ b/src/projects/certup/index.yaml @@ -1,7 +1,7 @@ name: certUP categories: - - nft -description: 'SecretNFT Certificates revolutionizing official document distribution, verification, and publication' + - applications +description: "SecretNFT Certificates revolutionizing official document distribution, verification, and publication" links: web: https://certup.net github: https://github.com/CertUP @@ -14,3 +14,6 @@ project_status: mainnet: true have_token: false sunset: false + +usecases: + - nft-community diff --git a/src/projects/cheqd/index.yaml b/src/projects/cheqd/index.yaml index 29e766ad..4e7b2ae8 100644 --- a/src/projects/cheqd/index.yaml +++ b/src/projects/cheqd/index.yaml @@ -1,7 +1,7 @@ name: CheqD categories: - - dapps -description: 'A secure network that enables individuals and organizations to fully control their personal data. It allows self-sovereign identity (SSI) companies to build and deliver secure solutions to you' + - applications +description: "A secure network that enables individuals and organizations to fully control their personal data. It allows self-sovereign identity (SSI) companies to build and deliver secure solutions to you" links: web: https://cheqd.io github: https://github.com/cheqd @@ -12,3 +12,6 @@ links: twitter: https://x.com/cheqd_io discord: https://discord.com/invite/4VZszdE7HH telegram: https://t.me/cheqd + +usecases: + - dapps diff --git a/src/projects/chimp-exchange/index.yaml b/src/projects/chimp-exchange/index.yaml index 892f58c8..7bfc9ba3 100644 --- a/src/projects/chimp-exchange/index.yaml +++ b/src/projects/chimp-exchange/index.yaml @@ -1,9 +1,9 @@ name: ChimpExchange -categories: [ defi ] -ecosystem: [ Ten ] +categories: [defi] +ecosystem: [ten] project_type: DeFi -description: 'Fully encrypted DEX' +description: "Fully encrypted DEX" team: anonymous: true @@ -19,4 +19,7 @@ project_status: live_status: true version: Testnet testnet: true - mainnet: false \ No newline at end of file + mainnet: false + +usecases: + - defi diff --git a/src/projects/cia-protocol/index.yaml b/src/projects/cia-protocol/index.yaml index fb0ce692..a3fefce9 100644 --- a/src/projects/cia-protocol/index.yaml +++ b/src/projects/cia-protocol/index.yaml @@ -1,2 +1,5 @@ name: CIA protocol categories: [defi] + +usecases: + - defi diff --git a/src/projects/cirus-foundation/index.yaml b/src/projects/cirus-foundation/index.yaml index c5463c97..2ea1e642 100644 --- a/src/projects/cirus-foundation/index.yaml +++ b/src/projects/cirus-foundation/index.yaml @@ -1,9 +1,12 @@ name: Cirus foundation categories: - - data-management -description: 'With your permission, Cirus makes earning from your data easy' + - applications +description: "With your permission, Cirus makes earning from your data easy" links: web: https://cirusfoundation.com/your-data/ twitter: https://x.com/cirusfoundation discord: https://discord.com/invite/Vbawz2j7AW blog: https://medium.com/the-cirus-foundation + +usecases: + - data-management diff --git a/src/projects/cog/index.yaml b/src/projects/cog/index.yaml index 505c18a4..4755498d 100644 --- a/src/projects/cog/index.yaml +++ b/src/projects/cog/index.yaml @@ -1,8 +1,11 @@ name: COG categories: - - currency -description: 'A new private digital currency that leverages the power of Web3 and DeFi without compromising the privacy and security of its users' + - defi +description: "A new private digital currency that leverages the power of Web3 and DeFi without compromising the privacy and security of its users" links: web: https://cogfi.org team: anonymous: false + +usecases: + - currency diff --git a/src/projects/coinbook/index.yaml b/src/projects/coinbook/index.yaml index 2043e2a8..a9b6fdb4 100644 --- a/src/projects/coinbook/index.yaml +++ b/src/projects/coinbook/index.yaml @@ -1,2 +1,5 @@ name: CoinBook -categories: [ defi ] +categories: [defi] + +usecases: + - defi diff --git a/src/projects/coinomize/index.yaml b/src/projects/coinomize/index.yaml index 4eba1531..947cb6f6 100644 --- a/src/projects/coinomize/index.yaml +++ b/src/projects/coinomize/index.yaml @@ -1,7 +1,10 @@ name: Coinomize categories: - - mixing-service -description: 'Coinomize helps you protect your privacy and identity and mix your Bitcoins (CoinJoin) easily and cheaply without storing any logs from you' + - applications +description: "Coinomize helps you protect your privacy and identity and mix your Bitcoins (CoinJoin) easily and cheaply without storing any logs from you" links: web: https://coinomize.biz blog: https://coinomize.biz/blog + +usecases: + - mixing-service diff --git a/src/projects/coinshuffle/index.yaml b/src/projects/coinshuffle/index.yaml index d4ae8afe..cf0035dd 100644 --- a/src/projects/coinshuffle/index.yaml +++ b/src/projects/coinshuffle/index.yaml @@ -1,6 +1,9 @@ name: CoinShuffle++ categories: - - mixing-service -description: 'CoinShuffle++ (CSPP) is a mixing protocol used to create Decred CoinJoin transactions' + - applications +description: "CoinShuffle++ (CSPP) is a mixing protocol used to create Decred CoinJoin transactions" links: web: https://github.com/decred/cspp + +usecases: + - mixing-service diff --git a/src/projects/colossusxt/index.yaml b/src/projects/colossusxt/index.yaml index 02d7f321..757f5506 100644 --- a/src/projects/colossusxt/index.yaml +++ b/src/projects/colossusxt/index.yaml @@ -1,9 +1,9 @@ name: ColossusXT categories: - - currency -description: 'A community-orientated, energy efficient coin with a strong focus on decentralization, privacy, and real-world implementation' -ecosystem: ColossusXT -project_status: + - defi +description: "A community-orientated, energy efficient coin with a strong focus on decentralization, privacy, and real-world implementation" +ecosystem: [colossusxt] +project_status: live_status: true version: Mainnet testnet: true @@ -20,3 +20,6 @@ links: telegram: https://t.me/colossuscoin team: anonymous: false + +usecases: + - currency diff --git a/src/projects/comit-network/index.yaml b/src/projects/comit-network/index.yaml index d84a81c4..7977ba08 100644 --- a/src/projects/comit-network/index.yaml +++ b/src/projects/comit-network/index.yaml @@ -1,7 +1,7 @@ name: Comit Network categories: - infrastructure -description: 'COMIT is an open protocol facilitating trustless cross-blockchain applications, connecting all blockchains without adding yet another. Working on BTC-XMR atomic swaps as well as various libraries and clients' +description: "COMIT is an open protocol facilitating trustless cross-blockchain applications, connecting all blockchains without adding yet another. Working on BTC-XMR atomic swaps as well as various libraries and clients" team: anonymous: true links: @@ -10,7 +10,9 @@ links: blog: https://comit.network/blog/ project_status: live_status: false - version: false + version: "" testnet: false mainnet: false - + +usecases: + - infrastructure diff --git a/src/projects/common/index.yaml b/src/projects/common/index.yaml index 1e152f03..35365447 100644 --- a/src/projects/common/index.yaml +++ b/src/projects/common/index.yaml @@ -1,2 +1,5 @@ name: Common categories: [defi] + +usecases: + - defi diff --git a/src/projects/conceal-network/index.yaml b/src/projects/conceal-network/index.yaml index 763550a1..07225337 100644 --- a/src/projects/conceal-network/index.yaml +++ b/src/projects/conceal-network/index.yaml @@ -1,2 +1,5 @@ name: Conceal Network categories: [defi] + +usecases: + - defi diff --git a/src/projects/concordium/index.yaml b/src/projects/concordium/index.yaml index 42272baf..96509fd1 100644 --- a/src/projects/concordium/index.yaml +++ b/src/projects/concordium/index.yaml @@ -1,16 +1,18 @@ name: Concordium categories: - infrastructure -description: 'A compliance ready blockchain backed by science that enables private and public transactions' +description: "A compliance ready blockchain backed by science that enables private and public transactions" team: -- name: Lars Seier Christensen - roles: Chairman -- name: Nibras Stiebar-Bang - roles: CTO & CPO -- name: Jonas Stiebar-Bang - roles: CCO -- name: Jørgen Hauglund - roles: CFO + anonymous: false + teammembers: + - name: Lars Seier Christensen + roles: Chairman + - name: Nibras Stiebar-Bang + roles: CTO & CPO + - name: Jonas Stiebar-Bang + roles: CCO + - name: Jørgen Hauglund + roles: CFO links: web: https://concordium.com github: https://github.com/Concordium @@ -20,6 +22,9 @@ tokens: - symbol: CCD project_status: live_status: true - version: false + version: "" testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/cool-wallet/index.yaml b/src/projects/cool-wallet/index.yaml index d9b446be..7f7a086f 100644 --- a/src/projects/cool-wallet/index.yaml +++ b/src/projects/cool-wallet/index.yaml @@ -1,7 +1,7 @@ name: Cool Wallet categories: - - wallets -description: 'Non-custodial wallet' + - applications +description: "Non-custodial wallet" team: anonymous: false teammembers: @@ -15,7 +15,8 @@ links: twitter: https://twitter.com/coolwallet project_status: live_status: true - version: testnet: false mainnet: false - + +usecases: + - wallets diff --git a/src/projects/crust/index.yaml b/src/projects/crust/index.yaml index 35807101..0a770cf1 100644 --- a/src/projects/crust/index.yaml +++ b/src/projects/crust/index.yaml @@ -1,8 +1,8 @@ name: Crust categories: - - storage -ecosystem: Polkadot -description: 'Crust provides a decentralized storage network of Web3 ecosystem. It supports multiple storage layer protocols such as IPFS, and exposes storage interfaces to application layer.' + - applications +ecosystem: [polkadot] +description: "Crust provides a decentralized storage network of Web3 ecosystem. It supports multiple storage layer protocols such as IPFS, and exposes storage interfaces to application layer." team: anonymous: true links: @@ -19,3 +19,6 @@ project_status: version: Release 6 testnet: true mainnet: true + +usecases: + - storage diff --git a/src/projects/crypviser-secure-messenger/index.yaml b/src/projects/crypviser-secure-messenger/index.yaml index 883ba859..0ecfde17 100644 --- a/src/projects/crypviser-secure-messenger/index.yaml +++ b/src/projects/crypviser-secure-messenger/index.yaml @@ -1,12 +1,14 @@ name: Crypviser Secure Messenger categories: - - messaging -description: 'The most private messaging app, based on Blockchain technology' + - social-and-communications +description: "The most private messaging app, based on Blockchain technology" team: - - name: Vadim Andryan - role: Managing Director - - name: Waldemar Konradi - role: Managing Director + anonymous: false + teammembers: + - name: Vadim Andryan + role: Managing Director + - name: Waldemar Konradi + role: Managing Director links: web: https://crypviser.network/ whitepaper: https://crypviser.network/CrypViser_Whitepaper.pdf @@ -21,3 +23,6 @@ project_status: version: mainnet testnet: false mainnet: true + +usecases: + - messaging diff --git a/src/projects/cultdao/index.yaml b/src/projects/cultdao/index.yaml index aa1c0c38..d1fc62ae 100644 --- a/src/projects/cultdao/index.yaml +++ b/src/projects/cultdao/index.yaml @@ -1,7 +1,7 @@ name: CULT DAO -categories: [ dao ] -assets_used: [ CULT ] -ecosystem: [ Ethereum ] +categories: [applications] +assets_used: [CULT] +ecosystem: [ethereum] description: Investment DAO that fight against centralization and further decentralization product_readiness: live @@ -43,10 +43,12 @@ links: discord: https://discord.gg/cultdao telegram: https://t.me/cultdaothemany - # SECURITY --------------------------------------------------------------------- audits: - name: Solidproof Audit link: https://github.com/solidproof/smart-contract-audits/blob/main/SmartContract_Audit_Solidproof_CultDAO.pdf time: "2022-11-11" + +usecases: + - dao diff --git a/src/projects/cyclone/index.yaml b/src/projects/cyclone/index.yaml index e5f0a010..e964a782 100644 --- a/src/projects/cyclone/index.yaml +++ b/src/projects/cyclone/index.yaml @@ -1,7 +1,7 @@ name: Cyclone categories: - - mixing-service -description: 'Cyclone is a protocol that applies zkSNARKs to enable transactional privacy by breaking the on-chain link between depositor and recipient addresses.' + - applications +description: "Cyclone is a protocol that applies zkSNARKs to enable transactional privacy by breaking the on-chain link between depositor and recipient addresses." team: anonymous: true product_readiness: live @@ -26,3 +26,5 @@ audits: link: https://4040024839-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MNeAQGL5skC11vu82Sy%2F-MY3RBSlDMhVlkrMsx5Y%2F-MY3RKd1R4T7nq41E4hA%2FSmart%20Contract%20Security%20Audit%20Report%20-%20Cyclone.pdf?alt=media&token=339e5433-2dac-4022-8310-5a87ad0f9b09 time: April, 2021 +usecases: + - mixing-service diff --git a/src/projects/damus/index.yaml b/src/projects/damus/index.yaml index f26c818c..347d222f 100644 --- a/src/projects/damus/index.yaml +++ b/src/projects/damus/index.yaml @@ -1,9 +1,12 @@ name: Damus categories: - - dapps + - applications description: Nostr client for the social network you control. links: web: https://damus.io github: https://github.com/damus-io twitter: https://x.com/damusapp + +usecases: + - dapps diff --git a/src/projects/dappnode/index.yaml b/src/projects/dappnode/index.yaml index fdd5c000..0beba03d 100644 --- a/src/projects/dappnode/index.yaml +++ b/src/projects/dappnode/index.yaml @@ -1,8 +1,8 @@ name: DappNode categories: - hardware -description: 'Easy to use hardware and software solution for running Ethereum and other kind of nodes, staking, IPFS, etc' -ecosystem: multichain +description: "Easy to use hardware and software solution for running Ethereum and other kind of nodes, staking, IPFS, etc" +ecosystem: [multichain] links: web: https://dappnode.io/ github: https://github.com/dappnode @@ -15,3 +15,6 @@ team: anonymous: false company: link: https://dappnode.com/pages/about + +usecases: + - hardware diff --git a/src/projects/darkfi/index.yaml b/src/projects/darkfi/index.yaml index 682be004..2b08b6b2 100644 --- a/src/projects/darkfi/index.yaml +++ b/src/projects/darkfi/index.yaml @@ -1,7 +1,7 @@ name: DarkFi categories: - infrastructure -description: 'DarkFi is a new Layer 1 blockchain, designed with anonymity at the forefront. It offers flexible private primitives that can be wielded to create any kind of application' +description: "DarkFi is a new Layer 1 blockchain, designed with anonymity at the forefront. It offers flexible private primitives that can be wielded to create any kind of application" links: web: https://dark.fi github: https://github.com/darkrenaissance/darkfi @@ -12,3 +12,6 @@ project_status: version: Testnet V.1 testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/dauth-network/index.yaml b/src/projects/dauth-network/index.yaml index 577bd68a..464ec3ed 100644 --- a/src/projects/dauth-network/index.yaml +++ b/src/projects/dauth-network/index.yaml @@ -1,7 +1,7 @@ name: DAuth Network categories: - - did -description: 'a decentralized authentication network empowering wallets and dApps to create authentication with a focus on privacy' + - applications +description: "a decentralized authentication network empowering wallets and dApps to create authentication with a focus on privacy" links: web: https://www.dauth.network github: https://github.com/DAuth-Network @@ -11,3 +11,6 @@ links: twitter: https://x.com/DauthNetwork discord: https://discord.com/invite/ZJZjAAej2q have_token: true + +usecases: + - did diff --git a/src/projects/decentr/index.yaml b/src/projects/decentr/index.yaml index 969464f2..184699ae 100644 --- a/src/projects/decentr/index.yaml +++ b/src/projects/decentr/index.yaml @@ -1,7 +1,7 @@ name: Decentr categories: - - browser -description: 'Creating a bridge between internet users and applications developed with distributed ledger technology, an open source platform, which enables you to manage and pay with your Personal Data Value' + - applications +description: "Creating a bridge between internet users and applications developed with distributed ledger technology, an open source platform, which enables you to manage and pay with your Personal Data Value" links: web: https://decentr.net github: https://github.com/Decentr-net @@ -10,3 +10,6 @@ links: twitter: https://x.com/decentrnet discord: https://discord.com/invite/VMUt7yw92B telegram: https://t.me/DecentrNet + +usecases: + - browser diff --git a/src/projects/decred/index.yaml b/src/projects/decred/index.yaml index 27141b9b..c133e423 100644 --- a/src/projects/decred/index.yaml +++ b/src/projects/decred/index.yaml @@ -1,8 +1,8 @@ name: Decred categories: - - currency -description: 'A blockchain-based cryptocurrency with a strong focus on community input, open governance, and sustainable funding for development' -ecosystem: Lighting Network + - defi +description: "A blockchain-based cryptocurrency with a strong focus on community input, open governance, and sustainable funding for development" +ecosystem: [lighting-network] links: web: https://decred.org github: https://docs.decred.org @@ -15,3 +15,6 @@ links: telegram: https://t.me/Decred team: anonymous: false + +usecases: + - currency diff --git a/src/projects/deeper-network/index.yaml b/src/projects/deeper-network/index.yaml index d1b4591a..507bacb9 100644 --- a/src/projects/deeper-network/index.yaml +++ b/src/projects/deeper-network/index.yaml @@ -2,7 +2,8 @@ name: Deeper Network categories: - hardware description: Web 3.0 infrastructure of the users, by the users, for the users. -project_status: Mainnet +project_status: + version: Mainet links: web: https://www.deeper.network blog: https://shop.deeper.network/pages/blog @@ -12,3 +13,6 @@ links: telegram: https://t.me/DeeperNetwork team: anonymous: true + +usecases: + - hardware diff --git a/src/projects/deeponion/index.yaml b/src/projects/deeponion/index.yaml index 0ed64923..e63928b3 100644 --- a/src/projects/deeponion/index.yaml +++ b/src/projects/deeponion/index.yaml @@ -1,61 +1,51 @@ #PROJECT DESCRIPTION ------------------------------------------------------------- name: DeepOnion -categories: currency -assets_used: ZK-Snarks, TOR Network -ecosystem: DeepOnion Network +categories: [applications] +assets_used: ["ZK-SNARKS", "TOR-NETWORK"] +ecosystem: [deeponion-network] project_type: Hybrid cryptocurrency description: DeepOnion (ONION) is a decentralized, open-source, community-driven cryptocurrency that offers multi-layered privacy and everyday use cases. It uses an x13 hybrid PoW/PoS to secure the network. DeepOnion is one of the earliest cryptos to integrate the Tor network into the wallet, which has not leaked any IP addresses since its release on 12 July 2017. product_readiness: Mainnet -product_launch_day: 2017-07-12 +product_launch_day: "2017-07-12" -have_token: Yes -token_link: +have_token: true tokens: - name: DeepOnion symbol: ONION network: DeepOnion Network - contract_address: -fee: 0.0001 ONION/kB + fee: 0.0001 ONION/kB team: - anonymous: Yes + anonymous: true teammembers: - - name: Deeper - role: Marketing Manager - link: https://deeponion.org/community/members/deeper.2/ - - name: Monocolor - role: Lead Blockchain Developer - link: https://deeponion.org/community/members/monocolor.207/ - - name: Nezero - role: Blockchain Developer - link: https://deeponion.org/community/members/nezero.1858/ - - name: Obszoenling - role: Blockchain Developer - link: https://deeponion.org/community/members/obszoenling.414/ - - name: Impressive - role: Web Developer - link: https://deeponion.org/community/members/impressive.2278/ - - name: DogLover - role: Web Developer - link: https://deeponion.org/community/members/doglover.2258/ + - name: Deeper + role: Marketing Manager + link: https://deeponion.org/community/members/deeper.2/ + - name: Monocolor + role: Lead Blockchain Developer + link: https://deeponion.org/community/members/monocolor.207/ + - name: Nezero + role: Blockchain Developer + link: https://deeponion.org/community/members/nezero.1858/ + - name: Obszoenling + role: Blockchain Developer + link: https://deeponion.org/community/members/obszoenling.414/ + - name: Impressive + role: Web Developer + link: https://deeponion.org/community/members/impressive.2278/ + - name: DogLover + role: Web Developer + link: https://deeponion.org/community/members/doglover.2258/ funding: - - name: Community Contributions - type: Community Support - link: https://deeponion.org/community - value: Not applicable - time: Ongoing - -history: - title: - event_type: - description: - time: - link: - -sunset: No + name: Community Contributions + type: Community Support + link: https://deeponion.org/community + value: Not applicable + time: Ongoing +sunset: false # LINKS --------------------------------------------------------------------- links: @@ -75,76 +65,56 @@ links: education: https://deeponion.org/#academy - # TECHNOLOGY --------------------------------------------------------------------- technology: type: x13 PoW & PoS features: - - Private wallet - - Hybrid - PoW & PoS - - ZK-Snarks for privacy - - TOR Network integration - - DeepSend for transaction masking - - DeepVault for file verification - - DeepProtocol for encrypted messaging - - DeepOnionJ for Java integration - - VoteCentral for community governance + - Private wallet + - Hybrid - PoW & PoS + - ZK-Snarks for privacy + - TOR Network integration + - DeepSend for transaction masking + - DeepVault for file verification + - DeepProtocol for encrypted messaging + - DeepOnionJ for Java integration + - VoteCentral for community governance blockchain_features: encryption: zksnark - opensource: Yes - identity_integration: None - p2p: Yes + opensource: true data_masking: DeepSend - viewing_key: No - dissapearing_tx: No - connected_tx: No frontend_anonymity: TOR addresses asset_custody_type: non-custodial project_status: - live_status: Yes + live_status: true version: V2.3.3 - testnet: No - mainnet: Yes + testnet: false + mainnet: true - client_diversability: + client_diversability: name: DeepOnion Wallet link: https://deeponion.org/#download - -# PRIVACY --------------------------------------------------------------------- +# PRIVACY --------------------------------------------------------------------- licences: General Public License - + privacy_policy: - defined: Yes + defined: true link: https://deeponion.org/privacypolicy.html data_usage: Not using - + traceability: - tracked_data: None - kyc: No + kyc: false sign_in_type_requirements: wallet - + compliance: none storage: - decentralized: Yes + decentralized: true - - # SECURITY --------------------------------------------------------------------- -third_party_dependency: None + # SECURITY --------------------------------------------------------------------- +third_party_dependency: false social_trust: DeepOnion uses a multisig system for governance decisions and has a DAO for community voting. -technical_spof: None -upgradability: - - enabled: Yes - - type: DAO Governance - - admin_keys: Not defined - -audits: - - name: - company: - logo: - link: - time: +usecases: [currency] diff --git a/src/projects/definer/index.yaml b/src/projects/definer/index.yaml index 804dd349..83df627a 100644 --- a/src/projects/definer/index.yaml +++ b/src/projects/definer/index.yaml @@ -1,2 +1,5 @@ name: DeFiner categories: [defi] + +usecases: + - defi diff --git a/src/projects/demox-labs/index.yaml b/src/projects/demox-labs/index.yaml index 42de0003..cfe1ffeb 100644 --- a/src/projects/demox-labs/index.yaml +++ b/src/projects/demox-labs/index.yaml @@ -1,7 +1,7 @@ name: Demox labs categories: - - rd -description: 'Building privacy preserving ZK infrastructure on Aleo' + - infrastructure +description: "Building privacy preserving ZK infrastructure on Aleo" team: anonymous: false teammembers: @@ -11,3 +11,6 @@ team: links: web: https://www.demoxlabs.xyz twitter: https://x.com/DemoxLabs + +usecases: + - research-and-development diff --git a/src/projects/dero/index.yaml b/src/projects/dero/index.yaml index 096bf7d0..cf55c9f2 100644 --- a/src/projects/dero/index.yaml +++ b/src/projects/dero/index.yaml @@ -1,7 +1,7 @@ name: Dero categories: - infrastructure -description: 'A general purpose, private, and scalable decentralized application platform that allows developers to deploy powerful and unstoppable applications, while users retain total control over their assets with complete privacy' +description: "A general purpose, private, and scalable decentralized application platform that allows developers to deploy powerful and unstoppable applications, while users retain total control over their assets with complete privacy" links: web: https://dero.io github: https://github.com/deroproject/derohe/ @@ -16,3 +16,6 @@ project_status: version: Mainnet v1 testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/derp/index.yaml b/src/projects/derp/index.yaml index ff80875b..03662af3 100644 --- a/src/projects/derp/index.yaml +++ b/src/projects/derp/index.yaml @@ -1,7 +1,10 @@ name: DERP categories: - - rpc -description: 'DERP is an RPC endpoint you can add to your wallet to visualize data leaked by your wallet in communication with the blockchain' + - infrastructure +description: "DERP is an RPC endpoint you can add to your wallet to visualize data leaked by your wallet in communication with the blockchain" links: web: https://derp.hoprnet.org/ github: https://github.com/hoprnet/derp + +usecases: + - rpc-provider diff --git a/src/projects/discreet-labs/index.yaml b/src/projects/discreet-labs/index.yaml index fab6ac37..ed3b60cc 100644 --- a/src/projects/discreet-labs/index.yaml +++ b/src/projects/discreet-labs/index.yaml @@ -1,7 +1,7 @@ name: Discreet Labs categories: - - rd -description: 'Build blockchain systems for a more private, self-sovereign future on Fidora' + - infrastructure +description: "Build blockchain systems for a more private, self-sovereign future on Fidora" team: anonymous: false teammembers: @@ -14,3 +14,6 @@ team: links: web: https://discreetlabs.io twitter: https://x.com/discreet_labs + +usecases: + - research-and-development diff --git a/src/projects/discreet/index.yaml b/src/projects/discreet/index.yaml index f35534dc..2bbdf93a 100644 --- a/src/projects/discreet/index.yaml +++ b/src/projects/discreet/index.yaml @@ -1,9 +1,9 @@ name: Discreet categories: - - currency -description: 'A game-changing cryptocurrency with a sharp focus on total privacy and blistering speed' -ecosystem: Discreet Compute Network -project_status: + - defi +description: "A game-changing cryptocurrency with a sharp focus on total privacy and blistering speed" +ecosystem: [discreet-compute-network] +project_status: live_status: true version: Testnet testnet: true @@ -17,3 +17,6 @@ links: telegram: https://t.me/discreetnetwork team: anonymous: false + +usecases: + - currency diff --git a/src/projects/diva/index.yaml b/src/projects/diva/index.yaml index aae87c9a..8a205f19 100644 --- a/src/projects/diva/index.yaml +++ b/src/projects/diva/index.yaml @@ -1,2 +1,5 @@ name: Diva categories: [defi] + +usecases: + - defi diff --git a/src/projects/divestos/index.yaml b/src/projects/divestos/index.yaml index 5c5125d4..0cb0b30f 100644 --- a/src/projects/divestos/index.yaml +++ b/src/projects/divestos/index.yaml @@ -1,7 +1,7 @@ name: DivestOS categories: - - os -description: 'A fork of LineageOS with monthly updates, automated CVE patchings, system WebView, and more' + - applications +description: "A fork of LineageOS with monthly updates, automated CVE patchings, system WebView, and more" team: anonymous: true links: @@ -9,6 +9,9 @@ links: github: https://github.com/Divested-Mobile/DivestOS-Build project_status: live_status: true - version: 20.0 + version: "20.0" testnet: false mainnet: true + +usecases: + - operation-systems diff --git a/src/projects/djib/index.yaml b/src/projects/djib/index.yaml index ef84fb77..68d2f63d 100644 --- a/src/projects/djib/index.yaml +++ b/src/projects/djib/index.yaml @@ -1,6 +1,6 @@ name: DJIB categories: - - storage + - applications description: DJIB is the next generation Web3 storage team: anonymous: false @@ -21,3 +21,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/dmail-network/index.yaml b/src/projects/dmail-network/index.yaml index d4aab913..e1f93dac 100644 --- a/src/projects/dmail-network/index.yaml +++ b/src/projects/dmail-network/index.yaml @@ -1,8 +1,8 @@ name: Dmail Network categories: - - did + - applications description: Construct DID in Web3.0, Not Just an Email. -ecosystem: multichain +ecosystem: [multichain] links: web: https://dmail.ai github: https://github.com/dmailofficial/dmail @@ -13,3 +13,6 @@ links: discord: https://discord.com/invite/RyYNmdqjF9?ref=blog.dmail.ai telegram: https://t.me/dmailofficial have_token: true + +usecases: + - did diff --git a/src/projects/dragonX/index.yaml b/src/projects/dragonX/index.yaml index 89fcf971..a0fca045 100644 --- a/src/projects/dragonX/index.yaml +++ b/src/projects/dragonX/index.yaml @@ -1,7 +1,8 @@ +id: dragonx name: DragonX categories: - - currency -description: 'a Z2Z private by default crypto + messenging' + - defi +description: "a Z2Z private by default crypto + messenging" links: web: https://dragonx.is/ block_explorer: https://explorer.dragonx.is/ @@ -25,9 +26,11 @@ blockchain_features: revealed_sender: false revealed_ammount: false default_privacy: true -tracebility: - kyc: false + project_status: live_status: true testnet: false mainnet: true + +usecases: + - currency diff --git a/src/projects/dusk-network/index.yaml b/src/projects/dusk-network/index.yaml index 6a5eed76..40f99dbb 100644 --- a/src/projects/dusk-network/index.yaml +++ b/src/projects/dusk-network/index.yaml @@ -1,7 +1,7 @@ name: Dusk Network categories: [defi] -ecosystem: Dusk -description: 'Is technology for securities. An open source and secure blockchain (DLT) infrastructure that businesses use to tokenize financial instruments and automate costly processes.' +ecosystem: [dusk] +description: "Is technology for securities. An open source and secure blockchain (DLT) infrastructure that businesses use to tokenize financial instruments and automate costly processes." links: web: https://dusk.network/ github: https://github.com/dusk-network @@ -12,3 +12,6 @@ team: anonymous: false company: link: https://dusk.network/pages/team + +usecases: + - defi diff --git a/src/projects/ecash/index.yaml b/src/projects/ecash/index.yaml index 73616eee..bdcbbbfb 100644 --- a/src/projects/ecash/index.yaml +++ b/src/projects/ecash/index.yaml @@ -1,7 +1,7 @@ name: eCash categories: - - currency -description: 'Simple. Instant. Secure. Experience the revolutionary new money powered by Avalanche' + - defi +description: "Simple. Instant. Secure. Experience the revolutionary new money powered by Avalanche" links: web: https://e.cash github: https://github.com/bitcoin-abc/bitcoin-abc/ @@ -12,3 +12,6 @@ links: telegram: https://t.me/ecash team: anonymous: true + +usecases: + - currency diff --git a/src/projects/edge/index.yaml b/src/projects/edge/index.yaml index beef1d2e..0b64d101 100644 --- a/src/projects/edge/index.yaml +++ b/src/projects/edge/index.yaml @@ -1,9 +1,9 @@ name: Edge categories: - - wallets -description: 'The most secure way to buy, store & trade crypto under your control' -ecosystem: multichain -project_status: + - applications +description: "The most secure way to buy, store & trade crypto under your control" +ecosystem: [multichain] +project_status: live_status: true version: Mainnet testnet: true @@ -20,3 +20,6 @@ team: - name: Paul Puey role: CEO link: https://edge.app/about/ + +usecases: + - wallets diff --git a/src/projects/electric-coin-co/index.yaml b/src/projects/electric-coin-co/index.yaml index 89f4d21f..e37ae73e 100644 --- a/src/projects/electric-coin-co/index.yaml +++ b/src/projects/electric-coin-co/index.yaml @@ -1,7 +1,7 @@ name: Electric Coin. Co categories: - - rd -description: 'R&D advances accessibility, usability and scalability of Zcash, but the implications of our work have an even broader potential' + - infrastructure +description: "R&D advances accessibility, usability and scalability of Zcash, but the implications of our work have an even broader potential" team: anonymous: false teammembers: @@ -15,3 +15,6 @@ links: web: https://electriccoin.co/ blog: https://electriccoin.co/blog/ twitter: https://x.com/ElectricCoinCo + +usecases: + - research-and-development diff --git a/src/projects/elite/index.yaml b/src/projects/elite/index.yaml index 5a4bc2fd..f9f1f92d 100644 --- a/src/projects/elite/index.yaml +++ b/src/projects/elite/index.yaml @@ -1,6 +1,6 @@ name: Elite categories: - - wallets + - applications description: Android and IOS Wallet that respects your privacy team: anonymous: true @@ -12,3 +12,6 @@ project_status: version: 1.3.1 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/elusiv/index.yaml b/src/projects/elusiv/index.yaml index a68f0389..2bb6b20e 100644 --- a/src/projects/elusiv/index.yaml +++ b/src/projects/elusiv/index.yaml @@ -1,10 +1,10 @@ name: Elusiv categories: [defi] -ecosystem: Solana -description: 'Create blockchain privacy solutions that are built for everyday transactions — with the power of scalable ZK infrastructure on Solana.' +ecosystem: [solana] +description: "Create blockchain privacy solutions that are built for everyday transactions — with the power of scalable ZK infrastructure on Solana." technology: type: zk - features: + features: - zk-SNARKS links: web: https://elusiv.io/ @@ -16,3 +16,6 @@ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280778213%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=s_%40 + +usecases: + - defi diff --git a/src/projects/email-wallet/index.yaml b/src/projects/email-wallet/index.yaml index 95a15a35..a026519d 100644 --- a/src/projects/email-wallet/index.yaml +++ b/src/projects/email-wallet/index.yaml @@ -1,8 +1,8 @@ name: Email Wallet categories: - - wallets -description: 'Use your email address as a crypto wallet, via zk email to keep the protocol decentralized and emails private on-chain' -ecosystem: Ethereum + - applications +description: "Use your email address as a crypto wallet, via zk email to keep the protocol decentralized and emails private on-chain" +ecosystem: [ethereum] links: web: https://emailwallet.org/ docs: https://zkemail.gitbook.io/zk-email/email-wallet @@ -12,9 +12,12 @@ team: anonymous: true technology: type: ZK + features: [""] project_status: live_status: true version: Testnet testnet: true mainnet: false +usecases: + - wallets diff --git a/src/projects/entropy1729/index.yaml b/src/projects/entropy1729/index.yaml index fc742bf0..7ad66225 100644 --- a/src/projects/entropy1729/index.yaml +++ b/src/projects/entropy1729/index.yaml @@ -1,8 +1,11 @@ name: Entropy1729 categories: - - rd + - infrastructure description: Zero Knowledge Shop. links: web: https://www.entropy1729.com twitter: https://x.com/1729entropy sunset: true + +usecases: + - research-and-development diff --git a/src/projects/epic-cash/index.yaml b/src/projects/epic-cash/index.yaml index c25bd2af..d7177038 100644 --- a/src/projects/epic-cash/index.yaml +++ b/src/projects/epic-cash/index.yaml @@ -1,8 +1,8 @@ name: Epic Cash categories: - - currency -description: 'Decentralized privacy-enhanced cryptocurrency developed by a growing volunteer community' -ecosystem: MimbleWimble + - defi +description: "Decentralized privacy-enhanced cryptocurrency developed by a growing volunteer community" +ecosystem: [mimblewimble] links: web: https://epiccash.com/ github: https://github.com/orgs/EpicCash/repositories @@ -13,3 +13,6 @@ links: telegram: https://t.me/epiccash/ team: anonymous: true + +usecases: + - currency diff --git a/src/projects/espresso-systems/index.yaml b/src/projects/espresso-systems/index.yaml index 249d490d..04c048e2 100644 --- a/src/projects/espresso-systems/index.yaml +++ b/src/projects/espresso-systems/index.yaml @@ -1,18 +1,20 @@ name: Espresso Systems categories: - infrastructure -description: 'Espresso is building a marketplace for shared sequencing, allowing rollups to auction the rights to build their blocks' +description: "Espresso is building a marketplace for shared sequencing, allowing rollups to auction the rights to build their blocks" team: -- name: Ben Fisch - role: CEO -- name: Charles Lu - role: COO -- name: Jill Gunter - role: CSO -- name: Benedikt Bünz - role: Chief Scientist -- name: Binyi Chen - role: Chief Cryptographer + anonymous: false + teammembers: + - name: Ben Fisch + role: CEO + - name: Charles Lu + role: COO + - name: Jill Gunter + role: CSO + - name: Benedikt Bünz + role: Chief Scientist + - name: Binyi Chen + role: Chief Cryptographer links: web: https://www.espressosys.com github: https://github.com/EspressoSystems/ @@ -20,6 +22,9 @@ links: docs: https://docs.espressosys.com/ project_status: live_status: true - version: false + version: "" testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/eth-privacy/index.yaml b/src/projects/eth-privacy/index.yaml index eed02967..50ace813 100644 --- a/src/projects/eth-privacy/index.yaml +++ b/src/projects/eth-privacy/index.yaml @@ -1,6 +1,9 @@ name: ETH Privacy description: "ETH #Privacy is the hackathon around privacy, organized by the Leading Privacy Alliance of web3." -categories: [events] -ecosystem: Ethereum +categories: [social-and-communications] +ecosystem: [ethereum] links: web: https://www.leadingprivacy.com/istanbul + +usecases: + - events diff --git a/src/projects/ethberlin/index.yaml b/src/projects/ethberlin/index.yaml index 2136a051..24508a66 100644 --- a/src/projects/ethberlin/index.yaml +++ b/src/projects/ethberlin/index.yaml @@ -1,9 +1,12 @@ name: ETHBerlin description: "a hackathon, a cultural festival, an educational event, a platform for hacktivism, and a community initiative to push the decentralized ecosystem forward." -categories: [events] -ecosystem: Ethereum +categories: [social-and-communications] +ecosystem: [ethereum] links: web: https://ethberlin.ooo/contributors/ github: https://github.com/ethb3rlin/4 blog: https://blog.dod.ngo/ twitter: https://x.com/ETHBerlin + +usecases: + - events diff --git a/src/projects/ethbrno/index.yaml b/src/projects/ethbrno/index.yaml index 9e5b6952..f074b13c 100644 --- a/src/projects/ethbrno/index.yaml +++ b/src/projects/ethbrno/index.yaml @@ -1,7 +1,10 @@ name: ETHBrno -description: 'An annual independent & open community hackathon for supporters of decentralised finance, smart contracts and Web3 happening in Brno, Czech Republic. 13 projects' -categories: [events] -ecosystem: Ethereum +description: "An annual independent & open community hackathon for supporters of decentralised finance, smart contracts and Web3 happening in Brno, Czech Republic. 13 projects" +categories: [social-and-communications] +ecosystem: [ethereum] links: web: https://ethbrno.cz/ twitter: https://twitter.com/ETHBrno + +usecases: + - events diff --git a/src/projects/ethdam/index.yaml b/src/projects/ethdam/index.yaml index f6ebff10..e44dc07b 100644 --- a/src/projects/ethdam/index.yaml +++ b/src/projects/ethdam/index.yaml @@ -1,9 +1,12 @@ name: ETHDam description: "Ethereum-focused privacy & DeFi hackathon. " -categories: [events] -ecosystem: Ethereum +categories: [social-and-communications] +ecosystem: [ethereum] links: web: https://www.ethdam.com/hackathon twitter: https://twitter.com/CryptoCanal discord: https://discord.com/invite/XJVjpCqQBz telegram: https://t.me/CryptoCanalCommunity + +usecases: + - events diff --git a/src/projects/ethereum-portal-network/index.yaml b/src/projects/ethereum-portal-network/index.yaml index 6d508a4d..5e5e67ac 100644 --- a/src/projects/ethereum-portal-network/index.yaml +++ b/src/projects/ethereum-portal-network/index.yaml @@ -1,7 +1,7 @@ name: Ethereum Portal Network categories: - - rpc -description: 'Decentralized P2P overlay network on top of Ethereum devp2p for serving RPC requests' + - infrastructure +description: "Decentralized P2P overlay network on top of Ethereum devp2p for serving RPC requests" team: anonymous: false teammembers: @@ -23,3 +23,6 @@ links: blog: https://blog.ethportal.net/ twitter: https://x.com/ethportalnet discord: https://discord.com/invite/rHruRsbgeY + +usecases: + - rpc-provider diff --git a/src/projects/ethernity-cloud/index.yaml b/src/projects/ethernity-cloud/index.yaml index 71835d63..52062702 100644 --- a/src/projects/ethernity-cloud/index.yaml +++ b/src/projects/ethernity-cloud/index.yaml @@ -1,8 +1,8 @@ name: Ethernity cloud categories: - - computing-network -description: 'The Web3 decentralized confidential computing ecosystem' -ecosystem: Polygon + - infrastructure +description: "The Web3 decentralized confidential computing ecosystem" +ecosystem: [polygon] links: web: https://ethernity.cloud/ docs: https://docs.ethernity.cloud/ @@ -32,3 +32,5 @@ traceability: storage: decentralized: true +usecases: + - computing diff --git a/src/projects/ethrome/index.yaml b/src/projects/ethrome/index.yaml index 9afcc7a2..3829b1ee 100644 --- a/src/projects/ethrome/index.yaml +++ b/src/projects/ethrome/index.yaml @@ -1,7 +1,10 @@ name: ETHRome -categories: [events] -ecosystem: Ethereum +categories: [social-and-communications] +ecosystem: [ethereum] links: web: https://ethrome.org/ twitter: https://x.com/ETHRome discord: https://discord.com/invite/tr8KMmC2aF + +usecases: + - events diff --git a/src/projects/evanesco/index.yaml b/src/projects/evanesco/index.yaml index d1ff8c54..28d3b63e 100644 --- a/src/projects/evanesco/index.yaml +++ b/src/projects/evanesco/index.yaml @@ -1,7 +1,7 @@ name: Evanesco categories: [defi] -ecosystem: Eva -description: 'A financial protocol platform that combines Layer0 network infrastructure with a private computing framework.' +ecosystem: [eva] +description: "A financial protocol platform that combines Layer0 network infrastructure with a private computing framework." links: web: https://evanesco.org/ github: https://github.com/Evanesco-Labs @@ -10,4 +10,5 @@ project_status: team: anonymous: true - +usecases: + - defi diff --git a/src/projects/evolution/index.yaml b/src/projects/evolution/index.yaml index 0949e485..1a7362e9 100644 --- a/src/projects/evolution/index.yaml +++ b/src/projects/evolution/index.yaml @@ -1,9 +1,9 @@ name: Evolution categories: - - currency -description: 'A new level of your freedom. Anonymously. Secure.' -ecosystem: Evolution -project_status: + - defi +description: "A new level of your freedom. Anonymously. Secure." +ecosystem: [evolution] +project_status: live status: true version: Mainnet testnet: true @@ -13,7 +13,7 @@ links: github: https://github.com/evolution-project block_explorer: https://chain.evolution-network.org/ docs: https://docs.evolution-network.org/ - + blog: https://evolutionproject.medium.com/ twitter: https://x.com/evox_project discord: https://discord.com/invite/erYnAQf @@ -21,3 +21,6 @@ links: team: anonymous: true + +usecases: + - currency diff --git a/src/projects/fade-wtf/index.yaml b/src/projects/fade-wtf/index.yaml index 94f9b858..15342488 100644 --- a/src/projects/fade-wtf/index.yaml +++ b/src/projects/fade-wtf/index.yaml @@ -1,6 +1,9 @@ name: Fade WTF categories: - - nft + - applications description: Privacy for NFTs powered by Light Protocol. links: web: http://mint.fade.wtf + +usecases: + - nft-community diff --git a/src/projects/fairy/index.yaml b/src/projects/fairy/index.yaml index e7ae8c63..d437a3b8 100644 --- a/src/projects/fairy/index.yaml +++ b/src/projects/fairy/index.yaml @@ -1,2 +1,5 @@ name: Fairy categories: [defi] + +usecases: + - defi diff --git a/src/projects/fedi/index.yaml b/src/projects/fedi/index.yaml index 97bd7191..d8cc9ee9 100644 --- a/src/projects/fedi/index.yaml +++ b/src/projects/fedi/index.yaml @@ -1,8 +1,8 @@ name: Fedi categories: - - wallets -description: 'Billions of people are unable to hold bitcoin on or off exchanges' -ecosystem: Bitcoin + - applications +description: "Billions of people are unable to hold bitcoin on or off exchanges" +ecosystem: [bitcoin] links: web: https://www.fedi.xyz/ github: https://github.com/fedibtc @@ -13,6 +13,8 @@ team: anonymous: true project_status: live_status: true - version: testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/fedimint/index.yaml b/src/projects/fedimint/index.yaml index f3562b73..59c352df 100644 --- a/src/projects/fedimint/index.yaml +++ b/src/projects/fedimint/index.yaml @@ -1,7 +1,7 @@ name: Fedimint categories: - infrastructure -description: 'An open-source protocol to custody and transact bitcoin in a community context, built on a strong foundation of privacy' +description: "An open-source protocol to custody and transact bitcoin in a community context, built on a strong foundation of privacy" team: anonymous: true links: @@ -12,7 +12,9 @@ links: twitter: https://twitter.com/fedimint project_status: live_status: false - version: false + version: "" testnet: false mainnet: false - + +usecases: + - infrastructure diff --git a/src/projects/fileverse/index.yaml b/src/projects/fileverse/index.yaml index 00844f6e..de2a0aab 100644 --- a/src/projects/fileverse/index.yaml +++ b/src/projects/fileverse/index.yaml @@ -1,7 +1,7 @@ name: Fileverse categories: - - storage -description: 'On-chain people and communities deserve on-chain tools for private communication and collaboration' + - applications +description: "On-chain people and communities deserve on-chain tools for private communication and collaboration" team: anonymous: true links: @@ -13,3 +13,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/findora-cr/index.yaml b/src/projects/findora-cr/index.yaml index 13a8c121..ae103c57 100644 --- a/src/projects/findora-cr/index.yaml +++ b/src/projects/findora-cr/index.yaml @@ -1,8 +1,8 @@ name: Findora CR categories: - - did + - applications description: Enabling ZK Identity Management & CRedentials for Web3 -ecosystem: multichain +ecosystem: [multichain] links: web: https://findora.org/findora-cr/ github: https://github.com/findoranetwork @@ -11,3 +11,6 @@ team: link: https://findora.org/team/ have_token: true token_link: https://coinmarketcap.com/it/currencies/findora/ + +usecases: + - did diff --git a/src/projects/findora-platform/index.yaml b/src/projects/findora-platform/index.yaml index 964c1e93..04f2a780 100644 --- a/src/projects/findora-platform/index.yaml +++ b/src/projects/findora-platform/index.yaml @@ -1,8 +1,8 @@ name: Findora categories: - - computing-network + - infrastructure description: a decentralized, privacy-preserving smart contract platform. -project_status: +project_status: live_status: true version: Mainnet testnet: true @@ -13,8 +13,11 @@ links: have_token: true tokens: - symbol: FRA -ecosystem: multichain +ecosystem: [multichain] team: anonymous: false company: link: https://findora.org/team/ + +usecases: + - computing diff --git a/src/projects/findora/index.yaml b/src/projects/findora/index.yaml index 53484b33..d025cc51 100644 --- a/src/projects/findora/index.yaml +++ b/src/projects/findora/index.yaml @@ -1,7 +1,7 @@ name: Findora categories: - infrastructure -description: 'A decentralized, privacy-preserving smart contract platform. Build the next privacy dApp for any EVM-chain with the world’s leading zero-knowledge technology-explore all new possibilities' +description: "A decentralized, privacy-preserving smart contract platform. Build the next privacy dApp for any EVM-chain with the world’s leading zero-knowledge technology-explore all new possibilities" links: web: https://findora.org github: https://github.com/findoranetwork @@ -15,6 +15,9 @@ tokens: - symbol: FRA project_status: live_status: false - version: false + version: "" testnet: false mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/firn-protocol/index.yaml b/src/projects/firn-protocol/index.yaml index 14db0067..63b791c1 100644 --- a/src/projects/firn-protocol/index.yaml +++ b/src/projects/firn-protocol/index.yaml @@ -1,7 +1,7 @@ name: Firn Protocol -categories: [ defi ] -ecosystem: Ethereum -description: 'Firn is the first-ever zero-knowledge privacy platform in the account-based model, and introduces pluggable, flexible privacy to Ethereum-based chains.' +categories: [defi] +ecosystem: [ethereum] +description: "Firn is the first-ever zero-knowledge privacy platform in the account-based model, and introduces pluggable, flexible privacy to Ethereum-based chains." tokens: - name: Firn symbol: FIRN @@ -14,7 +14,7 @@ technology: name: Zero-knowledge features: - privacy - - payments + - payments links: web: https://app.firn.cash/ twitter: https://twitter.com/firnprotocol @@ -25,9 +25,6 @@ links: blockchain_features: p2p: false encryption: ZK - upgradability: - enabled: true - type: multisig opensource: true viewing_key: false dissapearing_tx: true @@ -56,12 +53,12 @@ audits: link: https://github.com/blocksecteam/audit-reports/blob/main/solidity/blocksec_firnprotocol_v1.0-signed.pdf time: Aug, 7. 2023 history: - title: Github - event_type: launch - description: AGithub start - time: Nov 6, 2021 - link: https://github.com/firnprotocol -client_diversability: + - title: Github + event_type: launch + description: AGithub start + time: Nov 6, 2021 + link: https://github.com/firnprotocol +client_diversability: - name: Metamask link: https://www.metamask.io default_privacy: true @@ -76,4 +73,6 @@ project_status: version: Mainnet testnet: false mainnet: true - + +usecases: + - defi diff --git a/src/projects/firo/index.yaml b/src/projects/firo/index.yaml index 41376aa2..525fff94 100644 --- a/src/projects/firo/index.yaml +++ b/src/projects/firo/index.yaml @@ -1,12 +1,12 @@ name: Firo categories: - - currency + - defi description: A privacy-preserving cryptocurrency and ecosystem -ecosystem: Firo +ecosystem: [firo] links: web: https://firo.org github: https://github.com/firoorg/firo - block_explorer: https://explorer.firo.org/ + block_explorer: https://explorer.firo.org/ forum: https://forum.firo.org/ blog: https://firo.org/blog/ @@ -16,3 +16,6 @@ links: telegram: https://t.me/firoorg team: anonymous: false + +usecases: + - currency diff --git a/src/projects/flock-io/index.yaml b/src/projects/flock-io/index.yaml index 22b0cfbe..85a93d3d 100644 --- a/src/projects/flock-io/index.yaml +++ b/src/projects/flock-io/index.yaml @@ -1,6 +1,6 @@ name: FLock.io categories: - - dapps + - applications description: A native Web3 Data Privacy solution for Artificial Intelligence. links: web: https://flock.io/ @@ -11,3 +11,6 @@ links: twitter: https://x.com/flock_io discord: https://discord.com/invite/fz5EqH7rhn telegram: https://t.me/flock_io_community + +usecases: + - dapps diff --git a/src/projects/foundation/index.yaml b/src/projects/foundation/index.yaml index d6834999..3196e644 100644 --- a/src/projects/foundation/index.yaml +++ b/src/projects/foundation/index.yaml @@ -1,8 +1,8 @@ name: Foundation categories: - hardware -description: 'The new standard for Bitcoin self custody. Introducing Passport hardware wallet and Envoy mobile app' -ecosystem: Bitcoin +description: "The new standard for Bitcoin self custody. Introducing Passport hardware wallet and Envoy mobile app" +ecosystem: [bitcoin] links: web: https://foundationdevices.com github: https://github.com/Foundation-Devices @@ -14,3 +14,6 @@ team: anonymous: false company: link: https://foundationdevices.com/about/ + +usecases: + - hardware diff --git a/src/projects/fractal-id/index.yaml b/src/projects/fractal-id/index.yaml index a5ac4d66..df9dfff1 100644 --- a/src/projects/fractal-id/index.yaml +++ b/src/projects/fractal-id/index.yaml @@ -1,7 +1,7 @@ name: Fractal ID categories: - - did -description: 'We help web3 platforms and ecosystems ensure data and regulatory compliance by enabling selective disclosure of verified user data to KYC/AML status' + - applications +description: "We help web3 platforms and ecosystems ensure data and regulatory compliance by enabling selective disclosure of verified user data to KYC/AML status" links: web: https://web.fractal.id github: https://github.com/trustfractal @@ -11,3 +11,6 @@ links: twitter: https://x.com/Fractal_ID telegram: https://t.me/Fractal_ID_Support_bot have_token: true + +usecases: + - did diff --git a/src/projects/frame/index.yaml b/src/projects/frame/index.yaml index 9599a55e..3b688030 100644 --- a/src/projects/frame/index.yaml +++ b/src/projects/frame/index.yaml @@ -1,8 +1,8 @@ name: Frame -categories: - - wallets -ecosystem: Ethereum -description: 'A privacy focused Ethereum wallet that runs natively on macOS, Windows and Linux.' +categories: + - applications +ecosystem: [ethereum] +description: "A privacy focused Ethereum wallet that runs natively on macOS, Windows and Linux." links: web: https://frame.sh/ docs: https://docs.frame.sh/ @@ -17,3 +17,6 @@ project_status: version: 0.6.9 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/freechat/index.yaml b/src/projects/freechat/index.yaml index 20b6f802..7bf3f0b8 100644 --- a/src/projects/freechat/index.yaml +++ b/src/projects/freechat/index.yaml @@ -1,6 +1,9 @@ name: FreeChat categories: - - dapps + - applications description: Web3 Social links: web: https://twitter.com/Freeture_Chat + +usecases: + - dapps diff --git a/src/projects/fulldive/index.yaml b/src/projects/fulldive/index.yaml index 96b19ece..3499f7b6 100644 --- a/src/projects/fulldive/index.yaml +++ b/src/projects/fulldive/index.yaml @@ -1,9 +1,12 @@ name: Fulldive categories: - - browser + - applications description: Web3 browser that respects your privacy links: web: https://www.fulldive.com twitter: https://x.com/fulldive discord: https://discord.com/invite/3f79ygxZ3y facebook: https://www.facebook.com/fulldiveco + +usecases: + - browser diff --git a/src/projects/fyeo-identity/index.yaml b/src/projects/fyeo-identity/index.yaml index 7a3c3a61..1ab1ba7e 100644 --- a/src/projects/fyeo-identity/index.yaml +++ b/src/projects/fyeo-identity/index.yaml @@ -1,6 +1,6 @@ name: FYEO Identity categories: - - dapps + - applications description: Decentralized password management. Real-time identity monitoring. links: web: https://www.gofyeo.com/fyeo-identity @@ -8,3 +8,6 @@ links: twitter: https://x.com/gofyeo discord: https://discord.com/invite/tBcAkFPb5r telegram: https://t.me/fyeo_security + +usecases: + - dapps diff --git a/src/projects/geniish/index.yaml b/src/projects/geniish/index.yaml index 43080e53..de957e36 100644 --- a/src/projects/geniish/index.yaml +++ b/src/projects/geniish/index.yaml @@ -1,6 +1,6 @@ name: geniish categories: - - nft + - applications description: Confidential NFTs for exclusive experiences. links: web: https://www.geniish.io @@ -8,4 +8,7 @@ links: twitter: https://x.com/GeniishProtocol discord: https://discord.com/invite/Mc6Y2jfeEv have_token: false -sunset: false +sunset: false + +usecases: + - nft-community diff --git a/src/projects/ghost/index.yaml b/src/projects/ghost/index.yaml index 042a4f0a..696430d7 100644 --- a/src/projects/ghost/index.yaml +++ b/src/projects/ghost/index.yaml @@ -1,9 +1,9 @@ name: Ghost categories: - - currency -description: 'Proof of Stake privacy coin to help make you nothing but a ghost when transacting online' -ecosystem: Ghost -project_status: + - defi +description: "Proof of Stake privacy coin to help make you nothing but a ghost when transacting online" +ecosystem: [ghost] +project_status: live_status: true version: Mainnet testnet: true @@ -13,10 +13,13 @@ links: github: https://github.com/ghost-coin block_explorer: https://explorer.myghost.org/ whitepaper: https://ipfs.ghostbyjohnmcafee.com/static/media/Ghost_by_McAfee_Whitepaper.727767db5411381be148.pdf - + blog: https://ghostprivacy.medium.com/ twitter: https://x.com/Ghost_Privacy discord: https://discord.com/invite/Pjbme6v telegram: https://t.me/ghostcoinbymcafee team: anonymous: true + +usecases: + - currency diff --git a/src/projects/gotabit/index.yaml b/src/projects/gotabit/index.yaml index 68d799df..1bb48ff0 100644 --- a/src/projects/gotabit/index.yaml +++ b/src/projects/gotabit/index.yaml @@ -1,7 +1,7 @@ name: GotaBit categories: - infrastructure -description: 'An open-source and proof-of-stake blockchain that aims to provide a sandbox environment for the deployment of smart contracts' +description: "An open-source and proof-of-stake blockchain that aims to provide a sandbox environment for the deployment of smart contracts" team: anonymous: true links: @@ -15,3 +15,6 @@ project_status: version: Testnet testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/graphene-os/index.yaml b/src/projects/graphene-os/index.yaml index 6e21faeb..6e46bf20 100644 --- a/src/projects/graphene-os/index.yaml +++ b/src/projects/graphene-os/index.yaml @@ -1,6 +1,6 @@ name: Graphene OS categories: - - os + - applications description: The private and secure mobile operating system with Android app compatibility team: anonymous: true @@ -14,6 +14,9 @@ links: telegram: https://t.me/GrapheneOS project_status: live_status: true - version: 2024051500 + version: "2024051500" testnet: false mainnet: true + +usecases: + - operation-systems diff --git a/src/projects/grin/index.yaml b/src/projects/grin/index.yaml index 02588451..d14d69c3 100644 --- a/src/projects/grin/index.yaml +++ b/src/projects/grin/index.yaml @@ -1,8 +1,8 @@ name: GRin categories: - - currency + - defi description: Electronic transactions for all. Without censorship or restrictions -ecosystem: Mimblewimble +ecosystem: [mimblewimble] links: web: https://grin.mw github: https://github.com/mimblewimble/grin @@ -16,3 +16,6 @@ links: telegram: https://t.me/grinprivacy team: anonymous: true + +usecases: + - currency diff --git a/src/projects/hackers-congress-paralelni-polis/index.yaml b/src/projects/hackers-congress-paralelni-polis/index.yaml index 27e02a4e..f227e5ec 100644 --- a/src/projects/hackers-congress-paralelni-polis/index.yaml +++ b/src/projects/hackers-congress-paralelni-polis/index.yaml @@ -1,7 +1,10 @@ name: Hackers Congress Paralelní Polis description: "the flagship event of Paralelní Polis, which since 2014 has been regularly attended by over 500 fans and IT experts from all over the world." -categories: [events] +categories: [social-and-communications] links: web: https://last-shot.hcpp.cz/ twitter: https://twitter.com/institutecrypto telegram: https://t.me/HCCP20 + +usecases: + - events diff --git a/src/projects/hana/index.yaml b/src/projects/hana/index.yaml index 66c27623..d0c83dd0 100644 --- a/src/projects/hana/index.yaml +++ b/src/projects/hana/index.yaml @@ -1,7 +1,7 @@ name: Hana categories: - infrastructure -description: 'privacy hub for all blockchains, enabling on-chain privacy on existing chains and for arbitrary assets including Bitcoin' +description: "privacy hub for all blockchains, enabling on-chain privacy on existing chains and for arbitrary assets including Bitcoin" team: anonymous: true links: @@ -11,6 +11,9 @@ links: have_token: true project_status: live_status: false - version: false + version: "" testnet: false mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/hashbon-pass/index.yaml b/src/projects/hashbon-pass/index.yaml index 864fe1c5..83792021 100644 --- a/src/projects/hashbon-pass/index.yaml +++ b/src/projects/hashbon-pass/index.yaml @@ -1,6 +1,6 @@ name: Hashbon Pass categories: - - kyc + - applications description: Tokenized All Web3 Pass to KYC while being anonymous. team: anonymous: false @@ -8,7 +8,9 @@ links: web: https://pass.hashbon.com docs: https://hashbon.gitbook.io/hashbon-rocket whitepaper: https://pass.hashbon.com/files/Hashbon_Pass_Whitepaper_v1.0.pdf - - twitter: https://twitter.com/hashbon + + twitter: https://twitter.com/hashbon telegram: https://t.me/hashbon_chat - + +usecases: + - kyc-solution diff --git a/src/projects/hashcloak/index.yaml b/src/projects/hashcloak/index.yaml index 8ad9be6c..a9746544 100644 --- a/src/projects/hashcloak/index.yaml +++ b/src/projects/hashcloak/index.yaml @@ -1,11 +1,11 @@ name: HashCloak categories: - - rd -description: 'An independent research lab focused on helping organizations and blockchain communities integrate a privacy-first approach into their processes' + - infrastructure +description: "An independent research lab focused on helping organizations and blockchain communities integrate a privacy-first approach into their processes" team: anonymous: false teammembers: - - name: Mikerah + - name: Mikerah link: https://x.com/badcryptobitch - name: Hernan Vanegas link: https://x.com/hdvanegasm @@ -13,3 +13,6 @@ links: web: https://hashcloak.com github: https://github.com/hashcloak twitter: https://x.com/hashcloak + +usecases: + - research-and-development diff --git a/src/projects/haven-protocol/index.yaml b/src/projects/haven-protocol/index.yaml index 12ab579a..c7670c43 100644 --- a/src/projects/haven-protocol/index.yaml +++ b/src/projects/haven-protocol/index.yaml @@ -1,7 +1,7 @@ name: Haven Protocol categories: - infrastructure -description: 'an open source, community-led network of private digital assets' +description: "an open source, community-led network of private digital assets" team: anonymous: true links: @@ -14,9 +14,14 @@ links: have_token: true tokens: - symbol: XHV -audits: no audit reports attached - https://github.com/haven-protocol-org/security-audits/ +audits: + - name: no audit reports attached + link: https://github.com/haven-protocol-org/security-audits/ project_status: live_status: true version: Mainnet testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/heyanon/index.yaml b/src/projects/heyanon/index.yaml index 20d4635e..faa45e5a 100644 --- a/src/projects/heyanon/index.yaml +++ b/src/projects/heyanon/index.yaml @@ -1,7 +1,10 @@ name: HeyAnon categories: - - dao -description: 'Allows noun-holders to give feedback on proposals while maintaining their privacy using zero-knowledge proofs' + - applications +description: "Allows noun-holders to give feedback on proposals while maintaining their privacy using zero-knowledge proofs" links: web: https://www.heyanoun.xyz twitter: https://x.com/HeyAnoun + +usecases: + - dao diff --git a/src/projects/hideyour-cash/index.yaml b/src/projects/hideyour-cash/index.yaml index fc6b5809..2eb62790 100644 --- a/src/projects/hideyour-cash/index.yaml +++ b/src/projects/hideyour-cash/index.yaml @@ -1,8 +1,11 @@ name: HideYour.cash categories: - - mixing-service -description: 'HideYour.cash is a private transactions protocol (mixer) designed for well-intended users on NEAR Protocol' + - applications +description: "HideYour.cash is a private transactions protocol (mixer) designed for well-intended users on NEAR Protocol" links: web: https://hideyour.cash docs: https://docs.tickets.opact.io/tutorial sunset: true + +usecases: + - mixing-service diff --git a/src/projects/highline/index.yaml b/src/projects/highline/index.yaml index 48c4e008..04ced9ae 100644 --- a/src/projects/highline/index.yaml +++ b/src/projects/highline/index.yaml @@ -5,3 +5,6 @@ description: An execution layer for Ethereum links: web: https://highline.dev github: https://highline.dev/docs/ + +usecases: + - infrastructure diff --git a/src/projects/hinkal/index.yaml b/src/projects/hinkal/index.yaml index f43c3ba7..c84aa933 100644 --- a/src/projects/hinkal/index.yaml +++ b/src/projects/hinkal/index.yaml @@ -1,2 +1,5 @@ name: Hinkal categories: [defi] + +usecases: + - defi diff --git a/src/projects/holonym-id/index.yaml b/src/projects/holonym-id/index.yaml index ba0370af..fefc1ccc 100644 --- a/src/projects/holonym-id/index.yaml +++ b/src/projects/holonym-id/index.yaml @@ -1,8 +1,11 @@ name: Holonym categories: - - did -description: 'Your ZK Passport for Web3. A holistic identity that lets you prove facts about yourself without revealing who you are' + - applications +description: "Your ZK Passport for Web3. A holistic identity that lets you prove facts about yourself without revealing who you are" links: web: https://www.holonym.id github: https://github.com/holonym-foundation have_token: true + +usecases: + - did diff --git a/src/projects/holonym/index.yaml b/src/projects/holonym/index.yaml index 180c7d60..d3e9a5d7 100644 --- a/src/projects/holonym/index.yaml +++ b/src/projects/holonym/index.yaml @@ -1,7 +1,7 @@ name: Holonym categories: - - kyc -description: ZK-identity protocol for anonymous KYC, sybil resistance, and compliance. + - applications +description: ZK-identity protocol for anonymous KYC, sybil resistance, and compliance. team: anonymous: true links: @@ -11,3 +11,6 @@ links: blog: https://medium.com/holonym twitter: https://x.com/0xHolonym have_token: true + +usecases: + - kyc-solution diff --git a/src/projects/hopr/index.yaml b/src/projects/hopr/index.yaml index 829d3405..fda9f820 100644 --- a/src/projects/hopr/index.yaml +++ b/src/projects/hopr/index.yaml @@ -1,12 +1,14 @@ name: HOPR categories: - infrastructure -description: 'The HOPR network is a decentralized incentivized mixnet, ensuring complete data and metadata privacy for everyone who uses it. Data is sent via multiple hops, so no-one but the sender and receiver know the origin, destination, or content of a data transfer.' +description: "The HOPR network is a decentralized incentivized mixnet, ensuring complete data and metadata privacy for everyone who uses it. Data is sent via multiple hops, so no-one but the sender and receiver know the origin, destination, or content of a data transfer." team: - - name: Dr. Sebastian Bürgel - role: President - - name: Rik Krieger - role: Co-Founder + anonymous: false + teammembers: + - name: Dr. Sebastian Bürgel + role: President + - name: Rik Krieger + role: Co-Founder links: web: https://hoprnet.org/protocol github: https://github.com/hoprnet @@ -19,3 +21,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/hurricane-protocol/index.yaml b/src/projects/hurricane-protocol/index.yaml index b7e2ac15..0529462b 100644 --- a/src/projects/hurricane-protocol/index.yaml +++ b/src/projects/hurricane-protocol/index.yaml @@ -1,2 +1,5 @@ name: Hurricane Protocol categories: [defi] + +usecases: + - defi diff --git a/src/projects/hush/index.yaml b/src/projects/hush/index.yaml index 4483f5a4..31a831b6 100644 --- a/src/projects/hush/index.yaml +++ b/src/projects/hush/index.yaml @@ -1,6 +1,6 @@ name: Hush categories: - - currency + - defi description: Private cryptocurrency using zero knowledge mathematics links: web: https://hush.is @@ -13,3 +13,6 @@ links: telegram: https://t.me/hushisprivacy team: anonymous: false + +usecases: + - currency diff --git a/src/projects/hushchat/index.yaml b/src/projects/hushchat/index.yaml index b6126671..93823acf 100644 --- a/src/projects/hushchat/index.yaml +++ b/src/projects/hushchat/index.yaml @@ -1,7 +1,7 @@ name: HushChat categories: - - messaging -description: 'HushChat is a protocol which is a particular use case of HushList protocol and which sits on top of Hush Protocol, an improved Zcash Protocol' + - applications +description: "HushChat is a protocol which is a particular use case of HushList protocol and which sits on top of Hush Protocol, an improved Zcash Protocol" team: anonymous: true links: @@ -15,3 +15,6 @@ project_status: version: mainnet testnet: false mainnet: true + +usecases: + - messaging diff --git a/src/projects/hypermine/index.yaml b/src/projects/hypermine/index.yaml index 9b705c03..36675566 100644 --- a/src/projects/hypermine/index.yaml +++ b/src/projects/hypermine/index.yaml @@ -1,7 +1,7 @@ name: Hypermine categories: - - rd -description: 'Smart tools and protocols for Identity, Privacy & Security, with our roots in Distributed Systems, Machine Learning & Cryptography' + - infrastructure +description: "Smart tools and protocols for Identity, Privacy & Security, with our roots in Distributed Systems, Machine Learning & Cryptography" team: anonymous: false teammembers: @@ -17,3 +17,6 @@ team: links: web: https://hypermine.co blog: https://hypermine.co/blog + +usecases: + - research-and-development diff --git a/src/projects/hypersign/index.yaml b/src/projects/hypersign/index.yaml index ad906bdd..a52b74c0 100644 --- a/src/projects/hypersign/index.yaml +++ b/src/projects/hypersign/index.yaml @@ -1,6 +1,6 @@ name: Hypersign categories: - - did + - applications description: the ultimate stack for identity management links: web: https://hypersign.id @@ -13,3 +13,6 @@ links: discord: https://discord.com/invite/MMnhBYjF4N telegram: https://t.me/hypersignchain have_token: true + +usecases: + - did diff --git a/src/projects/iExec/index.yaml b/src/projects/iExec/index.yaml deleted file mode 100644 index 4786a1b4..00000000 --- a/src/projects/iExec/index.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: iExec -categories: [ AI ] -description: 'Build, Own, and Monetize in Web3. Privacy & Choice for users' -team: - anonymous: false -links: - web: https://iex.ec/ - block_exporer: https://explorer.iex.ec/bellecour - docs: https://docs.iex.ec/ - github: https://github.com/iExecBlockchainComputing - blog: https://medium.com/iex-ec - twitter: https://x.com/iEx_ec - discord: https://discord.com/invite/pbt9m98wnU - facebook: https://www.facebook.com/iexecteam - telegram: https://discord.com/invite/pbt9m98wnU -have_token: true -token_link: https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375 -tokens: - - name: RLC - symbol: RLC - network: Ethereum - contract_address: "0x607F4C5BB672230e8672085532f7e901544a7375" -sunset: false diff --git a/src/projects/iExec/logo.png b/src/projects/iExec/logo.png deleted file mode 100644 index fee2c85c..00000000 Binary files a/src/projects/iExec/logo.png and /dev/null differ diff --git a/src/projects/icebreaker/index.yaml b/src/projects/icebreaker/index.yaml index 457ac195..c6eb6d61 100644 --- a/src/projects/icebreaker/index.yaml +++ b/src/projects/icebreaker/index.yaml @@ -1,6 +1,6 @@ name: Icebreaker categories: - - did + - applications description: zero knowledge x self-sovereign identity links: web: https://www.icebreaker.xyz @@ -9,5 +9,8 @@ links: blog: https://mirror.xyz/icebreakerlabs.eth twitter: https://x.com/icebreaker_xyz telegram: https://t.me/+Mgo-ltakTs80MDkx - farcaster: "@icebreaker" + farcaster: "https://farcaster/icebreaker" have_token: true + +usecases: + - did diff --git a/src/projects/iden3/index.yaml b/src/projects/iden3/index.yaml index b9441163..bd7cba03 100644 --- a/src/projects/iden3/index.yaml +++ b/src/projects/iden3/index.yaml @@ -1,8 +1,8 @@ name: Iden3 categories: - - did -description: 'The open-source protocol at the basis of Polygon ID. The protocol defines on a low-level how the parties listed above communicate and interact with each.' -ecosystem: Ethereum + - applications +description: "The open-source protocol at the basis of Polygon ID. The protocol defines on a low-level how the parties listed above communicate and interact with each." +ecosystem: [ethereum] links: web: https://iden3.io github: https://github.com/iden3 @@ -12,3 +12,6 @@ links: twitter: https://x.com/identhree telegram: https://t.me/iden3io have_token: true + +usecases: + - did diff --git a/src/projects/iexec/index.yaml b/src/projects/iexec/index.yaml index dac498df..487e641b 100644 --- a/src/projects/iexec/index.yaml +++ b/src/projects/iexec/index.yaml @@ -1,14 +1,27 @@ +id: ixec name: iExec -categories: - - infrastructure -description: iExec aims to provide the technology for developers to build Web3 applications that allow users to store, process, and share their data while maintaining control over its usage and privacy. +categories: [applications] +description: "Build, Own, and Monetize in Web3. Privacy & Choice for users" team: - anonymous: true + anonymous: false links: - web: https://iex.ec + web: https://iex.ec/ + block_exporer: https://explorer.iex.ec/bellecour + docs: https://docs.iex.ec/ github: https://github.com/iExecBlockchainComputing - docs: https://academy.iex.ec/ - twitter: https://twitter.com/iEx_ec + blog: https://medium.com/iex-ec + twitter: https://x.com/iEx_ec + discord: https://discord.com/invite/pbt9m98wnU + facebook: https://www.facebook.com/iexecteam + telegram: https://discord.com/invite/pbt9m98wnU have_token: true +token_link: https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375 tokens: - - symbol: RLC + - name: RLC + symbol: RLC + network: Ethereum + contract_address: "0x607F4C5BB672230e8672085532f7e901544a7375" +sunset: false + +usecases: + - infrastructure diff --git a/src/projects/imperiume/index.yaml b/src/projects/imperiume/index.yaml index a40e2ab7..f2921a0f 100644 --- a/src/projects/imperiume/index.yaml +++ b/src/projects/imperiume/index.yaml @@ -1,8 +1,11 @@ name: Imperiume categories: - - wallets + - applications description: Non-custodial wallet links: web: https://www.imperiume.io/wallet sunset: true + +usecases: + - wallets diff --git a/src/projects/incognet/index.yaml b/src/projects/incognet/index.yaml index 0303a60f..b437c002 100644 --- a/src/projects/incognet/index.yaml +++ b/src/projects/incognet/index.yaml @@ -1,7 +1,7 @@ name: Incognet categories: - infrastructure -description: 'Privacy-respecting ISP, hosting, and VPS provider that can be accessed on I2P, TOR, and Yggdrasil - accepts various cryptocurrencies as payment (Bitcoin, Monero, Litecoin)' +description: "Privacy-respecting ISP, hosting, and VPS provider that can be accessed on I2P, TOR, and Yggdrasil - accepts various cryptocurrencies as payment (Bitcoin, Monero, Litecoin)" team: anonymous: true links: @@ -9,4 +9,6 @@ links: blog: https://blog.incognet.io/ tor: http://incoghostm2dytlqdiaj3lmtn7x2l5gb76jhabb6ywbqhjfzcoqq6aad.onion/ twitter: https://x.com/IncogNetLLC - + +usecases: + - infrastructure diff --git a/src/projects/integritee/index.yaml b/src/projects/integritee/index.yaml index a5099ffc..2d37ec23 100644 --- a/src/projects/integritee/index.yaml +++ b/src/projects/integritee/index.yaml @@ -1,7 +1,7 @@ name: Integritee categories: - infrastructure -description: 'Integritee is a highly scalable, privacy-enabling network in the Polkadot ecosystem with parachains on Polkadot and Kusama' +description: "Integritee is a highly scalable, privacy-enabling network in the Polkadot ecosystem with parachains on Polkadot and Kusama" team: anonymous: true links: @@ -19,3 +19,6 @@ project_status: version: testnet testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/interep/index.yaml b/src/projects/interep/index.yaml index f2ab1133..1530be64 100644 --- a/src/projects/interep/index.yaml +++ b/src/projects/interep/index.yaml @@ -1,6 +1,6 @@ name: Interep categories: - - did + - applications description: Anti-sybil as a service links: web: https://interep.link @@ -10,3 +10,6 @@ links: blog: https://mirror.xyz/privacy-scaling-explorations.eth/w7zCHj0xoxIfhoJIxI-ZeYIXwvNatP1t4w0TsqSIBe4 education: https://x.com/PrivacyScaling/status/1570046655998709764 have_token: true + +usecases: + - did diff --git a/src/projects/iodeos/index.yaml b/src/projects/iodeos/index.yaml index 22bf1658..48fdde6e 100644 --- a/src/projects/iodeos/index.yaml +++ b/src/projects/iodeos/index.yaml @@ -1,7 +1,7 @@ name: iodéOS categories: - - os -description: 'Fork of LineageOS with a Trust interface that will help you understand the security of your device and warn incoming threats. Recently released, still in beta' + - applications +description: "Fork of LineageOS with a Trust interface that will help you understand the security of your device and warn incoming threats. Recently released, still in beta" team: anonymous: true links: @@ -11,6 +11,9 @@ links: twitter: https://twitter.com/iode_tech project_status: live_status: true - version: 5 + version: "5" testnet: false mainnet: true + +usecases: + - operation-systems diff --git a/src/projects/iron-fish/index.yaml b/src/projects/iron-fish/index.yaml index 2d87cff8..d1cb2121 100644 --- a/src/projects/iron-fish/index.yaml +++ b/src/projects/iron-fish/index.yaml @@ -1,9 +1,9 @@ name: Iron Fish categories: - - currency + - defi description: The Privacy Platform for Web3 -ecosystem: Iron Fish -project_status: +ecosystem: [iron-fish] +project_status: live status: true version: testnet testnet: true @@ -20,3 +20,6 @@ links: telegram: https://t.me/ironfishcryptochat team: anonymous: false + +usecases: + - currency diff --git a/src/projects/ixec/index.yaml b/src/projects/ixec/index.yaml deleted file mode 100644 index e69de29b..00000000 diff --git a/src/projects/ixec/logo.png b/src/projects/ixec/logo.png deleted file mode 100644 index 0ab04218..00000000 Binary files a/src/projects/ixec/logo.png and /dev/null differ diff --git a/src/projects/jami/index.yaml b/src/projects/jami/index.yaml index 180070d6..73430392 100644 --- a/src/projects/jami/index.yaml +++ b/src/projects/jami/index.yaml @@ -1,7 +1,7 @@ name: Jami categories: - - messaging -description: 'a free/libre, end-to-end encrypted, and private communication platform' + - applications +description: "a free/libre, end-to-end encrypted, and private communication platform" team: anonymous: true links: @@ -12,3 +12,6 @@ links: blog: https://jami.net/tag/articles/ twitter: https://x.com/jami_social facebook: https://www.facebook.com/JamiCommunication + +usecases: + - messaging diff --git a/src/projects/joinmarket/index.yaml b/src/projects/joinmarket/index.yaml index db6e2f3c..7032e634 100644 --- a/src/projects/joinmarket/index.yaml +++ b/src/projects/joinmarket/index.yaml @@ -1,6 +1,6 @@ name: JoinMarket categories: - - mixing-service + - applications description: Decentralized bitcoin coinjoin for improving privacy and fungibility. team: anonymous: true @@ -10,4 +10,7 @@ links: github: https://github.com/JoinMarket-Org docs: https://joinmarket-org.github.io/joinmarket-clientserver/ twitter: https://twitter.com/joinmarket -sunset: true +sunset: true + +usecases: + - mixing-service diff --git a/src/projects/juno-analytics/index.yaml b/src/projects/juno-analytics/index.yaml index d09afdd4..ca96d473 100644 --- a/src/projects/juno-analytics/index.yaml +++ b/src/projects/juno-analytics/index.yaml @@ -1,7 +1,7 @@ name: Juno Analytics categories: - - dapps -description: 'Simple, performant, and open-source web3 analytics solution designed with privacy in mind for the developers building decentralized dapps' + - applications +description: "Simple, performant, and open-source web3 analytics solution designed with privacy in mind for the developers building decentralized dapps" links: web: >- https://juno.build/blog/introducing-juno-analytics-unlock-deeper-insights-with-privacy-in-mind @@ -12,3 +12,6 @@ links: blog: https://juno.build/blog twitter: https://x.com/junobuild discord: https://discord.com/invite/wHZ57Z2RAG + +usecases: + - dapps diff --git a/src/projects/justnote/index.yaml b/src/projects/justnote/index.yaml index 7f521b6f..55ead238 100644 --- a/src/projects/justnote/index.yaml +++ b/src/projects/justnote/index.yaml @@ -1,7 +1,7 @@ name: Justnote categories: - - dapps -description: 'A simple, fast, privacy-focused note-taking app that you can use easily, take notes rapidly, and, importantly, truly own your account and data.' + - applications +description: "A simple, fast, privacy-focused note-taking app that you can use easily, take notes rapidly, and, importantly, truly own your account and data." links: web: https://justnote.cc github: https://github.com/stxapps/justnote-client @@ -9,3 +9,6 @@ links: twitter: https://x.com/justnotecc project_status: live_status: true + +usecases: + - dapps diff --git a/src/projects/keep/index.yaml b/src/projects/keep/index.yaml index c0c3212a..eb74d003 100644 --- a/src/projects/keep/index.yaml +++ b/src/projects/keep/index.yaml @@ -1,10 +1,13 @@ name: Keep categories: - infrastructure -description: 'The privacy-focused infrastructure behind tBTCv2, the only truly decentralized solution for Bitcoin on Ethereum' +description: "The privacy-focused infrastructure behind tBTCv2, the only truly decentralized solution for Bitcoin on Ethereum" links: web: https://keep.network/info github: https://github.com/keep-network/ have_token: true tokens: - symbol: KEEP + +usecases: + - infrastructure diff --git a/src/projects/kelvpn/index.yaml b/src/projects/kelvpn/index.yaml index 907c1b97..a4cac7ea 100644 --- a/src/projects/kelvpn/index.yaml +++ b/src/projects/kelvpn/index.yaml @@ -1,8 +1,8 @@ name: KelVPN categories: - - vpn + - applications description: The first ever deanon-proof VPN is now available. -ecosystem: multichain +ecosystem: [multichain] links: web: https://kelvpn.com github: https://gitlab.demlabs.net/cellframe/cellframe-sdk @@ -19,3 +19,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - vpn diff --git a/src/projects/kilt/index.yaml b/src/projects/kilt/index.yaml index 4dc2216b..86546456 100644 --- a/src/projects/kilt/index.yaml +++ b/src/projects/kilt/index.yaml @@ -1,8 +1,8 @@ name: KILT categories: - - did -description: 'A blockchain identity protocol for issuing self-sovereign, verifiable credentials and decentralized identifiers' -ecosystem: multichain + - applications +description: "A blockchain identity protocol for issuing self-sovereign, verifiable credentials and decentralized identifiers" +ecosystem: [multichain] links: web: https://www.kilt.io github: https://github.com/KILTprotocol @@ -19,3 +19,6 @@ team: link: https://www.kilt.io/team have_token: true token_link: https://coinmarketcap.com/it/currencies/kiltprotocol/ + +usecases: + - did diff --git a/src/projects/krebit/index.yaml b/src/projects/krebit/index.yaml index b4a531c6..c70a6ea6 100644 --- a/src/projects/krebit/index.yaml +++ b/src/projects/krebit/index.yaml @@ -1,6 +1,6 @@ name: Krebit categories: - - dapps + - applications description: Open identity verification protocol for Web3 Verifiable Credentials links: web: https://krebit.id @@ -10,3 +10,6 @@ links: blog: https://www.publish0x.com/krebit twitter: https://x.com/KrebitID discord: https://discord.com/invite/y7sMYVjxrd + +usecases: + - dapps diff --git a/src/projects/krux/index.yaml b/src/projects/krux/index.yaml index 837e7167..ed929bb3 100644 --- a/src/projects/krux/index.yaml +++ b/src/projects/krux/index.yaml @@ -1,8 +1,8 @@ name: Krux categories: - - wallets + - applications description: Open-source signing device firmware for Bitcoin -ecosystem: Bitcoin +ecosystem: [bitcoin] links: web: https://selfcustody.github.io/krux/ github: https://github.com/selfcustody/krux @@ -15,3 +15,6 @@ project_status: version: 24.03.0 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/kyc-not-me/index.yaml b/src/projects/kyc-not-me/index.yaml index 6e649acf..f023748f 100644 --- a/src/projects/kyc-not-me/index.yaml +++ b/src/projects/kyc-not-me/index.yaml @@ -1,11 +1,14 @@ name: KYC not me categories: - - kyc -description: 'buy, exchange, trade and use cryptos without needing to identify themselves, and preserving the decentralized and self-governed essence of Cryptocurrencies (only BTC & XMR)' + - applications +description: "buy, exchange, trade and use cryptos without needing to identify themselves, and preserving the decentralized and self-governed essence of Cryptocurrencies (only BTC & XMR)" team: anonymous: true links: web: https://kycnot.me/ github: https://codeberg.org/pluja/kycnot.me - + twitter: https://x.com/kycnot + +usecases: + - kyc-solution diff --git a/src/projects/layerx/index.yaml b/src/projects/layerx/index.yaml index d4466d70..937663df 100644 --- a/src/projects/layerx/index.yaml +++ b/src/projects/layerx/index.yaml @@ -5,3 +5,6 @@ description: A privacy-preserving blockchain on Substrate links: web: https://layerx.co.jp github: https://github.com/LayerXcom + +usecases: + - infrastructure diff --git a/src/projects/leading-privacy-alliance/index.yaml b/src/projects/leading-privacy-alliance/index.yaml index f7a44775..52547910 100644 --- a/src/projects/leading-privacy-alliance/index.yaml +++ b/src/projects/leading-privacy-alliance/index.yaml @@ -1,8 +1,11 @@ name: Leading Privacy Alliance categories: - - alliances -description: 'The purpose of the LPA of Web3 is to speak up for everyone working in the Web3 industry and make them aware of the need for privacy (by design)' + - social-and-communications +description: "The purpose of the LPA of Web3 is to speak up for everyone working in the Web3 industry and make them aware of the need for privacy (by design)" links: web: https://www.leadingprivacy.com blog: https://medium.com/hoprnet/hopr-co-founds-leading-privacy-alliance-of-web3-99e057722deb twitter: https://twitter.com/LeadingPrivacy + +usecases: + - alliances diff --git a/src/projects/legendao/index.yaml b/src/projects/legendao/index.yaml index 121e0b14..d0a57cd2 100644 --- a/src/projects/legendao/index.yaml +++ b/src/projects/legendao/index.yaml @@ -1,7 +1,7 @@ name: Legendao categories: - - nft -description: 'The play-to-mint NFT platform, powered by Secret Network, that enables top artists, brands, and NFT creators to launch their NFT projects in a unique, gamified way' + - applications +description: "The play-to-mint NFT platform, powered by Secret Network, that enables top artists, brands, and NFT creators to launch their NFT projects in a unique, gamified way" links: web: https://legendao.io blog: https://medium.com/legendao @@ -11,5 +11,8 @@ have_token: true tokens: - name: LegendaoToken symbol: LGND - network: Cosmos + network: Cosmos sunset: false + +usecases: + - nft-community diff --git a/src/projects/leo-wallet/index.yaml b/src/projects/leo-wallet/index.yaml index 726bc329..1896df2c 100644 --- a/src/projects/leo-wallet/index.yaml +++ b/src/projects/leo-wallet/index.yaml @@ -1,8 +1,8 @@ name: Leo wallet categories: - - wallets + - applications description: Safe and easy way to interact with the Aleo blockchain -ecosystem: Aleo +ecosystem: [aleo] links: web: https://leo.app/ github: https://github.com/demox-labs @@ -20,3 +20,6 @@ team: version: Mainnet testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/light-protocol/index.yaml b/src/projects/light-protocol/index.yaml index 3b20d459..4e3bbab6 100644 --- a/src/projects/light-protocol/index.yaml +++ b/src/projects/light-protocol/index.yaml @@ -11,3 +11,6 @@ links: have_token: true tokens: - symbol: LIGHT + +usecases: + - infrastructure diff --git a/src/projects/light-shield/index.yaml b/src/projects/light-shield/index.yaml index abc5cdf9..e17f14fe 100644 --- a/src/projects/light-shield/index.yaml +++ b/src/projects/light-shield/index.yaml @@ -1,2 +1,5 @@ name: Light Shield categories: [defi] + +usecases: + - defi diff --git a/src/projects/liquidfactory/index.yaml b/src/projects/liquidfactory/index.yaml index 62812222..80ea5aaa 100644 --- a/src/projects/liquidfactory/index.yaml +++ b/src/projects/liquidfactory/index.yaml @@ -1,6 +1,9 @@ name: LiquidFactory categories: - - dapps + - applications description: Unlocks liquidity to DeFi, GameFi & NFTs. links: web: https://liquidfactory.io + +usecases: + - dapps diff --git a/src/projects/lit/index.yaml b/src/projects/lit/index.yaml index d36a3809..e6a28eaf 100644 --- a/src/projects/lit/index.yaml +++ b/src/projects/lit/index.yaml @@ -3,10 +3,16 @@ categories: - infrastructure description: Builders of apps, wallets, protocols, and AI agents use the Lit network for decentralized signing, encryption, and compute. team: - - name: David Sneider - role: Co-Founder - - name: Chris Cassano - role: Co-Founder & CTO + anonymous: false + company: + link: https://example-company.com + teammembers: + - name: David Sneider + role: Co-Founder + link: https://www.linkedin.com/in/davidsneider + - name: Chris Cassano + role: Co-Founder & CTO + link: https://www.linkedin.com/in/chriscassano links: web: https://litprotocol.com github: https://github.com/LIT-Protocol/ @@ -25,3 +31,6 @@ project_status: audits: - name: 4 Audits from Oct.23 - Jan.24 link: https://drive.google.com/drive/folders/1Rrht88iUkzpofwl1CvP9gEjqY60BKyFn?usp=drive_link&ref=spark.litprotocol.com + +usecases: + - infrastructure diff --git a/src/projects/litecash/index.yaml b/src/projects/litecash/index.yaml index 5df2d542..617e88fe 100644 --- a/src/projects/litecash/index.yaml +++ b/src/projects/litecash/index.yaml @@ -1,8 +1,8 @@ name: Litecash categories: - - currency -description: 'The first fork of Beam. We removed the founders reward and are 100% community-funded' -ecosystem: Mimblewimble + - defi +description: "The first fork of Beam. We removed the founders reward and are 100% community-funded" +ecosystem: [mimblewimble] links: web: https://lite-cash.com github: https://github.com/Litecash-Dev @@ -13,3 +13,6 @@ links: telegram: https://t.me/litecashgroup team: anonymous: true + +usecases: + - currency diff --git a/src/projects/litentry/index.yaml b/src/projects/litentry/index.yaml index 0bc95cff..6f768f52 100644 --- a/src/projects/litentry/index.yaml +++ b/src/projects/litentry/index.yaml @@ -1,8 +1,8 @@ name: Litentry categories: - - did -description: 'A decentralized identity aggregator, providing the structure and tools to empower you and your identity' -ecosystem: multichain + - applications +description: "A decentralized identity aggregator, providing the structure and tools to empower you and your identity" +ecosystem: [multichain] links: web: https://litentry.com github: https://github.com/litentry @@ -18,3 +18,6 @@ team: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2240805422%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=2W3 have_token: true token_link: https://coinmarketcap.com/currencies/litentry/ + +usecases: + - did diff --git a/src/projects/literully/index.yaml b/src/projects/literully/index.yaml index e6d9b385..c63669ff 100644 --- a/src/projects/literully/index.yaml +++ b/src/projects/literully/index.yaml @@ -1,8 +1,11 @@ name: Literully categories: - - dapps -description: 'A decentralized voting platform that allows users to create and participate in voting on any topic, all without giving up their privacy or control over their data' + - applications +description: "A decentralized voting platform that allows users to create and participate in voting on any topic, all without giving up their privacy or control over their data" links: web: https://literully.com github: https://docs.literully.com/articles/ twitter: https://x.com/literully + +usecases: + - dapps diff --git a/src/projects/logion/index.yaml b/src/projects/logion/index.yaml index be2b01db..8cce4dd0 100644 --- a/src/projects/logion/index.yaml +++ b/src/projects/logion/index.yaml @@ -1,7 +1,7 @@ name: Logion categories: - infrastructure -description: 'Substrate-based public blockchain operated by a decentralized network of legal officers. Logion redefines the connection between digital actions and their legal implications by ensuring every blockchain-based transaction is backed by robust legal certification' +description: "Substrate-based public blockchain operated by a decentralized network of legal officers. Logion redefines the connection between digital actions and their legal implications by ensuring every blockchain-based transaction is backed by robust legal certification" team: anonymous: false links: @@ -11,3 +11,6 @@ links: whitepaper: https://docs.logion.network/logion-white-paper twitter: https://twitter.com/logion_network have_token: true + +usecases: + - infrastructure diff --git a/src/projects/lokinet/index.yaml b/src/projects/lokinet/index.yaml index df41487f..878ff057 100644 --- a/src/projects/lokinet/index.yaml +++ b/src/projects/lokinet/index.yaml @@ -1,8 +1,8 @@ name: Lokinet categories: - - vpn + - applications description: A VPN tunnel that uses onion routing as the transport (build on Oxen blockchain) -ecosystem: multichain +ecosystem: [multichain] links: web: https://lokinet.org github: https://github.com/oxen-io/lokinet @@ -12,3 +12,6 @@ team: anonymous: true have_token: true token_link: https://www.coingecko.com/en/coins/oxen + +usecases: + - vpn diff --git a/src/projects/lunar/index.yaml b/src/projects/lunar/index.yaml index e01faef5..00de6d6c 100644 --- a/src/projects/lunar/index.yaml +++ b/src/projects/lunar/index.yaml @@ -1,6 +1,6 @@ name: Lunar aka Brume Wallet -categories: [wallets] -ecosystem: Ethereum +categories: [applications] +ecosystem: [ethereum] links: web:: https://bento.me/brume github:: https://github.com/brumewallet @@ -16,3 +16,6 @@ team: - name: Haz Æ 41 role: Founder link: https://x.com/hazae41 + +usecases: + - wallets diff --git a/src/projects/lunardao/index.yaml b/src/projects/lunardao/index.yaml index e2648b56..cb838d9d 100644 --- a/src/projects/lunardao/index.yaml +++ b/src/projects/lunardao/index.yaml @@ -1,6 +1,6 @@ name: LunarDAO categories: - - dao + - applications description: DAO fostering R&D and investments within Lunarpunk movement links: web: https://lunardao.net @@ -10,3 +10,6 @@ links: blog: https://lunardao.net/blog.html twitter: https://x.com/lunarpunksquad telegram: https://t.me/LunarDAO_Official + +usecases: + - dao diff --git a/src/projects/lurch1317/index.yaml b/src/projects/lurch1317/index.yaml index 9efb8888..84091213 100644 --- a/src/projects/lurch1317/index.yaml +++ b/src/projects/lurch1317/index.yaml @@ -1,7 +1,10 @@ name: lurch1317 categories: - - messaging -description: 'The omemo variant based on vault1317, which is an off-chain secure communication protocol with deniability under federated XMPP network with' + - applications +description: "The omemo variant based on vault1317, which is an off-chain secure communication protocol with deniability under federated XMPP network with" links: web: https://github.com/hardenedvault/lurch/blob/lurch1317/README-lurch1317.md github: https://github.com/hardenedvault/lurch/blob/lurch1317/README-lurch1317.md + +usecases: + - messaging diff --git a/src/projects/maci/index.yaml b/src/projects/maci/index.yaml index 430b6acd..87d74d3f 100644 --- a/src/projects/maci/index.yaml +++ b/src/projects/maci/index.yaml @@ -1,7 +1,7 @@ name: MACI categories: - infrastructure -description: 'Minimum Anti-Collusion Infrastructure (MACI) is a base layer for bribery-resistant, secure, and private digital voting' +description: "Minimum Anti-Collusion Infrastructure (MACI) is a base layer for bribery-resistant, secure, and private digital voting" team: anonymous: true links: @@ -18,4 +18,7 @@ project_status: audits: - name: RMACI Security Audit link: https://maci.pse.dev/assets/files/20240223_PSE_Audit_audit_report-a181b98b05198c102be49113c354b5f2.pdf - time: Feb., 2024 + time: Feb., 2024 + +usecases: + - infrastructure diff --git a/src/projects/manta-network/index.yaml b/src/projects/manta-network/index.yaml index 69c0b902..f3967856 100644 --- a/src/projects/manta-network/index.yaml +++ b/src/projects/manta-network/index.yaml @@ -1,7 +1,7 @@ name: Manta Network categories: - infrastructure -description: 'the multi-modular ecosystem for zero-knowledge (ZK) applications' +description: "the multi-modular ecosystem for zero-knowledge (ZK) applications" team: anonymous: true links: @@ -17,3 +17,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/manta-pay/index.yaml b/src/projects/manta-pay/index.yaml index 4a25de3f..8330e595 100644 --- a/src/projects/manta-pay/index.yaml +++ b/src/projects/manta-pay/index.yaml @@ -1,7 +1,7 @@ name: Manta Pay categories: [defi] -ecosystem: Polkadot -description: 'MantaPay is coming to Calamari as the first privacy payment solution in the Kusama ecosystem.' +ecosystem: [polkadot] +description: "MantaPay is coming to Calamari as the first privacy payment solution in the Kusama ecosystem." technology: type: zk features: @@ -15,3 +15,6 @@ project_status: testnet: true team: anonymous: true + +usecases: + - defi diff --git a/src/projects/marlin/index.yaml b/src/projects/marlin/index.yaml index 729a3a12..0782db77 100644 --- a/src/projects/marlin/index.yaml +++ b/src/projects/marlin/index.yaml @@ -1,9 +1,9 @@ name: Marlin categories: - - computing-network -description: 'Serverless backends for Web3 - Access and process data verifiably using ZKPs and TEEs' -ecosystem: Ethereum -project_status: + - infrastructure +description: "Serverless backends for Web3 - Access and process data verifiably using ZKPs and TEEs" +ecosystem: [ethereum] +project_status: live_status: true version: Mainnet testnet: true @@ -33,3 +33,5 @@ default_privacy: true storage: decentralized: true +usecases: + - computing diff --git a/src/projects/mask/index.yaml b/src/projects/mask/index.yaml index 44f5f704..5ee677f5 100644 --- a/src/projects/mask/index.yaml +++ b/src/projects/mask/index.yaml @@ -1,7 +1,7 @@ name: Mask categories: - - dapps -description: 'brings privacy and benefits from Web3 to social media like Facebook & Twitter - with an open-sourced browser extension' + - applications +description: "brings privacy and benefits from Web3 to social media like Facebook & Twitter - with an open-sourced browser extension" links: web: https://mask.io github: https://github.com/DimensionDev/Maskbook @@ -12,3 +12,6 @@ links: discord: https://discord.com/invite/4SVXvj7 facebook: https://www.facebook.com/masknetwork telegram: https://t.me/maskbook_group#telegram + +usecases: + - dapps diff --git a/src/projects/masq/index.yaml b/src/projects/masq/index.yaml index 77695b7a..eaef09e2 100644 --- a/src/projects/masq/index.yaml +++ b/src/projects/masq/index.yaml @@ -1,37 +1,23 @@ name: MASQ categories: - infrastructure - - VPN - - Browser - + - applications + logos: - file: MASQ-token-v2.png ext: png url: MASQ-token-v2.png ecosystem: - - Ethereum - - Polygon - -project_type: Decentralized privacy network protocol -description: 'a web3-native browser, dMeshVPN, dApp Store, protocol, and earning ecosystem that makes living in Web3 anonymous and private' -product_launch_day: "2019-10-20" + - ethereum + - polygon -token: - - name: MASQ - symbol: MASQ - network: Ethereum - contract_address: "0x06F3C323f0238c72BF35011071f2b5B7F43A054c" - link: https://etherscan.io/token/0x06F3C323f0238c72BF35011071f2b5B7F43A054c - - name: MASQ - symbol: MASQ - network: Polygon - contract_address: "0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35" - link: https://polygonscan.com/token/0xee9a352f6aac4af1a5b9f467f6a93e0ffbe9dd35 +project_type: Decentralized privacy network protocol +description: "a web3-native browser, dMeshVPN, dApp Store, protocol, and earning ecosystem that makes living in Web3 anonymous and private" +product_launch_day: "2019-10-20" team: anonymous: true - links: web: https://www.masqbrowser.com/ github: https://github.com/MASQ-Project @@ -43,7 +29,7 @@ links: discord: https://discord.gg/masq youtube: http://www.youtube.com/@MASQNetwork education: https://docs.masq.ai/masq/getting-started/faqs - + technology: type: P2P networking name: dMeshVPN @@ -51,13 +37,11 @@ technology: - private - encrypted - incentivized - + blockchain_features: opensource: true p2p: true asset_custody_type: Non-custodial - upgradability: - enabled: false project_status: version: v0.9 @@ -65,23 +49,21 @@ project_status: testnet: true mainnet: false - licences: GPLv3 License privacy_policy: defined: true link: https://www.notion.so/MASQ-Network-Privacy-Practices-a58209dd0089404b80474da924015c03?pvs=4 data_usage: Not Using - + default_privacy: true storage: decentralized: true - -tracebility: - tracked_data: Chains activity - kyc: false - sign_in_type_requirments: wallet - third_party_dependency: false social_trust: Team Multisigs & Dune analytics + +usecases: + - infrastructure + - vpn + - browser diff --git a/src/projects/mbuddy/index.yaml b/src/projects/mbuddy/index.yaml index c795e11e..db761d82 100644 --- a/src/projects/mbuddy/index.yaml +++ b/src/projects/mbuddy/index.yaml @@ -1,8 +1,8 @@ name: MBuddy categories: - - did + - applications description: Web 3.0+ identity infrastructure -ecosystem: multichain +ecosystem: [multichain] links: web: https://metamirror.space/ docs: https://docs.metamirror.space/mbuddy/introduction/overview @@ -13,3 +13,6 @@ links: discord: https://discord.com/invite/jFxBtJCMAJ telegram: https://t.me/MetaMirror have_token: true + +usecases: + - did diff --git a/src/projects/meile/index.yaml b/src/projects/meile/index.yaml index 0cddd6df..3e047fb8 100644 --- a/src/projects/meile/index.yaml +++ b/src/projects/meile/index.yaml @@ -1,8 +1,8 @@ name: MEILE categories: - - vpn + - applications description: A decentralized VPN Client utilizing the Sentinel Blockchain -ecosystem: multichain +ecosystem: [multichain] links: web: https://mathnodes.com/ github: https://github.com/MathNodes @@ -17,3 +17,6 @@ project_status: version: v1.8.0 testnet: false mainnet: true + +usecases: + - vpn diff --git a/src/projects/mejhool/index.yaml b/src/projects/mejhool/index.yaml index 640e2b32..2177a7a1 100644 --- a/src/projects/mejhool/index.yaml +++ b/src/projects/mejhool/index.yaml @@ -1,14 +1,16 @@ name: Mejhool categories: - - messaging -description: 'A decentralized web and mobile app with peer-to-peer text messaging, decentralized file transfer, and voice-over-IP service' + - social-and-communications +description: "A decentralized web and mobile app with peer-to-peer text messaging, decentralized file transfer, and voice-over-IP service" team: - - name: Dr. Mohamed Al Arab - role: Founder - CEO - - name: Yusuf Haji - role: Founder - - name: Fahad Faqeeh - role: Founder + anonymous: false + teammembers: + - name: Dr. Mohamed Al Arab + role: Founder - CEO + - name: Yusuf Haji + role: Founder + - name: Fahad Faqeeh + role: Founder links: web: https://hzmcoin.com/mejhool/ whitepaper: https://hzmcoin.com/wp-content/uploads/whitepaper.pdf @@ -17,3 +19,6 @@ links: have_token: true tokens: - symbol: HZM + +usecases: + - messaging diff --git a/src/projects/mel/index.yaml b/src/projects/mel/index.yaml index 139cb65d..a998a9f8 100644 --- a/src/projects/mel/index.yaml +++ b/src/projects/mel/index.yaml @@ -1,10 +1,12 @@ name: Mel categories: - infrastructure -description: 'A clean-slate L1 for a decentralized, secure, and private internet beyond blockchains - a vibrant ecosystem of full-stack decentralized apps freed from the current on-chain smart contract model, yet still ultimately secured by blockchain consensus' +description: "A clean-slate L1 for a decentralized, secure, and private internet beyond blockchains - a vibrant ecosystem of full-stack decentralized apps freed from the current on-chain smart contract model, yet still ultimately secured by blockchain consensus" team: - - name: Eric Tung - role: Founder CEO & CTO + anonymous: false + teammembers: + - name: Eric Tung + role: Founder CEO & CTO links: web: https://melproject.org/en/ github: https://github.com/mel-project @@ -13,3 +15,6 @@ links: yellow-paper: https://docs.themelio.org/specifications/yellow/ Twitter: https://twitter.com/melproject_org have_token: true + +usecases: + - infrastructure diff --git a/src/projects/mina/index.yaml b/src/projects/mina/index.yaml index b782335b..b95a8946 100644 --- a/src/projects/mina/index.yaml +++ b/src/projects/mina/index.yaml @@ -1,7 +1,7 @@ name: Mina categories: - infrastructure -description: 'The world’s lightest blockchain, powered by participants. Using zero knowledge technology' +description: "The world’s lightest blockchain, powered by participants. Using zero knowledge technology" team: anonymous: true links: @@ -18,4 +18,6 @@ project_status: version: Mainnet testnet: true mainnet: true - + +usecases: + - infrastructure diff --git a/src/projects/minado/index.yaml b/src/projects/minado/index.yaml index c5fc8157..74e15540 100644 --- a/src/projects/minado/index.yaml +++ b/src/projects/minado/index.yaml @@ -1,7 +1,10 @@ name: Minado categories: - - mixing-service + - applications description: Zk Privacy Solution on Mina Protocol. product_readiness: sunset links: web: https://github.com/Nicolascoding27/Zkapp-mina-ui + +usecases: + - mixing-service diff --git a/src/projects/mind-network/index.yaml b/src/projects/mind-network/index.yaml index 7947a331..0114ba67 100644 --- a/src/projects/mind-network/index.yaml +++ b/src/projects/mind-network/index.yaml @@ -1,7 +1,7 @@ name: Mind Network categories: - infrastructure -description: 'Mind Network is a Fully Homomorphic Encryption (FHE) Layer leading towards to the era of HTTPZ, an end-to-end encryption internet' +description: "Mind Network is a Fully Homomorphic Encryption (FHE) Layer leading towards to the era of HTTPZ, an end-to-end encryption internet" team: anonymous: true @@ -16,3 +16,6 @@ project_status: version: Testnet testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/mix-btc/index.yaml b/src/projects/mix-btc/index.yaml index 1fc040ea..ab268dba 100644 --- a/src/projects/mix-btc/index.yaml +++ b/src/projects/mix-btc/index.yaml @@ -1,6 +1,6 @@ name: Mix BTC categories: - - mixing-service + - applications description: Bitcoin mixer. team: anonymous: true @@ -12,3 +12,6 @@ project_status: version: unkown testnet: false mainnet: false + +usecases: + - mixing-service diff --git a/src/projects/mobilecoin/index.yaml b/src/projects/mobilecoin/index.yaml index e202575e..0a8d2041 100644 --- a/src/projects/mobilecoin/index.yaml +++ b/src/projects/mobilecoin/index.yaml @@ -1,8 +1,8 @@ name: MobileCoin categories: - - currency + - defi description: MobileCoin makes global payments inexpensive, secure and fast -ecosystem: mobilecoin +ecosystem: [mobilecoin] links: web: https://mobilecoin.com github: https://github.com/mobilecoinofficial @@ -12,3 +12,6 @@ links: facebook: https://www.facebook.com/people/Sentz-App/61550924458469/ team: anonymous: false + +usecases: + - currency diff --git a/src/projects/monero-pocketnode/index.yaml b/src/projects/monero-pocketnode/index.yaml index f38cbccf..4658ea63 100644 --- a/src/projects/monero-pocketnode/index.yaml +++ b/src/projects/monero-pocketnode/index.yaml @@ -1,7 +1,10 @@ name: Monero PocketNode categories: - - node + - infrastructure description: A Monero node for your Android Device. links: web: https://github.com/CryptoGrampy/xmr-pocket-node sunset: true + +usecases: + - node diff --git a/src/projects/monero/index.yaml b/src/projects/monero/index.yaml index 649ba0d2..5a2ebcd7 100644 --- a/src/projects/monero/index.yaml +++ b/src/projects/monero/index.yaml @@ -1,9 +1,9 @@ name: Monero categories: - - currency -description: 'Private, decentralized cryptocurrency that keeps your finances confidential and secure' -ecosystem: Monero -project_status: + - defi +description: "Private, decentralized cryptocurrency that keeps your finances confidential and secure" +ecosystem: [monero] +project_status: live_status: true version: Mainnet testnet: true @@ -18,3 +18,6 @@ links: telegram: https://t.me/monero team: anonymous: true + +usecases: + - currency diff --git a/src/projects/monerujo/index.yaml b/src/projects/monerujo/index.yaml index e1293b5b..e8c64333 100644 --- a/src/projects/monerujo/index.yaml +++ b/src/projects/monerujo/index.yaml @@ -1,6 +1,6 @@ name: Monerujo categories: - - wallets + - applications description: Android wallet for Moneto links: web: https://www.monerujo.io @@ -15,4 +15,7 @@ project_status: team: anonymous: false teammembers: - link: https://www.monerujo.io/team.html + - link: https://www.monerujo.io/team.html + +usecases: + - wallets diff --git a/src/projects/motherbored/index.yaml b/src/projects/motherbored/index.yaml index 21361107..07162194 100644 --- a/src/projects/motherbored/index.yaml +++ b/src/projects/motherbored/index.yaml @@ -1,10 +1,13 @@ name: Motherbored categories: - hardware -description: '#dVPN hardware (node + SM card)' -ecosystem: Solana +description: "#dVPN hardware (node + SM card)" +ecosystem: [solana] links: web: https://store.motherbored.limited github: https://github.com/boringprotocol/motherbored team: anonymous: true + +usecases: + - hardware diff --git a/src/projects/mullvad-browser/index.yaml b/src/projects/mullvad-browser/index.yaml index 12c44312..a1afb8e9 100644 --- a/src/projects/mullvad-browser/index.yaml +++ b/src/projects/mullvad-browser/index.yaml @@ -1,9 +1,12 @@ name: Mullvad Browser categories: - - browser -description: 'The Mullvad Browser is a privacy-focused web browser developed in a collaboration between Mullvad VPN and the Tor Project' + - applications +description: "The Mullvad Browser is a privacy-focused web browser developed in a collaboration between Mullvad VPN and the Tor Project" links: web: https://mullvad.net/en github: https://github.com/mullvad/mullvad-browser blog: https://mullvad.net/it/blog twitter: https://x.com/mullvadnet + +usecases: + - browser diff --git a/src/projects/mullvad-vpn/index.yaml b/src/projects/mullvad-vpn/index.yaml index c9d12514..27f47af0 100644 --- a/src/projects/mullvad-vpn/index.yaml +++ b/src/projects/mullvad-vpn/index.yaml @@ -1,8 +1,8 @@ name: Mullvad VPN categories: - - vpn -description: 'One of the most privacy-focused VPN providers (check their Privacy Policy and history)' -ecosystem: no chain + - applications +description: "One of the most privacy-focused VPN providers (check their Privacy Policy and history)" +ecosystem: [no-chain] links: web: https://mullvad.net/ github: https://github.com/mullvad @@ -14,6 +14,9 @@ team: link: https://mullvad.net/en/about project_status: live_status: true - version: 2024.3 + version: "2024.3" testnet: false mainnet: false + +usecases: + - vpn diff --git a/src/projects/mymonero/index.yaml b/src/projects/mymonero/index.yaml index cb9e14e1..5b4e9213 100644 --- a/src/projects/mymonero/index.yaml +++ b/src/projects/mymonero/index.yaml @@ -1,10 +1,13 @@ name: MyMonero categories: - - wallets -description: 'The simplest way to use the next-generation private digital currency Monero, at the sweet spot between security, convenience, and features' -ecosystem: Monero + - applications +description: "The simplest way to use the next-generation private digital currency Monero, at the sweet spot between security, convenience, and features" +ecosystem: [monero] links: web: https://mymonero.com/ github: https://github.com/mymonero team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/mynawallet/index.yaml b/src/projects/mynawallet/index.yaml index ff7f0bb4..62212580 100644 --- a/src/projects/mynawallet/index.yaml +++ b/src/projects/mynawallet/index.yaml @@ -1,8 +1,8 @@ name: MynaWallet categories: - - wallets + - applications description: Use your Japanese My Number card as a crypto wallet, via verifying the full passport validity inside ZK and using it to sign a transaction. -ecosystem: Ethereum +ecosystem: [ethereum] links: web: https://ethglobal.com/showcase/myna-uxzdd github: https://github.com/MynaWallet/monorepo @@ -17,3 +17,5 @@ project_status: testnet: false mainnet: false +usecases: + - wallets diff --git a/src/projects/mynode/index.yaml b/src/projects/mynode/index.yaml index b16622c3..6fc82593 100644 --- a/src/projects/mynode/index.yaml +++ b/src/projects/mynode/index.yaml @@ -1,6 +1,6 @@ name: myNode categories: - - node + - infrastructure description: The easiest, most powerful way to run a Bitcoin and Lightning node. team: anonymous: true @@ -17,3 +17,6 @@ project_status: mainnet: true have_token: false sunset: false + +usecases: + - node diff --git a/src/projects/mysterium-vpn/index.yaml b/src/projects/mysterium-vpn/index.yaml index 3e2ea581..a04c016b 100644 --- a/src/projects/mysterium-vpn/index.yaml +++ b/src/projects/mysterium-vpn/index.yaml @@ -1,8 +1,8 @@ name: Mysterium VPN categories: - - vpn + - applications description: A global, distributed network powered by everyday people. -ecosystem: multichain +ecosystem: [multichain] links: web: https://www.mysterium.network/mysteriumvpn github: https://github.com/mysteriumnetwork/node @@ -14,3 +14,6 @@ team: link: https://www.mysterium.network/team have_token: true token_link: https://coinmarketcap.com/currencies/mysterium/ + +usecases: + - vpn diff --git a/src/projects/mysterium/index.yaml b/src/projects/mysterium/index.yaml index 610ca086..bd4ac6c6 100644 --- a/src/projects/mysterium/index.yaml +++ b/src/projects/mysterium/index.yaml @@ -3,10 +3,14 @@ categories: - infrastructure description: An open-source ecosystem of tools and infrastructure to liberate the web team: - - name: RobertasVis - role: Founder - - name: Waldz - role: Founder & Lead Developer + anonymous: false + teammembers: + - name: RobertasVis + role: Founder + link: https://www.linkedin.com/in/robertasvis + - name: Waldz + role: Founder & Lead Developer + link: https://www.linkedin.com/in/waldz links: web: https://www.mysterium.network github: https://github.com/MysteriumNetwork @@ -16,3 +20,6 @@ links: have_token: true tokens: - symbol: MYST + +usecases: + - infrastructure diff --git a/src/projects/mystiko-network/index.yaml b/src/projects/mystiko-network/index.yaml index 748696df..a178091d 100644 --- a/src/projects/mystiko-network/index.yaml +++ b/src/projects/mystiko-network/index.yaml @@ -15,3 +15,6 @@ project_status: version: Mainnet V1 testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/namada/index.yaml b/src/projects/namada/index.yaml index cdc89890..1211a196 100644 --- a/src/projects/namada/index.yaml +++ b/src/projects/namada/index.yaml @@ -4,7 +4,6 @@ categories: description: Proof-of-Stake L1 for interchain asset-agnostic privacy. Namada uses CometBFT consensus and enables multi-asset shielded transfers for any native or non-native asset. team: anonymous: true -product_version: Testnet links: web: https://namada.net github: https://github.com/anoma/namada @@ -16,3 +15,6 @@ project_status: version: Testnet v.034.0 testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/natix-network/index.yaml b/src/projects/natix-network/index.yaml index 3ec51d2f..b732682c 100644 --- a/src/projects/natix-network/index.yaml +++ b/src/projects/natix-network/index.yaml @@ -1,7 +1,7 @@ name: NATIX Network categories: - - data-management -description: 'Patent-pending technology is the easiest way to make any camera smart and 100% privacy compliant' + - applications +description: "Patent-pending technology is the easiest way to make any camera smart and 100% privacy compliant" links: web: https://www.natix.network whitepaper: https://docs.natix.network/whitepaper @@ -9,3 +9,6 @@ links: discord: https://discord.com/invite/natixnetwork facebook: https://www.facebook.com/NATIX.Network telegram: https://t.me/NATIXNetwork + +usecases: + - data-management diff --git a/src/projects/navcoin/index.yaml b/src/projects/navcoin/index.yaml index d3831cc9..942afb4e 100644 --- a/src/projects/navcoin/index.yaml +++ b/src/projects/navcoin/index.yaml @@ -1,9 +1,9 @@ name: Navcoin categories: - - currency -description: 'An open-sourced digital currency offering fast and reliable payments with innovative technological and privacy features' -ecosystem: Navcoin -project_status: + - defi +description: "An open-sourced digital currency offering fast and reliable payments with innovative technological and privacy features" +ecosystem: [navcoin] +project_status: live_status: true version: Mainnet testnet: true @@ -20,3 +20,6 @@ links: telegram: https://t.me/navcoin team: anonymous: true + +usecases: + - currency diff --git a/src/projects/nerva/index.yaml b/src/projects/nerva/index.yaml index 113ef145..2d8e210d 100644 --- a/src/projects/nerva/index.yaml +++ b/src/projects/nerva/index.yaml @@ -1,8 +1,8 @@ name: Nerva categories: - - currency -description: 'Private and secure cryptocurrency' -ecosystem: Nerva + - defi +description: "Private and secure cryptocurrency" +ecosystem: [nerva] links: web: https://nerva.one/ docs: https://docs.nerva.one/ @@ -32,9 +32,11 @@ blockchain_features: default_privacy: true storage: decentralized: true -tracebility: - kyc: false + project_status: live_status: true testnet: false mainnet: true + +usecases: + - currency diff --git a/src/projects/next-id/index.yaml b/src/projects/next-id/index.yaml index 0c947e16..bec02058 100644 --- a/src/projects/next-id/index.yaml +++ b/src/projects/next-id/index.yaml @@ -1,6 +1,6 @@ name: Next.ID categories: - - did + - applications description: An open-sourced protocol that synergises your Web2 and Web3 profiles. links: web: https://next.id @@ -11,3 +11,6 @@ links: twitter: https://x.com/NextDotID telegram: https://t.me/NextDotIDofficial have_token: true + +usecases: + - did diff --git a/src/projects/nft-fair/index.yaml b/src/projects/nft-fair/index.yaml index 27f60128..13c1221d 100644 --- a/src/projects/nft-fair/index.yaml +++ b/src/projects/nft-fair/index.yaml @@ -1,7 +1,10 @@ name: NFT Fair categories: - - nft + - applications description: The do-good NFT launch platform. links: web: https://www.nftfair.app sunset: true + +usecases: + - nft-community diff --git a/src/projects/nicenode/index.yaml b/src/projects/nicenode/index.yaml index c8dee038..98907808 100644 --- a/src/projects/nicenode/index.yaml +++ b/src/projects/nicenode/index.yaml @@ -1,7 +1,7 @@ name: NiceNode categories: - - node -description: 'Launcher with a simple user experience to run an Ethereum node on your computer' + - infrastructure +description: "Launcher with a simple user experience to run an Ethereum node on your computer" team: anonymous: true links: @@ -10,6 +10,9 @@ links: twitter: https://twitter.com/nicenodeapp project_status: live_status: true - version: v6.0.5.-alpha + version: v6.0.5.-alpha testnet: false mainnet: true + +usecases: + - node diff --git a/src/projects/nighthawk-wallet/index.yaml b/src/projects/nighthawk-wallet/index.yaml index 224c1030..32c63820 100644 --- a/src/projects/nighthawk-wallet/index.yaml +++ b/src/projects/nighthawk-wallet/index.yaml @@ -1,8 +1,8 @@ name: Nighthawk Wallet categories: - - wallets + - applications description: Private Money in your pocket. -ecosystem: Zcash +ecosystem: [zcash] links: web: https://nighthawkwallet.com/ github: https://github.com/nighthawk-apps @@ -14,3 +14,6 @@ project_status: version: v2.2.14 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/nil-foundation/index.yaml b/src/projects/nil-foundation/index.yaml index a3af4224..254af38c 100644 --- a/src/projects/nil-foundation/index.yaml +++ b/src/projects/nil-foundation/index.yaml @@ -1,7 +1,7 @@ -name: '=nil; Foundation' +name: "=nil; Foundation" categories: - - rd -description: 'Foundation intends to create a tightly integrated set of technologies becoming a basis for secure data storages operating in insecure environments' + - infrastructure +description: "Foundation intends to create a tightly integrated set of technologies becoming a basis for secure data storages operating in insecure environments" links: web: https://nil.foundation github: https://github.com/nilfoundation @@ -10,3 +10,6 @@ links: twitter: https://x.com/nil_foundation discord: https://discord.com/invite/KmTAEjbmM3 telegram: https://t.me/nilfoundation + +usecases: + - research-and-development diff --git a/src/projects/nillion/index.yaml b/src/projects/nillion/index.yaml index d848d182..b75d33b5 100644 --- a/src/projects/nillion/index.yaml +++ b/src/projects/nillion/index.yaml @@ -1,8 +1,8 @@ name: Nillion categories: - - computing-network -description: 'The Secure Processing Layer of Web3' -ecosystem: multichain + - infrastructure +description: "The Secure Processing Layer of Web3" +ecosystem: [multichain] links: web: https://www.nillion.com github: https://github.com/NillionNetwork @@ -14,3 +14,6 @@ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU + +usecases: + - computing diff --git a/src/projects/nix-bitcoin/index.yaml b/src/projects/nix-bitcoin/index.yaml index b693bd1f..bd164863 100644 --- a/src/projects/nix-bitcoin/index.yaml +++ b/src/projects/nix-bitcoin/index.yaml @@ -1,7 +1,7 @@ name: nix-bitcoin categories: - - os -description: 'A collection of Nix packages and NixOS modules for easily installing full-featured Bitcoin nodes with an emphasis on security' + - applications +description: "A collection of Nix packages and NixOS modules for easily installing full-featured Bitcoin nodes with an emphasis on security" links: web: https://nixbitcoin.org github: https://github.com/fort-nix/nix-bitcoin @@ -11,3 +11,6 @@ project_status: version: 0.0.108 testnet: false mainnet: true + +usecases: + - operation-systems diff --git a/src/projects/njalla/index.yaml b/src/projects/njalla/index.yaml index edcc0fe4..eaf08d65 100644 --- a/src/projects/njalla/index.yaml +++ b/src/projects/njalla/index.yaml @@ -1,9 +1,12 @@ name: Njalla categories: - infrastructure -description: 'Anonymous domain name registrar and VPS provider based in Sweden, accepts various cryptocurrencies as payment (BTC, Litecoin, Monero, Zcash, Ethereum)' +description: "Anonymous domain name registrar and VPS provider based in Sweden, accepts various cryptocurrencies as payment (BTC, Litecoin, Monero, Zcash, Ethereum)" team: anonymous: true links: web: https://njal.la blog: https://njal.la/blog/ + +usecases: + - infrastructure diff --git a/src/projects/no-trust-verify/index.yaml b/src/projects/no-trust-verify/index.yaml index 1bfbe8e6..abfd5efa 100644 --- a/src/projects/no-trust-verify/index.yaml +++ b/src/projects/no-trust-verify/index.yaml @@ -1,6 +1,6 @@ name: No Trust Verify categories: - - rd + - infrastructure description: Take place to the next generation of privacy infrastructure. team: anonymous: false @@ -17,3 +17,6 @@ links: blog: https://blog.notrustverify.ch/ twitter: https://x.com/notrustverif telegram: https://t.me/notrustverify + +usecases: + - research-and-development diff --git a/src/projects/nocturne/index.yaml b/src/projects/nocturne/index.yaml index d96cbf74..595cb57e 100644 --- a/src/projects/nocturne/index.yaml +++ b/src/projects/nocturne/index.yaml @@ -1,12 +1,15 @@ name: Nocturne categories: - - dapps + - applications description: A protocol enabling usable on-chain privacy links: web: https://nocturnelabs.xyz github: https://nocturne-xyz.gitbook.io/nocturne/introduction/one-pager docs: https://nocturne-xyz.gitbook.io/nocturne - + blog: https://mirror.xyz/nocturnelabs.eth twitter: https://x.com/nocturne_xyz discord: https://discord.com/invite/MxZYtzzFmJ + +usecases: + - dapps diff --git a/src/projects/nodl-dojo/index.yaml b/src/projects/nodl-dojo/index.yaml index a37c0604..1e473872 100644 --- a/src/projects/nodl-dojo/index.yaml +++ b/src/projects/nodl-dojo/index.yaml @@ -1,14 +1,15 @@ name: nodl Dojo categories: - - node -description: 'A collaboration between nodl and the Samourai Wallet team. The nodl Dojo is a full Bitcoin and Lightning Network node' + - infrastructure +description: "A collaboration between nodl and the Samourai Wallet team. The nodl Dojo is a full Bitcoin and Lightning Network node" links: web: https://www.nodl.eu/ docs: https://docs.nodl.it/ twitter: https://twitter.com/nodl_it project_status: live_status: true - version: testnet: false mainnet: true - + +usecases: + - node diff --git a/src/projects/nodl-one/index.yaml b/src/projects/nodl-one/index.yaml index 303d9622..6c0e71f9 100644 --- a/src/projects/nodl-one/index.yaml +++ b/src/projects/nodl-one/index.yaml @@ -1,6 +1,9 @@ name: nodl One categories: - - node + - infrastructure description: A full Bitcoin and Lightning Network node. links: web: https://www.nodl.eu/products/nodl-one/ + +usecases: + - node diff --git a/src/projects/nomos/index.yaml b/src/projects/nomos/index.yaml index d9bc3f9a..7622861a 100644 --- a/src/projects/nomos/index.yaml +++ b/src/projects/nomos/index.yaml @@ -1,7 +1,7 @@ name: Nomos categories: - infrastructure -description: 'Nomos is a novel blockchain project that will address a network states fundamental need for adaptable privacy and sovereignty' +description: "Nomos is a novel blockchain project that will address a network states fundamental need for adaptable privacy and sovereignty" team: anonymous: true links: @@ -12,6 +12,9 @@ links: have_token: true project_status: live_status: false - version: false + version: "" testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/nonkyc/index.yaml b/src/projects/nonkyc/index.yaml index 6dcae964..4826b964 100644 --- a/src/projects/nonkyc/index.yaml +++ b/src/projects/nonkyc/index.yaml @@ -1,2 +1,5 @@ name: NonKYC categories: [defi] + +usecases: + - defi diff --git a/src/projects/notebook-labs/index.yaml b/src/projects/notebook-labs/index.yaml index 64cc2db9..00c634a4 100644 --- a/src/projects/notebook-labs/index.yaml +++ b/src/projects/notebook-labs/index.yaml @@ -1,7 +1,7 @@ name: Notebook labs categories: - - kyc -description: 'Built Zephyr - the first non-custodial onramp to decentralize the gates of crypto. Zephyr leverages Zero Knowledge proofs to ensure that on and off-rampers never need to rely on centralized institutions' + - applications +description: "Built Zephyr - the first non-custodial onramp to decentralize the gates of crypto. Zephyr leverages Zero Knowledge proofs to ensure that on and off-rampers never need to rely on centralized institutions" team: anonymous: true links: @@ -9,3 +9,6 @@ links: docs: https://notebook-6.gitbook.io/notebook-docs/guides/for-authentication blog: https://medium.com/@notebook_labs twitter: https://twitter.com/ZephyrExchange + +usecases: + - kyc-solution diff --git a/src/projects/nucypher/index.yaml b/src/projects/nucypher/index.yaml index b7c98aa5..fdd04d37 100644 --- a/src/projects/nucypher/index.yaml +++ b/src/projects/nucypher/index.yaml @@ -1,7 +1,7 @@ name: Threshold categories: - infrastructure -description: 'uses cryptography to unlock greater utility and usability for digital assets without needing to trust a centralized party. Threshold cryptography distributes sensitive operations across multiple independent entities – like nodes in a network – and requires a threshold, or minimum number of those entities to cooperate for the operation to be successful' +description: "uses cryptography to unlock greater utility and usability for digital assets without needing to trust a centralized party. Threshold cryptography distributes sensitive operations across multiple independent entities – like nodes in a network – and requires a threshold, or minimum number of those entities to cooperate for the operation to be successful" team: anonymous: true links: @@ -30,3 +30,6 @@ audits: - name: ChainSecurity - Staking Contract, T Token, Vending Machine Security Audit Report link: https://chainsecurity.com/security-audit/threshold-network/ time: November, 2021 + +usecases: + - infrastructure diff --git a/src/projects/nulink/index.yaml b/src/projects/nulink/index.yaml index e1561223..6c8934b4 100644 --- a/src/projects/nulink/index.yaml +++ b/src/projects/nulink/index.yaml @@ -19,3 +19,6 @@ project_status: version: Testnet Horus2.0 testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/nym/index.yaml b/src/projects/nym/index.yaml index 367d1ec1..c52a88da 100644 --- a/src/projects/nym/index.yaml +++ b/src/projects/nym/index.yaml @@ -3,16 +3,18 @@ categories: - infrastructure description: Nym protects communication patterns, IP addresses and metadata for end-users, enterprise and infrastructure operators team: - - name: Harry Halpin - role: CEO and Chairman of Scientific Board - - name: Mark Sinclair - role: Chief Technology Officer - - name: Claudia Diaz - role: Chief Scientist - - name: Alexis Roussel - role: Chief Operating Officer - - name: Jaya Klara Brekke - role: Chief Strategy Officer + anonymous: false + teammembers: + - name: Harry Halpin + role: CEO and Chairman of Scientific Board + - name: Mark Sinclair + role: Chief Technology Officer + - name: Claudia Diaz + role: Chief Scientist + - name: Alexis Roussel + role: Chief Operating Officer + - name: Jaya Klara Brekke + role: Chief Strategy Officer links: web: https://nymtech.net github: https://github.com/nymtech @@ -27,3 +29,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/oasiis-insights/index.yaml b/src/projects/oasiis-insights/index.yaml index d87cd9ab..08503aca 100644 --- a/src/projects/oasiis-insights/index.yaml +++ b/src/projects/oasiis-insights/index.yaml @@ -1,6 +1,9 @@ name: Oasiis insights categories: - - data-management + - applications description: Personalized web3 journeys are finally here. links: web: https://www.oasiisinsights.com + +usecases: + - data-management diff --git a/src/projects/oasis-network/index.yaml b/src/projects/oasis-network/index.yaml index 891ebc2b..762e2508 100644 --- a/src/projects/oasis-network/index.yaml +++ b/src/projects/oasis-network/index.yaml @@ -3,12 +3,12 @@ categories: - infrastructure project_type: Confidential compute -description: 'A privacy-enabled blockchain platform for open finance and a responsible data economy' +description: "A privacy-enabled blockchain platform for open finance and a responsible data economy" product_launch_day: "2020-11-18" team: anonymous: true - + links: web: https://oasisprotocol.org github: https://github.com/oasisprotocol @@ -30,7 +30,7 @@ project_status: version: Mainnet testnet: true mainnet: true - + have_token: true tokens: - symbol: ROSE @@ -42,14 +42,14 @@ tokens: symbol: wROSE network: Ethereum contract_address: "0x26B80FBfC01b71495f477d5237071242e0d959d7" - + history: - title: Oasis Mainnet - event_type: launch - description: "Oasis Mainnet: Ushering a New Era of Privacy and Scalability" - time: "2020-11-18" - link: https://oasisprotocol.org/blog/oasis-mainnet-ushering-in-a-new-era-of-privacy-and-scalability - + - title: Oasis Mainnet + event_type: launch + description: "Oasis Mainnet: Ushering a New Era of Privacy and Scalability" + time: "2020-11-18" + link: https://oasisprotocol.org/blog/oasis-mainnet-ushering-in-a-new-era-of-privacy-and-scalability + technology: type: TEE features: @@ -59,3 +59,5 @@ technology: blockchain_features: encryption: TEE +usecases: + - infrastructure diff --git a/src/projects/obscuro/index.yaml b/src/projects/obscuro/index.yaml index 1e340cd3..c00d2354 100644 --- a/src/projects/obscuro/index.yaml +++ b/src/projects/obscuro/index.yaml @@ -1,22 +1,25 @@ name: TEN (formerly Obscuro) categories: - - layer-2 -description: 'a layer 2 solution for Ethereum that brings privacy and scale' -ecosystem: Ethereum + - infrastructure +description: "a layer 2 solution for Ethereum that brings privacy and scale" +ecosystem: [ethereum] team: anonymous: false - + links: web: https://ten.xyz/ whitepaper: https://whitepaper.ten.xyz/ twitter: https://x.com/tenprotocol discord: https://discord.com/invite/tenprotocol - telegram: https://t.me/tenprotocol + telegram: https://t.me/tenprotocol project_status: live_status: true version: Testnet testnet: true mainnet: false + +usecases: + - eth-layer-2 diff --git a/src/projects/octra/index.yaml b/src/projects/octra/index.yaml index ee23bba7..bcb6b4c4 100644 --- a/src/projects/octra/index.yaml +++ b/src/projects/octra/index.yaml @@ -1,10 +1,11 @@ -name: 'Octra' -categories: [ FHE ] -description: 'general purpose FHE network enabling economies of the future' +id: octra +name: "Octra" +categories: [infrastructure] +description: "general purpose FHE network enabling economies of the future" links: web: https://octra.org/ github: https://github.com/Octra-Labs - docs: https://docs.octra.org/ + docs: https://docs.octra.org/ twitter: https://x.com/octra discord: https://discord.com/invite/m724x5Ne2F telegram: https://t.me/octranetwork diff --git a/src/projects/offshift/index.yaml b/src/projects/offshift/index.yaml index 9712766e..b2083290 100644 --- a/src/projects/offshift/index.yaml +++ b/src/projects/offshift/index.yaml @@ -1,7 +1,7 @@ name: Offshift categories: [defi] -ecosystem: Ethereum -description: 'Offshift’s proprietary Shifting mechanism allows users to Shift between our native token, XFT, and a full palette of private synthetics' +ecosystem: [ethereum] +description: "Offshift’s proprietary Shifting mechanism allows users to Shift between our native token, XFT, and a full palette of private synthetics" links: web: https://www.offshift.io/ github: https://open.offshift.io/offshiftXFT @@ -13,3 +13,5 @@ team: company: link: https://offshift.io/#team +usecases: + - defi diff --git a/src/projects/oksign/index.yaml b/src/projects/oksign/index.yaml index 149bb423..0702c6b8 100644 --- a/src/projects/oksign/index.yaml +++ b/src/projects/oksign/index.yaml @@ -1,7 +1,10 @@ name: okSign categories: - - dapps + - applications description: Create, Sign, and Save eSignatures with smart contracts and permissioned NFTs. links: web: https://www.oksign.app twitter: https://x.com/okSign_ + +usecases: + - dapps diff --git a/src/projects/ola/index.yaml b/src/projects/ola/index.yaml index 791ced6a..c3057c7b 100644 --- a/src/projects/ola/index.yaml +++ b/src/projects/ola/index.yaml @@ -1,6 +1,6 @@ name: OLA categories: - - layer-2 + - infrastructure description: ZK-ZKVM Bringing Programmable Privacy to Blockchains team: anonymous: false @@ -18,3 +18,6 @@ project_status: version: Testnet testnet: true mainnet: false + +usecases: + - eth-layer-2 diff --git a/src/projects/omnia/index.yaml b/src/projects/omnia/index.yaml index 290e91fa..c9e86ba6 100644 --- a/src/projects/omnia/index.yaml +++ b/src/projects/omnia/index.yaml @@ -3,10 +3,12 @@ categories: - infrastructure description: Omnia is a specialized RPC provider for DeFi traders, developed by cybersecurity, privacy and trading experts. They address DeFi-specific challenges like front-running and MEV exploitation. team: - - name: Cristian Lupascu - role: CEO & Co-Founder - - name: Alexandru Lupascu - role: CTO & Co-Founder + anonymous: false + teammembers: + - name: Cristian Lupascu + role: CEO & Co-Founder + - name: Alexandru Lupascu + role: CTO & Co-Founder links: web: https://omniatech.io github: https://github.com/omniaprotocol @@ -21,6 +23,9 @@ project_status: testnet: true mainnet: true audits: - - name: Smart Contract Code Review and Security Analysis Report + - name: Smart Contract Code Review and Security Analysis Report link: https://wp.hacken.io/wp-content/uploads/2021/11/OmniaProtocol_15112021SCAudit_Report.pdf time: November, 2021 + +usecases: + - infrastructure diff --git a/src/projects/onino/index.yaml b/src/projects/onino/index.yaml index 34c24315..51e228ea 100644 --- a/src/projects/onino/index.yaml +++ b/src/projects/onino/index.yaml @@ -7,3 +7,6 @@ links: have_token: true tokens: - symbol: ONI + +usecases: + - infrastructure diff --git a/src/projects/onion-mixer/index.yaml b/src/projects/onion-mixer/index.yaml index 9da98c43..7dbe2919 100644 --- a/src/projects/onion-mixer/index.yaml +++ b/src/projects/onion-mixer/index.yaml @@ -1,7 +1,10 @@ name: Onion Mixer categories: - - mixing-service -description: 'Onion Mixer is the first decentralized protocol for anonymous cross-chain transactions' + - applications +description: "Onion Mixer is the first decentralized protocol for anonymous cross-chain transactions" links: web: https://onionmixer.gitbook.io/onion-mixer/ sunset: true + +usecases: + - mixing-service diff --git a/src/projects/onionclub/index.yaml b/src/projects/onionclub/index.yaml index 3ad2ec49..0e263640 100644 --- a/src/projects/onionclub/index.yaml +++ b/src/projects/onionclub/index.yaml @@ -1,6 +1,9 @@ name: Onionclub categories: - - messaging + - applications description: Blockchain-based, business & social platform. links: web: https://onionclub.io + +usecases: + - messaging diff --git a/src/projects/ont-id/index.yaml b/src/projects/ont-id/index.yaml index 81ba1d69..a7e25150 100644 --- a/src/projects/ont-id/index.yaml +++ b/src/projects/ont-id/index.yaml @@ -1,6 +1,6 @@ name: ONT ID categories: - - did + - applications description: Bringing trustless identity to Web3 manage your data with ONT ID links: web: https://ont.id @@ -13,3 +13,6 @@ links: facebook: https://www.facebook.com/ONTnetwork/ telegram: https://t.me/OntologyAnnouncements have_token: true + +usecases: + - did diff --git a/src/projects/oort/index.yaml b/src/projects/oort/index.yaml index 011a929f..1e21862b 100644 --- a/src/projects/oort/index.yaml +++ b/src/projects/oort/index.yaml @@ -1,7 +1,7 @@ name: Oort categories: - - storage -description: 'A decentralized data cloud platform designed to maximize privacy and cost savings by integrating global compute and storage resources' + - applications +description: "A decentralized data cloud platform designed to maximize privacy and cost savings by integrating global compute and storage resources" team: anonymous: true links: @@ -18,3 +18,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/opera-crypto-browser/index.yaml b/src/projects/opera-crypto-browser/index.yaml index 61163653..648f019e 100644 --- a/src/projects/opera-crypto-browser/index.yaml +++ b/src/projects/opera-crypto-browser/index.yaml @@ -1,10 +1,13 @@ name: Opera Crypto Browser categories: - - browser -description: 'Experience the Web3 browser for crypto users. Get crypto-oriented security enhancements, manage multiple crypto wallets simultaneously, and access Discord, Telegram and more directly from the sidebar' + - applications +description: "Experience the Web3 browser for crypto users. Get crypto-oriented security enhancements, manage multiple crypto wallets simultaneously, and access Discord, Telegram and more directly from the sidebar" links: web: https://www.opera.com/crypto/next forum: https://forums.opera.com/ blog: https://blogs.opera.com/news/ twitter: https://twitter.com/opera facebook: https://www.facebook.com/Opera/ + +usecases: + - browser diff --git a/src/projects/orbis/index.yaml b/src/projects/orbis/index.yaml index f0754ffc..6dc7c379 100644 --- a/src/projects/orbis/index.yaml +++ b/src/projects/orbis/index.yaml @@ -8,3 +8,6 @@ links: have_token: true tokens: - symbol: OBT + +usecases: + - infrastructure diff --git a/src/projects/orchid/index.yaml b/src/projects/orchid/index.yaml index e950f08c..11c9409d 100644 --- a/src/projects/orchid/index.yaml +++ b/src/projects/orchid/index.yaml @@ -1,8 +1,8 @@ name: Orchid categories: - - vpn -description: 'Orchid is a platform that enables an onion routing network incentivized by OXT and a multi-hop VPN client' -ecosystem: multichain + - applications +description: "Orchid is a platform that enables an onion routing network incentivized by OXT and a multi-hop VPN client" +ecosystem: [multichain] links: web: https://www.orchid.com github: https://github.com/OrchidTechnologies @@ -18,3 +18,6 @@ team: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2218313136%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=cWH have_token: true token_link: https://coinmarketcap.com/currencies/orchid/ + +usecases: + - vpn diff --git a/src/projects/outdid/index.yaml b/src/projects/outdid/index.yaml index c8f37f5c..22dcab67 100644 --- a/src/projects/outdid/index.yaml +++ b/src/projects/outdid/index.yaml @@ -1,10 +1,13 @@ name: OutDID categories: - - kyc + - applications description: Your Zero-Knowledge, Decentralized KYC filter of Blockchain users. links: web: https://www.outdid.io - + blog: https://medium.com/@getoutdid twitter: https://x.com/getoutdid telegram: https://t.me/outdid_io + +usecases: + - kyc-solution diff --git a/src/projects/oxen/index.yaml b/src/projects/oxen/index.yaml index 58f0d556..b14085ad 100644 --- a/src/projects/oxen/index.yaml +++ b/src/projects/oxen/index.yaml @@ -1,9 +1,9 @@ name: Oxen categories: - - currency + - defi description: A cryptocurrency powering a new class of interconnected privacy apps -ecosystem: 0xen -project_status: +ecosystem: [oxen] +project_status: live_status: true version: Mainnet testnet: true @@ -19,3 +19,6 @@ links: telegram: https://t.me/Oxen_Community team: anonymous: true + +usecases: + - currency diff --git a/src/projects/p0tion/index.yaml b/src/projects/p0tion/index.yaml index c2d4a125..d6c43fc9 100644 --- a/src/projects/p0tion/index.yaml +++ b/src/projects/p0tion/index.yaml @@ -1,6 +1,6 @@ name: p0tion -categories: infrastructure -description: 'Toolkit for Groth16 Phase 2 Trusted Setup ceremonies.' +categories: [infrastructure] +description: "Toolkit for Groth16 Phase 2 Trusted Setup ceremonies." project_status: live_status: true team: @@ -9,3 +9,4 @@ links: web: https://ceremony.pse.dev/ github: https://github.com/privacy-scaling-explorations/p0tion +usecases: [infrastructure] diff --git a/src/projects/p0x-labs/index.yaml b/src/projects/p0x-labs/index.yaml index b29104d5..dd287cd4 100644 --- a/src/projects/p0x-labs/index.yaml +++ b/src/projects/p0x-labs/index.yaml @@ -1,8 +1,11 @@ name: P0X labs categories: - - rd + - infrastructure description: The decentralized laboratory for building cutting-edge privacy technologies. links: web: https://p0xeidon.xyz twitter: https://x.com/p0xlabs -sunset: true +sunset: true + +usecases: + - research-and-development diff --git a/src/projects/panther-protocl/index.yaml b/src/projects/panther-protocl/index.yaml index 08f886e1..4c1a2f5b 100644 --- a/src/projects/panther-protocl/index.yaml +++ b/src/projects/panther-protocl/index.yaml @@ -1,7 +1,7 @@ name: Panther Protocol categories: [defi] -ecosystem: Ethereum, Elrond, Polkadot, Avalanche, Near, Flare -description: 'is a decentralized privacy metaprotocol enabling confidential, trusted transactions and interoperability with DeFi' +ecosystem: [ethereum, elrond, polkadot, avalanche, near, flare] +description: "is a decentralized privacy metaprotocol enabling confidential, trusted transactions and interoperability with DeFi" technology: type: zk features: @@ -18,3 +18,6 @@ team: anonymous: false company: link: https://www.pantherprotocol.io/ + +usecases: + - defi diff --git a/src/projects/parallelchain/index.yaml b/src/projects/parallelchain/index.yaml index 68690155..8b7cff07 100644 --- a/src/projects/parallelchain/index.yaml +++ b/src/projects/parallelchain/index.yaml @@ -1,7 +1,7 @@ name: ParallelChain categories: - infrastructure -description: 'A public + private layer-1 blockchain protocol building an accountable, fair and solid backbone infrastructure for the digital economy' +description: "A public + private layer-1 blockchain protocol building an accountable, fair and solid backbone infrastructure for the digital economy" team: anonymous: false links: @@ -23,3 +23,6 @@ audits: - name: ParallelChain HotStuff Consensus link: https://wp.hacken.io/wp-content/uploads/2023/07/ParallelChain_Hotstuff_Consensus_L1_FinalReport_30062023.pdf time: June, 2023 + +usecases: + - infrastructure diff --git a/src/projects/parami/index.yaml b/src/projects/parami/index.yaml index b1315b66..8adcee3b 100644 --- a/src/projects/parami/index.yaml +++ b/src/projects/parami/index.yaml @@ -1,11 +1,14 @@ name: Parami categories: - infrastructure -description: 'Para metaverse identity. As the next generation identity protocol based on the W3C decentralized identity standard, it is designed for metaverse and Web 3 users with self-sovereign and permissionless service' -project_status: +description: "Para metaverse identity. As the next generation identity protocol based on the W3C decentralized identity standard, it is designed for metaverse and Web 3 users with self-sovereign and permissionless service" +project_status: live_status: true version: testnet testnet: true mainnet: false links: web: https://parami.io + +usecases: + - infrastructure diff --git a/src/projects/paras/index.yaml b/src/projects/paras/index.yaml index f77b1d14..ebec5734 100644 --- a/src/projects/paras/index.yaml +++ b/src/projects/paras/index.yaml @@ -1,7 +1,7 @@ name: Paras categories: - - nft -description: 'A blockchain-agnostic protocol that offers privacy to NFTs' + - applications +description: "A blockchain-agnostic protocol that offers privacy to NFTs" links: web: https://paras.id/ whitepaper: https://eprint.iacr.org/2022/976.pdf @@ -14,3 +14,5 @@ tokens: network: Near sunset: false +usecases: + - nft-community diff --git a/src/projects/particl/index.yaml b/src/projects/particl/index.yaml index 93ca943f..513c1a1b 100644 --- a/src/projects/particl/index.yaml +++ b/src/projects/particl/index.yaml @@ -1,21 +1,50 @@ +id: particl name: Particl -categories: - - currency -description: A modern digital currency that respects your rights -ecosystem: Particl -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +categories: [applications] +ecosystem: [particl] +description: "The only marketplace for private and unrestricted e-commerce" + +team: + anonymous: false + teammembers: + - name: Gerlof van Ek + link: https://x.com/gerlof + - name: Henk Swardt + link: https://www.linkedin.com/in/hswardt/ + links: - web: https://particl.io/coin + web: https://particl.io/marketplace github: https://github.com/particl + whitepaper: https://github.com/particl/whitepaper + docs: https://particl.wiki/ block_explorer: https://explorer.particl.io/ - whitepaper: https://raw.githubusercontent.com/particl/whitepaper/master/Particl%20Whitepaper%20Draft%20v0.3.pdf - blog: https://particl.news/ twitter: https://x.com/particlproject telegram: https://t.me/particltg -team: - anonymous: false + discord: https://discord.me/particl + +sunset: false + +tokens: + - name: Particl Part + symbol: Part + network: Particl Blockchain + token_link: https://explorer.particl.io/ + +blockchain_features: + opensource: true + asset_custody_type: non-custody + +privacy_policy: + defined: true + link: https://academy.particl.io/en/latest/particl-blockchain/blockchain_privacy.html + +default_privacy: true + +traceability: + kyc: false +third_party_dependency: false +compliance: false + +usecases: + - currency diff --git a/src/projects/partisia-blockchain/index.yaml b/src/projects/partisia-blockchain/index.yaml index ffd4ef57..6077ac7c 100644 --- a/src/projects/partisia-blockchain/index.yaml +++ b/src/projects/partisia-blockchain/index.yaml @@ -3,11 +3,13 @@ categories: - infrastructure description: Partisia Blockchain is built for trust, transparency, privacy and speed of light finalization. team: - - name: Kurt Nielsen - role: Co-Founder & President - - name: Peter F. Frandsen - role: Co-Founder & CTO - - name: Brian Gallagher + anonymous: false + teammembers: + - name: Kurt Nielsen + role: Co-Founder & President + - name: Peter F. Frandsen + role: Co-Founder & CTO + - name: Brian Gallagher links: web: https://partisiablockchain.com gitlab: https://gitlab.com/partisiablockchain @@ -23,3 +25,6 @@ project_status: version: Gamma Mainnet Vers 4.0 testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/pastenym/index.yaml b/src/projects/pastenym/index.yaml index 416a2e5a..22e06f82 100644 --- a/src/projects/pastenym/index.yaml +++ b/src/projects/pastenym/index.yaml @@ -1,7 +1,10 @@ name: Pastenym categories: - - messaging + - applications description: Anon text sharing service links: web: https://pastenym.ch/#/ github: https://github.com/notrustverify/pastenym/ + +usecases: + - messaging diff --git a/src/projects/penumbra/index.yaml b/src/projects/penumbra/index.yaml index 570b941a..85592da6 100644 --- a/src/projects/penumbra/index.yaml +++ b/src/projects/penumbra/index.yaml @@ -1,7 +1,7 @@ name: Penumbra categories: - infrastructure -description: 'A shielded, cross-chain network allowing anyone to securely transact, stake, swap, or marketmake without broadcasting their personal information to the world' +description: "A shielded, cross-chain network allowing anyone to securely transact, stake, swap, or marketmake without broadcasting their personal information to the world" team: anonymous: true links: @@ -15,3 +15,6 @@ project_status: version: Penumbra Summoning Testnet testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/personae-labs/index.yaml b/src/projects/personae-labs/index.yaml index 4d29a8e5..14ab67bc 100644 --- a/src/projects/personae-labs/index.yaml +++ b/src/projects/personae-labs/index.yaml @@ -1,9 +1,12 @@ name: Personae Labs categories: - - rd + - infrastructure description: R&D lab investigating the future of human expression online. links: web: https://personaelabs.xyz/ github: https://github.com/personaelabs twitter: https://x.com/personae_labs discord: https://discord.com/invite/ZVWhZrbkRV + +usecases: + - research-and-development diff --git a/src/projects/phala-network/index.yaml b/src/projects/phala-network/index.yaml index d2e9090e..1080740c 100644 --- a/src/projects/phala-network/index.yaml +++ b/src/projects/phala-network/index.yaml @@ -1,16 +1,16 @@ name: Phala Network categories: - - computing-network + - infrastructure description: Privacy-Enhanced Permissionless Computing Protocol. -ecosystem: Kusama +ecosystem: [kusama] links: web: https://www.phala.network/en/ github: https://github.com/Phala-Network docs: https://docs.phala.network/ forum: https://forum.phala.network/ - whitepaper: pdf/phala-paper.pdf + whitepaper: https://www.phala.network/pdf/phala-paper.pdf changelog: https://phala.network/changelog - blog: https://phala.network/blog + blog: https://phala.network/blog twitter: https://x.com/PhalaNetwork discord: https://discord.com/invite/phala-network telegram: https://t.me/phalanetwork @@ -18,3 +18,6 @@ team: anonymous: false company: link: https://www.phala.network/en/aboutUs/ + +usecases: + - computing diff --git a/src/projects/phoenix-network/index.yaml b/src/projects/phoenix-network/index.yaml index d2ed5008..5dd8839c 100644 --- a/src/projects/phoenix-network/index.yaml +++ b/src/projects/phoenix-network/index.yaml @@ -1,6 +1,6 @@ name: Phoenix categories: - - computing-network + - infrastructure description: blockchain infrastructure empowering intelligence web3 applications. links: web: https://phoenix.global @@ -8,11 +8,14 @@ links: twitter: https://x.com/Phoenix_Chain telegram: https://t.me/APEXcommunity blog: https://phoenixglobal.medium.com/ -ecosystem: multichain -project_status: +ecosystem: [multichain] +project_status: live_status: true version: testnet testnet: true mainnet: false team: anonymous: true + +usecases: + - computing diff --git a/src/projects/phoenix/index.yaml b/src/projects/phoenix/index.yaml index 8108799e..37ab1cde 100644 --- a/src/projects/phoenix/index.yaml +++ b/src/projects/phoenix/index.yaml @@ -1,6 +1,6 @@ name: Phoenix categories: - - wallets + - applications description: Non-custodial wallet on Lightning network links: web: https://phoenix.acinq.co @@ -14,3 +14,6 @@ project_status: mainnet: false team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/pigeon-communicator/index.yaml b/src/projects/pigeon-communicator/index.yaml index 711830c4..7179a8ce 100644 --- a/src/projects/pigeon-communicator/index.yaml +++ b/src/projects/pigeon-communicator/index.yaml @@ -1,7 +1,7 @@ name: Pigeon Communicator categories: - - messaging -description: 'Blockchain-based, trustless, censorship-resistant decentralized messaging' + - social-and-communications +description: "Blockchain-based, trustless, censorship-resistant decentralized messaging" team: anonymous: true links: @@ -19,3 +19,6 @@ project_status: version: Testnet testnet: true mainnet: false + +usecases: + - messaging diff --git a/src/projects/pirate-chain/index.yaml b/src/projects/pirate-chain/index.yaml index d48d6a75..51592168 100644 --- a/src/projects/pirate-chain/index.yaml +++ b/src/projects/pirate-chain/index.yaml @@ -1,8 +1,8 @@ name: Pirate Chain categories: - - currency -description: 'Anonymous cryptocurrency, a truly private, decentralized blockchain' -ecosystem: Pirate + - defi +description: "Anonymous cryptocurrency, a truly private, decentralized blockchain" +ecosystem: [pirate] links: web: https://pirate.black github: https://github.com/PirateNetwork @@ -16,3 +16,6 @@ links: team: anonymous: true + +usecases: + - currency diff --git a/src/projects/pivx/index.yaml b/src/projects/pivx/index.yaml index d14560c0..48cc32cf 100644 --- a/src/projects/pivx/index.yaml +++ b/src/projects/pivx/index.yaml @@ -1,8 +1,8 @@ name: PivX categories: - - currency -description: 'Experience the freedom of global digital cash with SHIELD User Data Protection. Be your own bank with full control of your digital assets' -ecosystem: Pivx + - defi +description: "Experience the freedom of global digital cash with SHIELD User Data Protection. Be your own bank with full control of your digital assets" +ecosystem: [pivx] links: web: https://pivx.org github: https://github.com/PIVX-Project/PIVX/ @@ -17,3 +17,6 @@ links: telegram: https://t.me/pivxchat team: anonymous: false + +usecases: + - currency diff --git a/src/projects/platon-network/index.yaml b/src/projects/platon-network/index.yaml index 181c68cb..0e12ee8d 100644 --- a/src/projects/platon-network/index.yaml +++ b/src/projects/platon-network/index.yaml @@ -1,8 +1,8 @@ name: PlatOn Network categories: - - computing-network -description: 'Combining blockchain and privacy-preserving computation technologies, PlatON is building a decentralized and collaborative AI network and global brain to drive the democratization of AI for safe artificial general intelligence' -ecosystem: Alaya + - infrastructure +description: "Combining blockchain and privacy-preserving computation technologies, PlatON is building a decentralized and collaborative AI network and global brain to drive the democratization of AI for safe artificial general intelligence" +ecosystem: [alaya] links: web: https://www.platon.network/en github: https://github.com/PlatONnetwork @@ -18,3 +18,6 @@ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz + +usecases: + - computing diff --git a/src/projects/plebble/index.yaml b/src/projects/plebble/index.yaml index 6bd908d6..852e6b20 100644 --- a/src/projects/plebble/index.yaml +++ b/src/projects/plebble/index.yaml @@ -1,8 +1,8 @@ name: Plebble categories: - - layer-2 + - infrastructure description: P2P Network of computers running the Plebble software (L1 & L2) -ecosystem: TBD +ecosystem: [tbd] links: web: https://plebble.net github: https://github.com/root1m3/plebble @@ -15,3 +15,6 @@ project_status: version: plebble-alpha-55.1_10-392024 2023-08-04_23-42-16 testnet: true mainnet: false + +usecases: + - eth-layer-2 diff --git a/src/projects/plugin-io/index.yaml b/src/projects/plugin-io/index.yaml index c205661f..04f1a72a 100644 --- a/src/projects/plugin-io/index.yaml +++ b/src/projects/plugin-io/index.yaml @@ -1,6 +1,6 @@ name: Plugin.io categories: - - dapps + - applications description: Privacy-focused, ad-free social media & digital marketplace. links: web: https://plugin.io/ @@ -8,3 +8,6 @@ links: twitter: https://x.com/pluginio facebook: https://www.facebook.com/pluginio/ + +usecases: + - dapps diff --git a/src/projects/pollen-mobile/index.yaml b/src/projects/pollen-mobile/index.yaml index a1cb4a0d..4af6217a 100644 --- a/src/projects/pollen-mobile/index.yaml +++ b/src/projects/pollen-mobile/index.yaml @@ -8,3 +8,6 @@ links: have_token: true tokens: - symbol: PCN + +usecases: + - infrastructure diff --git a/src/projects/polybase/index.yaml b/src/projects/polybase/index.yaml index b49a87c4..8a911ebd 100644 --- a/src/projects/polybase/index.yaml +++ b/src/projects/polybase/index.yaml @@ -1,13 +1,14 @@ name: Polybase categories: - - layer-2 -description: 'a public L2 blockchain with private transactions and MEV-resistance powered by zero-knowledge proofs' -product_version: testnet + - infrastructure +description: "a public L2 blockchain with private transactions and MEV-resistance powered by zero-knowledge proofs" team: - - name: Sid Gandhi - role: Co-Founder & CEO - - name: Calum Moore - role: Co-Founder & CTO + anonymous: false + teammembers: + - name: Sid Gandhi + role: Co-Founder & CEO + - name: Calum Moore + role: Co-Founder & CTO links: web: https://polybase.xyz docs: https://payy.network/docs @@ -18,3 +19,6 @@ project_status: version: Testnet (App Payy - beta/testing) testnet: false mainnet: true + +usecases: + - eth-layer-2 diff --git a/src/projects/polygon-id/index.yaml b/src/projects/polygon-id/index.yaml index 8b7d86e8..ffc678a7 100644 --- a/src/projects/polygon-id/index.yaml +++ b/src/projects/polygon-id/index.yaml @@ -1,8 +1,8 @@ name: Polygon ID categories: - - did -description: 'a blockchain-native identity system with programmable privacy that empowers people and enables the creation of trusted interactions with web3 services' -ecosystem: Polygon + - applications +description: "a blockchain-native identity system with programmable privacy that empowers people and enables the creation of trusted interactions with web3 services" +ecosystem: [polygon] links: web: https://polygon.technology/polygon-id/ github: https://github.com/0xPolygonID @@ -14,3 +14,6 @@ team: company: link: https://github.com/orgs/0xPolygonID/people have_token: true + +usecases: + - did diff --git a/src/projects/polygon-nightfall/index.yaml b/src/projects/polygon-nightfall/index.yaml index 29523fd8..2b5c5f47 100644 --- a/src/projects/polygon-nightfall/index.yaml +++ b/src/projects/polygon-nightfall/index.yaml @@ -1,8 +1,8 @@ name: Polygon Miden categories: - - layer-2 -description: 'a zero-knowledge rollup for high-throughput and private applications' -ecosystem: Polygon + - infrastructure +description: "a zero-knowledge rollup for high-throughput and private applications" +ecosystem: [polygon] links: web: https://polygon.technology/polygon-miden docs: https://0xpolygonmiden.github.io/miden-base/introduction.html @@ -16,3 +16,6 @@ project_status: version: testnet testnet: true mainnet: false + +usecases: + - eth-layer-2 diff --git a/src/projects/polyhedra-zk-nft-container/index.yaml b/src/projects/polyhedra-zk-nft-container/index.yaml index 83802a0b..e2d49249 100644 --- a/src/projects/polyhedra-zk-nft-container/index.yaml +++ b/src/projects/polyhedra-zk-nft-container/index.yaml @@ -1,7 +1,7 @@ name: Polyhedra ZK-NFT Container categories: - - nft -description: 'A new NFT protocol that can contain other NFTs, realizing maximum interoperability' + - applications +description: "A new NFT protocol that can contain other NFTs, realizing maximum interoperability" links: web: https://polyhedra.network/zknft-container github: https://github.com/PolyhedraZK/Expander @@ -9,4 +9,7 @@ links: blog: https://polyhedra.medium.com/ twitter: https://x.com/PolyhedraZK discord: https://discord.com/invite/polyhedra-network -sunset: false +sunset: false + +usecases: + - nft-community diff --git a/src/projects/pomp/index.yaml b/src/projects/pomp/index.yaml index 85693d44..0a8d1d0a 100644 --- a/src/projects/pomp/index.yaml +++ b/src/projects/pomp/index.yaml @@ -1,11 +1,14 @@ name: POMP categories: - - dapps -description: 'Comprehensive DeFi platform for token swaps, lending, NFT trading, collateralization' + - applications +description: "Comprehensive DeFi platform for token swaps, lending, NFT trading, collateralization" links: web: https://mantapacific.pomp.money - + blog: https://medium.com/@POMP_App twitter: https://x.com/AppPOMP discord: https://discord.com/invite/Uh452P8ScM telegram: https://t.me/POMP_Chat + +usecases: + - dapps diff --git a/src/projects/privacy-infrastructure-solutions/index.yaml b/src/projects/privacy-infrastructure-solutions/index.yaml index efe6d518..f5adb7c8 100644 --- a/src/projects/privacy-infrastructure-solutions/index.yaml +++ b/src/projects/privacy-infrastructure-solutions/index.yaml @@ -1,8 +1,8 @@ name: Privacy Infrastructure Solutions categories: - hardware -description: 'Cloud and data center acceleration solution for Privacy Enhancing Technologies' -ecosystem: multichain +description: "Cloud and data center acceleration solution for Privacy Enhancing Technologies" +ecosystem: [multichain] links: web: https://www.chain-reaction.io docs: https://www.chain-reaction.io/resource-hub/ @@ -12,3 +12,6 @@ team: anonymous: false company: link: https://www.chain-reaction.io/about/ + +usecases: + - hardware diff --git a/src/projects/privacy-pools/index.yaml b/src/projects/privacy-pools/index.yaml index 2f2cd125..63c64d23 100644 --- a/src/projects/privacy-pools/index.yaml +++ b/src/projects/privacy-pools/index.yaml @@ -1,10 +1,13 @@ name: Privacy Pools categories: - - dapps -description: 'Allow you to generate a brand new Ethereum address that is completely unlinkable to any prior transaction history. But our privacy-preserving technology does much more than that' + - applications +description: "Allow you to generate a brand new Ethereum address that is completely unlinkable to any prior transaction history. But our privacy-preserving technology does much more than that" links: web: https://privacy-pools-v1-demo.netlify.app/ github: https://github.com/ameensol/privacy-pools docs: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4563364 education: https://x.com/0xArhat/status/1699812440614035944 + +usecases: + - dapps diff --git a/src/projects/privacy-security-explorations/index.yaml b/src/projects/privacy-security-explorations/index.yaml index 1c31502b..1aaf961b 100644 --- a/src/projects/privacy-security-explorations/index.yaml +++ b/src/projects/privacy-security-explorations/index.yaml @@ -1,7 +1,7 @@ name: Privacy & Security explorations categories: - - rd -description: 'We explore new use cases for zero-knowledge proofs and other cryptographic primitives through research and proof-of-concepts' + - infrastructure +description: "We explore new use cases for zero-knowledge proofs and other cryptographic primitives through research and proof-of-concepts" team: anonymous: false teammembers: @@ -17,3 +17,6 @@ links: blog: https://mirror.xyz/privacy-scaling-explorations.eth twitter: https://x.com/privacyscaling discord: https://discord.com/invite/sF5CT5rzrR + +usecases: + - research-and-development diff --git a/src/projects/private-finance-syndicate/index.yaml b/src/projects/private-finance-syndicate/index.yaml index f94b53e7..fe6ab25c 100644 --- a/src/projects/private-finance-syndicate/index.yaml +++ b/src/projects/private-finance-syndicate/index.yaml @@ -1,8 +1,12 @@ name: Private Finance Syndicate categories: - - alliances + - social-and-communications + description: Privacy-oriented investment fund. links: web: https://privatefinancesyndicate.io blog: https://medium.com/nav-coin/2023-the-private-finance-syndicate-faqs-3f435d93688a twitter: https://twitter.com/prifisyndicate + +usecases: + - alliances diff --git a/src/projects/privatixy/index.yaml b/src/projects/privatixy/index.yaml index b47f7764..a48ceb4f 100644 --- a/src/projects/privatixy/index.yaml +++ b/src/projects/privatixy/index.yaml @@ -1,7 +1,10 @@ name: Privatixy categories: - infrastructure -description: 'An open-source protocol that offers a wide variety of solutions for privacy preservation for blockchain users' +description: "An open-source protocol that offers a wide variety of solutions for privacy preservation for blockchain users" have_token: true tokens: - symbol: PRIVATIXY + +usecases: + - infrastructure diff --git a/src/projects/proof-of-passport/index.yaml b/src/projects/proof-of-passport/index.yaml index 0cd2e8c1..123af7d2 100644 --- a/src/projects/proof-of-passport/index.yaml +++ b/src/projects/proof-of-passport/index.yaml @@ -1,6 +1,6 @@ name: Proof of Passport categories: - - kyc + - applications description: Passport proving protocol using zk-SNARKs links: web: https://proofofpassport.com/ @@ -10,4 +10,7 @@ links: telegram: https://t.me/proofofpassport team: anonymous: false -have_token: false \ No newline at end of file +have_token: false + +usecases: + - kyc-solution diff --git a/src/projects/protonvpn/index.yaml b/src/projects/protonvpn/index.yaml index 20fe7f12..b49e26e8 100644 --- a/src/projects/protonvpn/index.yaml +++ b/src/projects/protonvpn/index.yaml @@ -1,8 +1,8 @@ name: ProtonVPN categories: - - vpn + - applications description: Swiss VPN provider with encrypted email and online storage -ecosystem: no chain +ecosystem: [no-chain] links: web: https://protonvpn.com/ github: https://github.com/ProtonVPN @@ -17,3 +17,6 @@ project_status: version: stable testnet: false mainnet: false + +usecases: + - vpn diff --git a/src/projects/puma-browser/index.yaml b/src/projects/puma-browser/index.yaml index 144b528d..f2935252 100644 --- a/src/projects/puma-browser/index.yaml +++ b/src/projects/puma-browser/index.yaml @@ -1,6 +1,6 @@ name: Puma browser categories: - - browser + - applications description: Puma is a mobile browser and wallet for the Web3 ecosystem. Private by design. links: web: https://www.pumabrowser.com @@ -8,3 +8,6 @@ links: blog: https://www.pumabrowser.com/blog twitter: https://twitter.com/pumabrowser discord: https://discord.com/invite/4frpm84 + +usecases: + - browser diff --git a/src/projects/quadrata/index.yaml b/src/projects/quadrata/index.yaml index 01bec804..da94bdb4 100644 --- a/src/projects/quadrata/index.yaml +++ b/src/projects/quadrata/index.yaml @@ -1,7 +1,7 @@ name: Quadrata categories: - - did -description: ' Establish Trust and Identification via Sybil resistant DIDs and KYC/AML natively on-chain' + - applications +description: " Establish Trust and Identification via Sybil resistant DIDs and KYC/AML natively on-chain" links: web: https://quadrata.com docs: https://docs.quadrata.com/integration @@ -10,3 +10,6 @@ links: twitter: https://x.com/QuadrataNetwork discord: https://discord.com/invite/67QgzrymHW have_token: true + +usecases: + - did diff --git a/src/projects/qubes-os/index.yaml b/src/projects/qubes-os/index.yaml index 0750e6d1..23a75624 100644 --- a/src/projects/qubes-os/index.yaml +++ b/src/projects/qubes-os/index.yaml @@ -1,7 +1,7 @@ name: Qubes OS categories: - - os -description: 'a free and open-source, security-oriented operating system for single-user desktop computing' + - applications +description: "a free and open-source, security-oriented operating system for single-user desktop computing" team: anonymous: false teammembers: @@ -20,3 +20,6 @@ project_status: version: 4.2.1 testnet: false mainnet: false + +usecases: + - operation-systems diff --git a/src/projects/railgun/index.yaml b/src/projects/railgun/index.yaml index 1f43aeae..3dc86120 100644 --- a/src/projects/railgun/index.yaml +++ b/src/projects/railgun/index.yaml @@ -1,5 +1,5 @@ name: RAILGUN -categories: [ defi ] +categories: [defi] tokens: - name: Railgun symbol: RAIL @@ -9,7 +9,7 @@ tokens: symbol: RAIL network: Polygon contract_address: "0x92A9C92C215092720C731c96D4Ff508c831a714f" -description: 'Private transfers and DeFi infra for Ethereum, Polygon, Binance Smart Chain and Arbitrum.' +description: "Private transfers and DeFi infra for Ethereum, Polygon, Binance Smart Chain and Arbitrum." project_type: transaction technology: type: zk @@ -28,9 +28,6 @@ blockchain_features: p2p: true encryption: zksnark network: Ethereum - upgradability: - enabled: true - type: perpetual power opensource: true viewing_key: true dissapearing_tx: false @@ -83,12 +80,12 @@ audits: link: https://assets.railgun.org/docs/audits/ time: July, 2021 history: - title: Mainet - event_type: launch - description: Token Launch - time: Jul 3, 2021 - link: https://shadeprotocol.io/blog/shade-protocol-claim-tutorial -client_diversability: + - title: Mainet + event_type: launch + description: Token Launch + time: Jul 3, 2021 + link: https://shadeprotocol.io/blog/shade-protocol-claim-tutorial +client_diversability: - name: Railway link: https://www.railway.xyz/ - name: TokenShielder @@ -105,3 +102,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - defi diff --git a/src/projects/railway/index.yaml b/src/projects/railway/index.yaml index a1de1eb6..7bfadc5e 100644 --- a/src/projects/railway/index.yaml +++ b/src/projects/railway/index.yaml @@ -1,8 +1,8 @@ name: Railway categories: - - wallets + - applications description: DeFi privacy wallet -ecosystem: Ethereum, BNB, Polygon +ecosystem: [ethereum, bnb, polygon] links: web: https://railway.xyz/ github: https://github.com/Railway-Wallet/Railway-Wallet/ @@ -14,3 +14,6 @@ project_status: version: 5.16.8 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/raspiblitz/index.yaml b/src/projects/raspiblitz/index.yaml index 72c6f7c0..998cd4d4 100644 --- a/src/projects/raspiblitz/index.yaml +++ b/src/projects/raspiblitz/index.yaml @@ -1,6 +1,6 @@ name: RaspiBlitz categories: - - node + - infrastructure description: DIY Bitcoin & Lightning Node on a RaspberryPi. team: anonymous: true @@ -13,3 +13,6 @@ project_status: version: v1.11.0 testnet: false mainnet: true + +usecases: + - node diff --git a/src/projects/raze-network/index.yaml b/src/projects/raze-network/index.yaml index fe2f420a..f159be18 100644 --- a/src/projects/raze-network/index.yaml +++ b/src/projects/raze-network/index.yaml @@ -1,7 +1,7 @@ name: Raze Network categories: - infrastructure -description: 'Raze Network is a EVM-compatible privacy protocol. It is built as a native privacy layer that can provide end-to-end anonymity for the entire DeFi and Web3.0 stack. ' +description: "Raze Network is a EVM-compatible privacy protocol. It is built as a native privacy layer that can provide end-to-end anonymity for the entire DeFi and Web3.0 stack. " links: web: https://www.raze.network github: https://github.com/Raze-Net @@ -11,3 +11,6 @@ links: have_token: true tokens: - symbol: RAZE + +usecases: + - infrastructure diff --git a/src/projects/realran/index.yaml b/src/projects/realran/index.yaml index 1410e990..73caa329 100644 --- a/src/projects/realran/index.yaml +++ b/src/projects/realran/index.yaml @@ -1,7 +1,7 @@ name: RealRan categories: - - rd -description: 'RealRan comes from the global engineering and cryptography research team, expertise in cryptography protocol and distribution consensus engineering' + - infrastructure +description: "RealRan comes from the global engineering and cryptography research team, expertise in cryptography protocol and distribution consensus engineering" links: web: https://www.realran.com/home github: https://github.com/realran @@ -10,3 +10,6 @@ links: twitter: https://x.com/RealRanCrypto/ discord: https://discord.com/invite/K9J5cCAAUC sunset: true + +usecases: + - research-and-development diff --git a/src/projects/relayz/index.yaml b/src/projects/relayz/index.yaml index edfcb7df..5e867254 100644 --- a/src/projects/relayz/index.yaml +++ b/src/projects/relayz/index.yaml @@ -1,6 +1,6 @@ name: Relayz categories: - - messaging + - applications description: Hyper-secure, private communications protocol for Web3 links: web: https://relayz.io @@ -8,3 +8,6 @@ links: twitter: https://x.com/RelayzOfficial discord: https://discord.com/invite/sMbZ2kxZKk telegram: https://t.me/RelayzOfficial + +usecases: + - messaging diff --git a/src/projects/rln-anonymous-chat/index.yaml b/src/projects/rln-anonymous-chat/index.yaml index b87328d7..ef646ada 100644 --- a/src/projects/rln-anonymous-chat/index.yaml +++ b/src/projects/rln-anonymous-chat/index.yaml @@ -1,6 +1,9 @@ name: RLN Anonymous Chat categories: - - messaging -description: 'A spam-resistant instant messaging application for private and anonymous communication' + - social-and-communications +description: "A spam-resistant instant messaging application for private and anonymous communication" links: web: https://github.com/njofce/zk-chat + +usecases: + - messaging diff --git a/src/projects/ronindojo-tanto/index.yaml b/src/projects/ronindojo-tanto/index.yaml index 0cd8804c..8d1a4272 100644 --- a/src/projects/ronindojo-tanto/index.yaml +++ b/src/projects/ronindojo-tanto/index.yaml @@ -1,8 +1,8 @@ name: RoninDojo Tanto categories: - hardware -description: 'Fully validating Bitcoin full node. Served over a Tor hidden service' -ecosystem: Bitcoin +description: "Fully validating Bitcoin full node. Served over a Tor hidden service" +ecosystem: [bitcoin] links: web: https://ronindojo.io/ docs: https://docs.samourai.io/ @@ -11,3 +11,6 @@ links: telegram: https://t.me/RoninDojoNode team: anonymous: true + +usecases: + - hardware diff --git a/src/projects/rpch/index.yaml b/src/projects/rpch/index.yaml index 1df59eb9..c6588c85 100644 --- a/src/projects/rpch/index.yaml +++ b/src/projects/rpch/index.yaml @@ -1,10 +1,13 @@ name: RPCh categories: - - rpc -description: 'a privacy-preserving RPC service for wallets that detaches the user’s identity from all communication with the blockchain' + - infrastructure +description: "a privacy-preserving RPC service for wallets that detaches the user’s identity from all communication with the blockchain" links: web: https://rpch.net/ github: https://github.com/Rpc-h/RPCh docs: https://docs.rpch.net/docs/tutorial-basics/What-is-RPCh twitter: https://x.com/RPC_h_ discord: https://discord.com/invite/VRyTQTNBTy + +usecases: + - rpc-provider diff --git a/src/projects/ruby/index.yaml b/src/projects/ruby/index.yaml index 1e3aed0d..f13b0ac8 100644 --- a/src/projects/ruby/index.yaml +++ b/src/projects/ruby/index.yaml @@ -12,3 +12,6 @@ links: have_token: true tokens: - symbol: RUBY + +usecases: + - infrastructure diff --git a/src/projects/sacred/index.yaml b/src/projects/sacred/index.yaml index b59b2602..b867b279 100644 --- a/src/projects/sacred/index.yaml +++ b/src/projects/sacred/index.yaml @@ -1,2 +1,5 @@ name: Sacred categories: [defi] + +usecases: + - defi diff --git a/src/projects/sahara/index.yaml b/src/projects/sahara/index.yaml index 17ff8c39..c350fdc8 100644 --- a/src/projects/sahara/index.yaml +++ b/src/projects/sahara/index.yaml @@ -1,2 +1,5 @@ name: Sahara categories: [defi] + +usecases: + - defi diff --git a/src/projects/samourai-wallet/index.yaml b/src/projects/samourai-wallet/index.yaml index 98c3dbd4..cab40ed6 100644 --- a/src/projects/samourai-wallet/index.yaml +++ b/src/projects/samourai-wallet/index.yaml @@ -1,11 +1,14 @@ name: Samourai Wallet categories: - - wallets -description: 'A modern bitcoin wallet hand forged to keep your transactions private your identity masked and your funds secured' -ecosystem: Bitcoin + - applications +description: "A modern bitcoin wallet hand forged to keep your transactions private your identity masked and your funds secured" +ecosystem: [bitcoin] links: web: https://samouraiwallet.com/products docs: https://docs.samourai.io/wallet/start team: anonymous: true sunset: true + +usecases: + - wallets diff --git a/src/projects/scala/index.yaml b/src/projects/scala/index.yaml index fde12aef..2cd60d57 100644 --- a/src/projects/scala/index.yaml +++ b/src/projects/scala/index.yaml @@ -1,10 +1,12 @@ name: Scala categories: - infrastructure -description: 'A secure, anonymous and mobile-friendly cryptocurrency offering easy-to-use solutions to ensure financial privacy' +description: "A secure, anonymous and mobile-friendly cryptocurrency offering easy-to-use solutions to ensure financial privacy" team: - - name: Hayzam - role: Founder, Lead Developer + anonymous: false + teammembers: + - name: Hayzam + role: Founder, Lead Developer links: web: https://scalaproject.io github: https://github.com/scala-network/ @@ -19,3 +21,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/secret-network/index.yaml b/src/projects/secret-network/index.yaml index 69839181..2a7e7332 100644 --- a/src/projects/secret-network/index.yaml +++ b/src/projects/secret-network/index.yaml @@ -6,7 +6,7 @@ tokens: symbol: SCRT network: Secret Network contract_address: secret1k0jntykt7e4g3y88ltc60czgjuqdy4c9e8fzek -description: 'the first blockchain with customizable privacy. You get to choose what you share, with whom, and how. This protects users, and empowers developers to build a better Web3' +description: "the first blockchain with customizable privacy. You get to choose what you share, with whom, and how. This protects users, and empowers developers to build a better Web3" project_type: Infrastructure product_launch_day: "2020-02-13" technology: @@ -15,7 +15,7 @@ technology: features: - privacy - DeFi - - NFTs + - applicationss - PaaS links: web: https://scrt.network @@ -31,9 +31,6 @@ links: blockchain_features: p2p: false encryption: TEE - upgradability: - enabled: true - type: governance/fork opensource: true viewing_key: true dissapearing_tx: false @@ -65,11 +62,11 @@ compliance: false social_trust: Slabs ( MRSINGER ) technical_spof: Can decrypt history: - title: Mainnet - event_type: launch - description: Mainnet - time: Feb 13, 2020 - link: https://shadeprotocol.io/blog/shade-protocol-claim-tutorial + - title: Mainnet + event_type: launch + description: Mainnet + time: Feb 13, 2020 + link: https://shadeprotocol.io/blog/shade-protocol-claim-tutorial client_diversability: - name: Keplr link: https://www.keplr.app/ @@ -88,3 +85,6 @@ project_status: testnet: true mainnet: true have_token: true + +usecases: + - infrastructure diff --git a/src/projects/secure-rpc/index.yaml b/src/projects/secure-rpc/index.yaml index 10fb43ea..cb91a201 100644 --- a/src/projects/secure-rpc/index.yaml +++ b/src/projects/secure-rpc/index.yaml @@ -1,6 +1,9 @@ name: Secure RPC categories: - - rpc -description: 'a bare-metal, fully conformant JSON-RPC/gRPC Infrastructure plane that aims to perform well' + - infrastructure +description: "a bare-metal, fully conformant JSON-RPC/gRPC Infrastructure plane that aims to perform well" links: web: https://securerpc.com + +usecases: + - rpc-provider diff --git a/src/projects/seedsigner/index.yaml b/src/projects/seedsigner/index.yaml index cc5c2205..9da9930e 100644 --- a/src/projects/seedsigner/index.yaml +++ b/src/projects/seedsigner/index.yaml @@ -1,8 +1,8 @@ name: SeedSigner categories: - - wallets + - applications description: Air-gapped DIY Bitcoin Signing Device -ecosystem: Bitcoin +ecosystem: [bitcoin] links: web: https://seedsigner.com/ github: https://github.com/SeedSigner/seedsigner @@ -14,3 +14,6 @@ project_status: version: v0.7.0 testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/seer-sdid/index.yaml b/src/projects/seer-sdid/index.yaml index 9c83c163..dfa0514e 100644 --- a/src/projects/seer-sdid/index.yaml +++ b/src/projects/seer-sdid/index.yaml @@ -1,12 +1,15 @@ name: SEER sdid categories: - - did + - applications description: Building your own community identity like a brand links: web: https://sdid.seer.eco/ - + blog: https://medium.com/@SeerFoundation twitter: https://x.com/SeerFoundation discord: https://discord.com/invite/zpy6tXP5Qt telegram: https://t.me/seer_official have_token: true + +usecases: + - did diff --git a/src/projects/semaphore/index.yaml b/src/projects/semaphore/index.yaml index 199cb7e3..d1a1dfe3 100644 --- a/src/projects/semaphore/index.yaml +++ b/src/projects/semaphore/index.yaml @@ -1,7 +1,7 @@ name: semaphore -categories: [ DID ] -description: 'Semaphore is a protocol that allows users to prove their membership in a group and transmit anonymous data, such as votes or feedback, without revealing their identities.' -project_status: +categories: [applications] +description: "Semaphore is a protocol that allows users to prove their membership in a group and transmit anonymous data, such as votes or feedback, without revealing their identities." +project_status: version: V4-beta live_status: true team: @@ -11,6 +11,10 @@ links: web: https://semaphore.pse.dev discord: https://semaphore.pse.dev/discord twitter: https://semaphore.pse.dev/twitter - docs: https://docs.semaphore.pse.dev + docs: https://docs.semaphore.pse.dev technology: type: zk-kit, circom, snarkjs + features: [""] + +usecases: + - did diff --git a/src/projects/seneca/index.yaml b/src/projects/seneca/index.yaml index 8bd108a1..e1d1b1c1 100644 --- a/src/projects/seneca/index.yaml +++ b/src/projects/seneca/index.yaml @@ -4,3 +4,6 @@ categories: description: The first layer 1 designed to build apps on rich, complex yet private data links: web: https://www.seneca.tech + +usecases: + - infrastructure diff --git a/src/projects/senging-me/index.yaml b/src/projects/senging-me/index.yaml index e10fa020..46bc7fbf 100644 --- a/src/projects/senging-me/index.yaml +++ b/src/projects/senging-me/index.yaml @@ -1,6 +1,6 @@ name: Senging.me categories: - - messaging + - applications description: SendingMe is a decentralized and encrypted super-app that combines chat, socializing, and trade, giving you complete control over your social layer. team: anonymous: true @@ -11,3 +11,6 @@ links: twitter: https://twitter.com/SendingLabs discord: https://discord.com/invite/J43HGTNeWP telegram: https://t.me/SendingNetworkOfficial + +usecases: + - messaging diff --git a/src/projects/sentinel/index.yaml b/src/projects/sentinel/index.yaml index 993c6d2b..3c141f29 100644 --- a/src/projects/sentinel/index.yaml +++ b/src/projects/sentinel/index.yaml @@ -1,8 +1,8 @@ name: Sentinel categories: - - vpn -description: 'A global network of autonomous dVPN applications that enable private and censorship resistant internet access' -ecosystem: Cosmos + - applications +description: "A global network of autonomous dVPN applications that enable private and censorship resistant internet access" +ecosystem: [cosmos] links: web: https://sentinel.co github: https://github.com/sentinel-official @@ -18,3 +18,6 @@ project_status: version: stable testnet: false mainnet: false + +usecases: + - vpn diff --git a/src/projects/serenityshield/index.yaml b/src/projects/serenityshield/index.yaml index 1047b3d8..e39b0ad2 100644 --- a/src/projects/serenityshield/index.yaml +++ b/src/projects/serenityshield/index.yaml @@ -1,7 +1,7 @@ name: SerenityShield categories: - - storage -description: 'The Leading Sensitive Data Storage Solution on Blockchain. Security, Privacy and Digital Rights for Everyone' + - applications +description: "The Leading Sensitive Data Storage Solution on Blockchain. Security, Privacy and Digital Rights for Everyone" team: anonymous: false teammembers: @@ -11,7 +11,7 @@ team: - name: Boris M. role: CPO & Co-Founder - name: Hughes Svay - role: COO + role: COO link: https://x.com/SvayHugues - name: Nikos Koukos role: Head of Marketing @@ -33,7 +33,7 @@ team: link: https://x.com/julioskulls - name: Ranjit Edward role: Infrastructure Architect - link: https://www.linkedin.com/in/ranjitedward/ + link: https://www.linkedin.com/in/ranjitedward/ links: web: https://serenityshield.io blog: https://www.serenityshield.io/blog @@ -42,7 +42,10 @@ links: discord: https://discord.com/invite/SerenityShield telegram: https://t.me/SerenityShield project_status: - live_status: June 2024 + live_status: true version: tbd testnet: false mainnet: false + +usecases: + - storage diff --git a/src/projects/session/index.yaml b/src/projects/session/index.yaml index 8d3081f2..1f11e6ff 100644 --- a/src/projects/session/index.yaml +++ b/src/projects/session/index.yaml @@ -1,8 +1,8 @@ name: Session categories: - - messaging -description: 'An end-to-end encrypted messenger that minimizes sensitive metadata, designed and built for people who want absolute privacy and freedom from any form of surveillance' -ecosystem: Cryptonote + - applications +description: "An end-to-end encrypted messenger that minimizes sensitive metadata, designed and built for people who want absolute privacy and freedom from any form of surveillance" +ecosystem: [cryptonote] links: web: https://getsession.org github: https://github.com/oxen-io @@ -15,3 +15,6 @@ links: team: company: link: https://www.linkedin.com/company/sessionmessenger/people/ + +usecases: + - messaging diff --git a/src/projects/seven-seas/index.yaml b/src/projects/seven-seas/index.yaml index e1f2f5f5..f5c14784 100644 --- a/src/projects/seven-seas/index.yaml +++ b/src/projects/seven-seas/index.yaml @@ -1,2 +1,5 @@ name: Seven Seas categories: [defi] + +usecases: + - defi diff --git a/src/projects/shade-cash/index.yaml b/src/projects/shade-cash/index.yaml index 4d6d9736..91dbf658 100644 --- a/src/projects/shade-cash/index.yaml +++ b/src/projects/shade-cash/index.yaml @@ -1,2 +1,5 @@ name: Shade Cash categories: [defi] + +usecases: + - defi diff --git a/src/projects/shade/index.yaml b/src/projects/shade/index.yaml index 59c6142e..b03c90da 100644 --- a/src/projects/shade/index.yaml +++ b/src/projects/shade/index.yaml @@ -1,20 +1,20 @@ name: Shade Protocol -categories: [ defi ] -ecosystem: Secret +categories: [defi] +ecosystem: [secret] tokens: - name: Shade Protocol symbol: SHD network: Secret Network contract_address: secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm -description: 'Super app for private DeFi' +description: "Super app for private DeFi" project_type: DeFi product_launch_day: "2022-02-21" technology: type: TEE name: Trusted execution environment features: - - private - - DeFi + - private + - DeFi links: web: https://shadeprotocol.io/ twitter: https://twitter.com/Shade_Protocol @@ -29,9 +29,6 @@ links: blockchain_features: p2p: false encryption: TEE - upgradability: - enabled: true - type: multisig opensource: true viewing_key: true dissapearing_tx: false @@ -76,12 +73,12 @@ audits: social_trust: Slabs ( MRSINGER ) technical_spof: Can decrypt history: - title: Mainet - event_type: launch - description: Airdrop - time: Feb 21, 2022 - link: https://shadeprotocol.io/blog/shade-protocol-claim-tutorial -client_diversability: + - title: Mainet + event_type: launch + description: Airdrop + time: Feb 21, 2022 + link: https://shadeprotocol.io/blog/shade-protocol-claim-tutorial +client_diversability: - name: Keplr link: https://www.keplr.app/ - name: Starshell @@ -98,3 +95,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - defi diff --git a/src/projects/shinobi/index.yaml b/src/projects/shinobi/index.yaml index 9f4ce821..58895adb 100644 --- a/src/projects/shinobi/index.yaml +++ b/src/projects/shinobi/index.yaml @@ -1,11 +1,14 @@ -name: Shinobi -categories: [bridge] -links: -web: https://www.sbtc.ninja/ -github: https://github.com/shinobi-protocol -docs: https://docs.sbtc.ninja/ -whitepaper: https://www.sbtc.ninja/pdf/whitepaper.pdf -blog: https://medium.com/@ShinobiProtocol -twitter: https://twitter.com/ShinobiProtocol -discord: https://discord.com/invite/wm275b6m8d -telegram: https://t.me/shinobi_protocol +id: shinobi +name: Shinobi +categories: [defi] +links: + github: https://github.com/shinobi-protocol + docs: https://docs.sbtc.ninja/ + whitepaper: https://www.sbtc.ninja/pdf/whitepaper.pdf + blog: https://medium.com/@ShinobiProtocol + twitter: https://twitter.com/ShinobiProtocol + discord: https://discord.com/invite/wm275b6m8d + telegram: https://t.me/shinobi_protocol + +usecases: + - bridge diff --git a/src/projects/sia/index.yaml b/src/projects/sia/index.yaml index c198f310..b61ca820 100644 --- a/src/projects/sia/index.yaml +++ b/src/projects/sia/index.yaml @@ -1,6 +1,6 @@ name: Sia categories: - - storage + - applications description: Decentralized data storage team: anonymous: false @@ -18,7 +18,7 @@ team: role: Director People & Support link: https://github.com/stevefunk - name: Luke - role: Founder & Researcher + role: Founder & Researcher link: https://x.com/lukechampine - name: Alex role: Product Engineer @@ -31,7 +31,7 @@ team: link: https://github.com/chris124567 - name: Kino role: Community Manager - link: https://github.com/kinomora + link: https://github.com/kinomora links: web: https://sia.tech github: https://github.com/SiaFoundation @@ -47,3 +47,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - storage diff --git a/src/projects/sienna/index.yaml b/src/projects/sienna/index.yaml index 74849c09..965172fb 100644 --- a/src/projects/sienna/index.yaml +++ b/src/projects/sienna/index.yaml @@ -1,12 +1,12 @@ name: Sienna Network -categories: [ defi ] -ecosystem: Secret +categories: [defi] +ecosystem: [cecret] tokens: - name: Sienna Network symbol: SIENNA network: Secret Network contract_address: secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4 -description: 'Privacy-first, cross-chain decentralized finance protocol powered by Secret Network in the Cosmos ecosystem.' +description: "Privacy-first, cross-chain decentralized finance protocol powered by Secret Network in the Cosmos ecosystem." project_type: DeFi product_launch_day: "2022-04-27" technology: @@ -30,9 +30,6 @@ links: blockchain_features: p2p: false encryption: TEE - upgradability: - enabled: true - type: DAO opensource: true viewing_key: true dissapearing_tx: false @@ -64,12 +61,12 @@ audits: social_trust: Slabs ( MRSINGER ) technical_spof: Can decrypt history: - title: Mainet - event_type: launch - description: V1 - time: October 2021 - link: https://docs.scrt.network/secret-network-documentation/overview-ecosystem-and-technology/secret-network-overview/history -client_diversability: + - title: Mainet + event_type: launch + description: V1 + time: October 2021 + link: https://docs.scrt.network/secret-network-documentation/overview-ecosystem-and-technology/secret-network-overview/history +client_diversability: - name: Keplr link: https://www.keplr.app/ - name: Starshell @@ -86,3 +83,6 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: + - defi diff --git a/src/projects/sigle/index.yaml b/src/projects/sigle/index.yaml index 2c818e47..738f5b75 100644 --- a/src/projects/sigle/index.yaml +++ b/src/projects/sigle/index.yaml @@ -1,7 +1,7 @@ name: Sigle categories: - - dapps -description: 'Secured and open-source writing platform for web3 content creators, NFT projects, crypto analysts' + - applications +description: "Secured and open-source writing platform for web3 content creators, NFT projects, crypto analysts" links: web: https://www.sigle.io github: https://github.com/sigle/sigle @@ -11,3 +11,6 @@ links: blog: https://blog.sigle.io/ twitter: https://x.com/sigleapp discord: https://discord.com/invite/X2Dbz3xbrs + +usecases: + - dapps diff --git a/src/projects/silent-data/index.yaml b/src/projects/silent-data/index.yaml index fd92bb8d..e0aafcf8 100644 --- a/src/projects/silent-data/index.yaml +++ b/src/projects/silent-data/index.yaml @@ -1,6 +1,6 @@ name: Silent Data categories: - - dapps + - applications description: Verify web2 Data in web3 Applications. links: web: https://silentdata.com @@ -9,3 +9,6 @@ links: blog: https://www.silentdata.com/oracle/blog/ twitter: https://x.com/SilentDataApp discord: https://discord.com/invite/5Dg57zStXG + +usecases: + - dapps diff --git a/src/projects/silent-protocol/index.yaml b/src/projects/silent-protocol/index.yaml index 2e537c3b..a7ad6300 100644 --- a/src/projects/silent-protocol/index.yaml +++ b/src/projects/silent-protocol/index.yaml @@ -1,8 +1,11 @@ name: Silent protocol categories: [defi] -ecosystem: Ethereum -description: 'Silent Protocol is the first protocol enabling compliant full-stack privacy for smart contract assets and web3 applications at scale.' +ecosystem: [ethereum] +description: "Silent Protocol is the first protocol enabling compliant full-stack privacy for smart contract assets and web3 applications at scale." links: web: https://www.silentprotocol.org/ team: anonymous: true + +usecases: + - defi diff --git a/src/projects/silk/index.yaml b/src/projects/silk/index.yaml index 84053e48..6af91290 100644 --- a/src/projects/silk/index.yaml +++ b/src/projects/silk/index.yaml @@ -1,16 +1,15 @@ name: SILK categories: - - currency -description: Private Over-Collateralized Anti-inflationary Stable Coin + - defi +description: Private Over-Collateralized Anti-inflationary Stable Coin technology: + features: [""] type: TEE name: Trusted execution environment blockchain_features: p2p: false encryption: TEE - upgradability: - enabled: true - type: multisig + opensource: true viewing_key: true dissapearing_tx: false @@ -31,18 +30,19 @@ third_party_dependency: false compliance: false social_trust: Shade Core team ( Secret Contract multisig ) technical_spof: Can decrypt - + project_status: live_status: true version: Mainnet testnet: false mainnet: true - - -ecosystem: Secret Network + +ecosystem: [secret-network] links: web: https://app.shadeprotocol.io/silk github: https://github.com/securesecrets/shade twitter: https://x.com/Silk_Stable +usecases: + - currency diff --git a/src/projects/sirius-sync/index.yaml b/src/projects/sirius-sync/index.yaml index 5bee658e..5e820877 100644 --- a/src/projects/sirius-sync/index.yaml +++ b/src/projects/sirius-sync/index.yaml @@ -1,6 +1,6 @@ name: Sirius Sync categories: - - dapps + - applications description: Web3 Social Ecosystem links: web: https://siriussync.io @@ -9,3 +9,6 @@ links: blog: https://medium.com/@siriussyncrealm twitter: https://x.com/siriussyncrealm telegram: https://t.me/siriussynccommunity + +usecases: + - dapps diff --git a/src/projects/sismo/index.yaml b/src/projects/sismo/index.yaml index e388bfc5..0c8f9cfb 100644 --- a/src/projects/sismo/index.yaml +++ b/src/projects/sismo/index.yaml @@ -1,7 +1,7 @@ name: Sismo categories: - - did -description: 'a modular protocol issuing ZK Badges for reputation portability and aggregation' + - applications +description: "a modular protocol issuing ZK Badges for reputation portability and aggregation" links: web: https://www.sismo.io/ github: https://github.com/sismo-core @@ -11,3 +11,6 @@ links: twitter: https://x.com/sismo_eth discord: https://discord.com/invite/xKTMeRUX6u have_token: true + +usecases: + - did diff --git a/src/projects/skiff-drive/index.yaml b/src/projects/skiff-drive/index.yaml index edc90e1b..ec64a724 100644 --- a/src/projects/skiff-drive/index.yaml +++ b/src/projects/skiff-drive/index.yaml @@ -1,8 +1,11 @@ name: Skiff Drive categories: - - storage + - applications description: Secure file storage links: web: https://skiff.com/drive github: https://github.com/skiff-org sunset: true + +usecases: + - storage diff --git a/src/projects/skiff-pages/index.yaml b/src/projects/skiff-pages/index.yaml index 21bf4e16..233fb3c2 100644 --- a/src/projects/skiff-pages/index.yaml +++ b/src/projects/skiff-pages/index.yaml @@ -1,7 +1,10 @@ name: Skiff Pages categories: - - dapps + - applications description: Private, End-to-End Encrypted Notes links: web: https://skiff.com/pages github: https://github.com/skiff-org + +usecases: + - dapps diff --git a/src/projects/skiff/index.yaml b/src/projects/skiff/index.yaml index 3adfdbe4..6a229a71 100644 --- a/src/projects/skiff/index.yaml +++ b/src/projects/skiff/index.yaml @@ -1,6 +1,6 @@ name: Skiff categories: - - dapps + - applications description: Web3 email, drive, and docs links: web: https://skiff.com/crypto @@ -9,3 +9,6 @@ links: docs: https://skiff.com/skiff-crypto/ twitter: https://x.com/skiffprivacy + +usecases: + - dapps diff --git a/src/projects/skynet/index.yaml b/src/projects/skynet/index.yaml index 052b3c3a..d8894418 100644 --- a/src/projects/skynet/index.yaml +++ b/src/projects/skynet/index.yaml @@ -1,8 +1,11 @@ name: SkyNet categories: - - storage -description: 'an open protocol for hosting data and web applications on the decentralized web using Sia' + - applications +description: "an open protocol for hosting data and web applications on the decentralized web using Sia" links: web: https://skynetlabs.com github: https://github.com/SkynetLabs sunset: true + +usecases: + - storage diff --git a/src/projects/slashags/index.yaml b/src/projects/slashags/index.yaml index 5e4ab287..f8946718 100644 --- a/src/projects/slashags/index.yaml +++ b/src/projects/slashags/index.yaml @@ -1,13 +1,16 @@ name: Slashags categories: - - did -description: 'Slashtags gives developers tools to build secure and scalable peer-to-peer applications that put users in control of their profiles, contacts, accounts, and data' + - applications +description: "Slashtags gives developers tools to build secure and scalable peer-to-peer applications that put users in control of their profiles, contacts, accounts, and data" links: web: https://slashtags.to github: https://github.com/synonymdev/slashtags - + blog: https://blog.bitkit.to/ twitter: https://x.com/slashtags_to discord: https://discord.com/invite/DxTBJXvJxn telegram: https://t.me/slashtags have_token: true + +usecases: + - did diff --git a/src/projects/socialkyc/index.yaml b/src/projects/socialkyc/index.yaml index ea86e820..ab73b2b2 100644 --- a/src/projects/socialkyc/index.yaml +++ b/src/projects/socialkyc/index.yaml @@ -1,6 +1,6 @@ name: socialKYC categories: - - kyc + - applications description: Your decentralized social credentials team: anonymous: true @@ -10,3 +10,6 @@ links: blog: https://medium.com/kilt-protocol/announcing-socialkyc-built-on-kilt-65a29a974d07 twitter: https://x.com/social_kyc + +usecases: + - kyc-solution diff --git a/src/projects/sociogram/index.yaml b/src/projects/sociogram/index.yaml index 2515ebb0..159352ae 100644 --- a/src/projects/sociogram/index.yaml +++ b/src/projects/sociogram/index.yaml @@ -1,6 +1,6 @@ name: Sociogram categories: - - dapps + - applications description: Web3Social Media focused on privacy. links: web: https://sociogram.org @@ -10,3 +10,6 @@ links: twitter: https://x.com/SociogramSocFi discord: https://discord.com/invite/kufW7ZfjeD telegram: https://t.me/sociogram_channel + +usecases: + - dapps diff --git a/src/projects/solar-labs/index.yaml b/src/projects/solar-labs/index.yaml index 624613c0..7f6ae173 100644 --- a/src/projects/solar-labs/index.yaml +++ b/src/projects/solar-labs/index.yaml @@ -1,8 +1,11 @@ name: Solar labs categories: - - vpn + - applications description: World’s first truly decentralized blockchain-based VPN service. links: web: https://solarlabs.ee twitter: https://twitter.com/solardvpn have_token: true + +usecases: + - vpn diff --git a/src/projects/sons-of-crypto/index.yaml b/src/projects/sons-of-crypto/index.yaml index e0d40270..718d28eb 100644 --- a/src/projects/sons-of-crypto/index.yaml +++ b/src/projects/sons-of-crypto/index.yaml @@ -1,8 +1,8 @@ name: Sons of Crypto categories: - - wallets + - applications description: Web3 wallet by degens for degens -ecosystem: multichain +ecosystem: [multichain] links: web: https://sonsofcrypto.com/ github: https://github.com/sonsofcrypto @@ -13,6 +13,9 @@ team: anonymous: true project_status: live_status: true - version: + version: "" testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/sparrow/index.yaml b/src/projects/sparrow/index.yaml index ec52fb69..f8d64b7d 100644 --- a/src/projects/sparrow/index.yaml +++ b/src/projects/sparrow/index.yaml @@ -1,8 +1,9 @@ +id: sparrow name: Sparrow categories: - - wallets + - applications description: A Bitcoin wallet for those who value financial self-sovereignty -ecosystem: Bitcoin +ecosystem: [bitcoin] links: web: https://sparrowwallet.com/ github: https://github.com/sparrowwallet/sparrow @@ -16,6 +17,8 @@ team: link: http://twitter.com/craigraw project_status: live_status: true - version: testnet: false mainnet: false + +usecases: + - wallets diff --git a/src/projects/speak-app/index.yaml b/src/projects/speak-app/index.yaml index 57685f98..fb4e82f5 100644 --- a/src/projects/speak-app/index.yaml +++ b/src/projects/speak-app/index.yaml @@ -1,10 +1,13 @@ name: Speak app categories: - - messaging -description: 'No phone number. No email address. Speakapp is a simple, and secure web3 messenger' + - applications +description: "No phone number. No email address. Speakapp is a simple, and secure web3 messenger" team: anonymous: true links: web: https://speakapp.me blog: https://blog.speakapp.me/ twitter: https://twitter.com/speakappme + +usecases: + - messaging diff --git a/src/projects/speakeasy/index.yaml b/src/projects/speakeasy/index.yaml index 0f097df8..004e8970 100644 --- a/src/projects/speakeasy/index.yaml +++ b/src/projects/speakeasy/index.yaml @@ -1,7 +1,10 @@ name: Speakeasy categories: - - messaging -description: 'Speak easily to a group of friends or a global community. Talk about what you want. Surveillance free. Censorship proof' + - applications +description: "Speak easily to a group of friends or a global community. Talk about what you want. Surveillance free. Censorship proof" links: web: https://alpha.speakeasy.tech twitter: https://x.com/speakeasy_tech + +usecases: + - messaging diff --git a/src/projects/specter-diy/index.yaml b/src/projects/specter-diy/index.yaml index 7816a4d5..5d9616a9 100644 --- a/src/projects/specter-diy/index.yaml +++ b/src/projects/specter-diy/index.yaml @@ -1,10 +1,13 @@ name: Specter-DIY categories: - - wallets -description: 'DIY airgapped hardware wallet that uses QR codes for communication with the host' -ecosystem: Bitcoin + - applications +description: "DIY airgapped hardware wallet that uses QR codes for communication with the host" +ecosystem: [bitcoin] links: web: https://specter.solutions/hardware github: https://github.com/cryptoadvance/specter-diy/ team: anonymous: false + +usecases: + - wallets diff --git a/src/projects/sphereon-wallet/index.yaml b/src/projects/sphereon-wallet/index.yaml index 71640ec4..3a9d5d51 100644 --- a/src/projects/sphereon-wallet/index.yaml +++ b/src/projects/sphereon-wallet/index.yaml @@ -1,9 +1,12 @@ name: Sphereon Wallet categories: - - wallets -description: 'The Sphereon Wallet enables you to store your own private data and gives you full and sole control over whom you want to share your information with' + - applications +description: "The Sphereon Wallet enables you to store your own private data and gives you full and sole control over whom you want to share your information with" links: web: https://github.com/Sphereon-Opensource/ssi-mobile-wallet github: https://github.com/Sphereon-Opensource/ssi-mobile-wallet team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/sphereon/index.yaml b/src/projects/sphereon/index.yaml index 2135958e..1bafaf4e 100644 --- a/src/projects/sphereon/index.yaml +++ b/src/projects/sphereon/index.yaml @@ -1,8 +1,11 @@ name: Sphereon categories: - - wallets -description: 'The Sphereon Wallet enables you to store your own private data and gives you full and sole control over whom you want to share your information with' + - applications +description: "The Sphereon Wallet enables you to store your own private data and gives you full and sole control over whom you want to share your information with" links: github: https://github.com/Sphereon-Opensource/ssi-mobile-wallet team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/spillways/index.yaml b/src/projects/spillways/index.yaml index 0c706ed6..49d1ca28 100644 --- a/src/projects/spillways/index.yaml +++ b/src/projects/spillways/index.yaml @@ -1,6 +1,6 @@ name: Spillways -categories: mixing-service -description: 'Mixer enables fast, secure, and private transactions in crypto by obscuring the source and destination of funds' +categories: [applications] +description: "Mixer enables fast, secure, and private transactions in crypto by obscuring the source and destination of funds" team: anonymous: false links: @@ -21,3 +21,5 @@ project_status: version: Mainnet testnet: false mainnet: true + +usecases: [mixing-service] diff --git a/src/projects/spiral-finance/index.yaml b/src/projects/spiral-finance/index.yaml index 19e5d953..360ef549 100644 --- a/src/projects/spiral-finance/index.yaml +++ b/src/projects/spiral-finance/index.yaml @@ -1,2 +1,5 @@ name: Spiral Finance categories: [defi] + +usecases: + - defi diff --git a/src/projects/spkz/index.yaml b/src/projects/spkz/index.yaml index bf920f07..32d31e9a 100644 --- a/src/projects/spkz/index.yaml +++ b/src/projects/spkz/index.yaml @@ -1,6 +1,6 @@ name: SPKZ categories: - - dapps + - applications description: The first fully decentralized web3 community/chat platform. links: web: https://spkz.io @@ -9,3 +9,6 @@ links: blog: https://medium.com/arianee/why-we-are-building-spkz-c856e251c899 twitter: https://x.com/SPKZ_io + +usecases: + - dapps diff --git a/src/projects/spoc/index.yaml b/src/projects/spoc/index.yaml index b3d01c43..cd8fe699 100644 --- a/src/projects/spoc/index.yaml +++ b/src/projects/spoc/index.yaml @@ -1,7 +1,10 @@ name: Spoc categories: - - data-management -description: 'A privacy system that enables DaaS and creates balance between business CRM and how individuals control & manage data' + - applications +description: "A privacy system that enables DaaS and creates balance between business CRM and how individuals control & manage data" links: web: https://spoc.com/ twitter: https://x.com/SPOCme + +usecases: + - data-management diff --git a/src/projects/spook/index.yaml b/src/projects/spook/index.yaml index 5a0099a5..905265f6 100644 --- a/src/projects/spook/index.yaml +++ b/src/projects/spook/index.yaml @@ -1,6 +1,9 @@ name: Spook categories: - - rpc + - infrastructure description: Mixing service using the Nym network to anonymize Ethereum RPC calls. links: web: https://github.com/EdenBlockVC/spook + +usecases: + - rpc-provider diff --git a/src/projects/sporran/index.yaml b/src/projects/sporran/index.yaml index 3052d8bb..9d802a36 100644 --- a/src/projects/sporran/index.yaml +++ b/src/projects/sporran/index.yaml @@ -1,9 +1,12 @@ name: Sporran categories: - - wallets -description: 'The Sporran wallet is a browser extension that provides a gateway to the KILT blockchain identity protocol and Web3 services' + - applications +description: "The Sporran wallet is a browser extension that provides a gateway to the KILT blockchain identity protocol and Web3 services" links: web: https://www.sporran.org/ github: https://github.com/BTE-Trusted-Entity/sporran-extension team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/spruce/index.yaml b/src/projects/spruce/index.yaml index 18ab3adb..1f173ed2 100644 --- a/src/projects/spruce/index.yaml +++ b/src/projects/spruce/index.yaml @@ -1,7 +1,7 @@ name: Spruce categories: - - did -description: 'open-source stack to leave control of identity and data where it should be: with users' + - applications +description: "open-source stack to leave control of identity and data where it should be: with users" links: web: https://spruceid.com github: https://github.com/spruceid @@ -11,3 +11,6 @@ links: twitter: https://x.com/SpruceID discord: https://discord.com/invite/KmQeRhQPYh have_token: true + +usecases: + - did diff --git a/src/projects/starkex/index.yaml b/src/projects/starkex/index.yaml index 90f81fe3..2e1d6a0f 100644 --- a/src/projects/starkex/index.yaml +++ b/src/projects/starkex/index.yaml @@ -1,8 +1,8 @@ name: StarkEX categories: - - layer-2 + - infrastructure description: A Layer-2 scalability engine, live on Ethereum Mainnet ✨️ZK -ecosystem: Ethereum +ecosystem: [ethereum] links: web: https://starkware.co/starkex/ github: https://github.com/starkware-libs/starkex-resources @@ -14,3 +14,6 @@ team: anonymous: false company: link: https://starkware.co/about-us/ + +usecases: + - eth-layer-2 diff --git a/src/projects/starshell/index.yaml b/src/projects/starshell/index.yaml index 44e93b09..a23f6ce9 100644 --- a/src/projects/starshell/index.yaml +++ b/src/projects/starshell/index.yaml @@ -1,10 +1,13 @@ name: Starshell categories: - - wallets -description: 'A privacy-preserving, free and open-source Web3 wallet built for the Secret Network and Cosmos ecosystem' -ecosystem: multichain + - applications +description: "A privacy-preserving, free and open-source Web3 wallet built for the Secret Network and Cosmos ecosystem" +ecosystem: [multichain] links: web: https://starshell.net/ github: https://github.com/SolarRepublic team: anonymous: false + +usecases: + - wallets diff --git a/src/projects/start9/index.yaml b/src/projects/start9/index.yaml index e611290e..dc2050a9 100644 --- a/src/projects/start9/index.yaml +++ b/src/projects/start9/index.yaml @@ -1,6 +1,6 @@ name: Start9 categories: - - node + - infrastructure description: Sovereign computing for a free future. team: anonymous: true @@ -15,3 +15,6 @@ project_status: version: v0.3.5.1 testnet: false mainnet: true + +usecases: + - node diff --git a/src/projects/stashh/index.yaml b/src/projects/stashh/index.yaml index 01c5b465..e3df7ed9 100644 --- a/src/projects/stashh/index.yaml +++ b/src/projects/stashh/index.yaml @@ -1,7 +1,7 @@ name: Stashh categories: - - nft -description: 'Explore the worlds first marketplace for NFTs with privacy by default and unlock their hidden data' + - applications +description: "Explore the worlds first marketplace for NFTs with privacy by default and unlock their hidden data" links: web: https://stashh.io github: https://github.com/stashh-labs @@ -14,5 +14,8 @@ project_status: version: Mainnet testnet: false mainnet: true -have_token: false +have_token: false sunset: false + +usecases: + - nft-community diff --git a/src/projects/status-web3-browser/index.yaml b/src/projects/status-web3-browser/index.yaml index 417085dd..b67c1a2f 100644 --- a/src/projects/status-web3-browser/index.yaml +++ b/src/projects/status-web3-browser/index.yaml @@ -1,10 +1,13 @@ name: Status Web3 Browser categories: - - browser -description: 'Access the latest defi dapps, exchanges, marketplaces, games and more with the Web3 Browser' + - applications +description: "Access the latest defi dapps, exchanges, marketplaces, games and more with the Web3 Browser" links: web: https://status.im/web-three-browser/ github: https://github.com/status-im blog: https://status.app/blog twitter: https://twitter.com/ethstatus facebook: https://www.facebook.com/ethstatus/about + +usecases: + - browser diff --git a/src/projects/status/index.yaml b/src/projects/status/index.yaml index e52ec145..f3488896 100644 --- a/src/projects/status/index.yaml +++ b/src/projects/status/index.yaml @@ -1,7 +1,7 @@ name: Status categories: - - messaging -description: 'Status is a secure messaging app, crypto wallet, and Web3 browser built with state of the art technology' + - social-and-communications +description: "Status is a secure messaging app, crypto wallet, and Web3 browser built with state of the art technology" team: anonymous: false links: @@ -10,3 +10,6 @@ links: docs: https://status.app/specs blog: https://status.app/blog twitter: https://twitter.com/ethstatus + +usecases: + - messaging diff --git a/src/projects/stealthdrop/index.yaml b/src/projects/stealthdrop/index.yaml index f6f5f8fc..fcaa396d 100644 --- a/src/projects/stealthdrop/index.yaml +++ b/src/projects/stealthdrop/index.yaml @@ -1,7 +1,10 @@ name: Stealthdrop categories: - - dapps + - applications description: Anonymous Airdrops using ZK-SNARKS ✨️**ZK** links: web: https://stealthdrop.xyz github: https://github.com/stealthdrop/stealthdrop + +usecases: + - dapps diff --git a/src/projects/stealthpay/index.yaml b/src/projects/stealthpay/index.yaml index 97beef39..1b877cf9 100644 --- a/src/projects/stealthpay/index.yaml +++ b/src/projects/stealthpay/index.yaml @@ -1,2 +1,5 @@ name: StealthPay categories: [defi] + +usecases: + - defi diff --git a/src/projects/stereum/index.yaml b/src/projects/stereum/index.yaml index 8e7c0d21..1ba9f26e 100644 --- a/src/projects/stereum/index.yaml +++ b/src/projects/stereum/index.yaml @@ -1,7 +1,7 @@ name: Stereum categories: - - node -description: 'Graphical tool for installing Ethereum clients on a remote server via SSH connection with a simple setup guide, phone app for remote monitoring, control center and other features' + - infrastructure +description: "Graphical tool for installing Ethereum clients on a remote server via SSH connection with a simple setup guide, phone app for remote monitoring, control center and other features" team: anonymous: true links: @@ -14,3 +14,6 @@ project_status: version: v2.1.3 testnet: true mainnet: true + +usecases: + - node diff --git a/src/projects/storj/index.yaml b/src/projects/storj/index.yaml index db216bdf..78287e9c 100644 --- a/src/projects/storj/index.yaml +++ b/src/projects/storj/index.yaml @@ -1,10 +1,10 @@ name: Storj categories: - - storage -description: 'globally distributed network for data storage with better security, privacy, and durability with CDN-like performance' + - applications +description: "globally distributed network for data storage with better security, privacy, and durability with CDN-like performance" team: anonymous: true -links: +links: web: https://www.storj.io/ github: https://github.com/Storj/ docs: https://docs.storj.io/ @@ -15,4 +15,7 @@ project_status: live_status: true version: Mainnet v1.104.5 testnet: false - mainnet: true + mainnet: true + +usecases: + - storage diff --git a/src/projects/suterusu/index.yaml b/src/projects/suterusu/index.yaml index 84bd10c4..b7f72154 100644 --- a/src/projects/suterusu/index.yaml +++ b/src/projects/suterusu/index.yaml @@ -1,10 +1,13 @@ name: Suterusu categories: - infrastructure -description: 'A suite of privacy-preserving services to obfuscate transactional and asset information' +description: "A suite of privacy-preserving services to obfuscate transactional and asset information" links: web: https://suterusu.io github: https://github.com/suterusu-team have_token: true tokens: - symbol: SUTER + +usecases: + - infrastructure diff --git a/src/projects/swarm/index.yaml b/src/projects/swarm/index.yaml index 0307df15..2d47a152 100644 --- a/src/projects/swarm/index.yaml +++ b/src/projects/swarm/index.yaml @@ -1,7 +1,7 @@ name: Swarm categories: - - storage -description: 'A decentralized data storage and distribution technology. Ready to power the next generation of censorship-resistant, unstoppable, serverless dApps' + - applications +description: "A decentralized data storage and distribution technology. Ready to power the next generation of censorship-resistant, unstoppable, serverless dApps" team: anonymous: true links: @@ -24,3 +24,6 @@ tokens: symbol: BZZ network: Ethereum contract_address: "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb" + +usecases: + - storage diff --git a/src/projects/synx/index.yaml b/src/projects/synx/index.yaml index f701e000..9e0ab5e0 100644 --- a/src/projects/synx/index.yaml +++ b/src/projects/synx/index.yaml @@ -1,6 +1,6 @@ name: Synx categories: - - storage + - applications description: The Web3 storage platform team: anonymous: true @@ -12,3 +12,6 @@ project_status: version: Alpha testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/tails-os/index.yaml b/src/projects/tails-os/index.yaml index 72d650da..584f1d4a 100644 --- a/src/projects/tails-os/index.yaml +++ b/src/projects/tails-os/index.yaml @@ -1,7 +1,7 @@ name: TAILS OS categories: - - os -description: 'Tails is a portable operating system that protects your privacy and helps you avoid censorship' + - applications +description: "Tails is a portable operating system that protects your privacy and helps you avoid censorship" team: anonymous: true links: @@ -11,6 +11,9 @@ links: twitter: https://twitter.com/Tails_live project_status: live_status: true - version: 6.3 + version: "6.3" testnet: false mainnet: false + +usecases: + - operation-systems diff --git a/src/projects/telebridge/index.yaml b/src/projects/telebridge/index.yaml index 9692ff8a..66adebde 100644 --- a/src/projects/telebridge/index.yaml +++ b/src/projects/telebridge/index.yaml @@ -1,6 +1,6 @@ name: Hype (formerly known as TeleBridge) -categories: [ mixing-service ] -description: 'Hype is the first Telegram-based bot that can be used to mix your ETH, clean your wallets and bridge anonymously.' +categories: [applications] +description: "Hype is the first Telegram-based bot that can be used to mix your ETH, clean your wallets and bridge anonymously." team: anonymous: true links: @@ -8,3 +8,6 @@ links: whitepaper: https://hype-eth.com/whitepaper.pdf twitter: https://x.com/TelebridgeERC telegram: https://t.me/TeleBridgingBot + +usecases: + - mixing-service diff --git a/src/projects/telios/index.yaml b/src/projects/telios/index.yaml index 3dd0feaa..b8395e60 100644 --- a/src/projects/telios/index.yaml +++ b/src/projects/telios/index.yaml @@ -1,7 +1,10 @@ name: Telios categories: - - dapps + - applications description: Secure Communication with Encrypted Data and Email links: web: https://www.telios.io github: https://github.com/Telios-org + +usecases: + - dapps diff --git a/src/projects/the-anon-club/index.yaml b/src/projects/the-anon-club/index.yaml index 475182c7..dd563453 100644 --- a/src/projects/the-anon-club/index.yaml +++ b/src/projects/the-anon-club/index.yaml @@ -1,8 +1,11 @@ name: The Anon Club categories: - - nft + - applications description: World's first privacy-focused digital collectibles. links: web: https://theanonclub.com twitter: https://x.com/theanonclub -sunset: true +sunset: true + +usecases: + - nft-community diff --git a/src/projects/the-farcaster-project/index.yaml b/src/projects/the-farcaster-project/index.yaml index 06ed0be6..0a3b29a0 100644 --- a/src/projects/the-farcaster-project/index.yaml +++ b/src/projects/the-farcaster-project/index.yaml @@ -1,9 +1,12 @@ name: The Farcaster Project categories: - infrastructure -description: 'A cross-chain atomic swap protocol and implementation who allows to exchange Bitcoin and Monero in a peer-to-peer manner with anyone running a Farcaster node' +description: "A cross-chain atomic swap protocol and implementation who allows to exchange Bitcoin and Monero in a peer-to-peer manner with anyone running a Farcaster node" team: anonymous: true links: web: https://farcaster.dev/ github: https://github.com/farcaster-project + +usecases: + - infrastructure diff --git a/src/projects/timpi/index.yaml b/src/projects/timpi/index.yaml index c022eb5e..5d169700 100644 --- a/src/projects/timpi/index.yaml +++ b/src/projects/timpi/index.yaml @@ -1,6 +1,6 @@ name: Timpi categories: - - dapps + - applications description: Decentralized Search Engine & Index links: web: https://timpi.io @@ -10,3 +10,6 @@ links: twitter: https://x.com/Timpi_TheNewWay discord: https://discord.com/invite/wGRm9c7JE2 telegram: https://t.me/TimpiMe + +usecases: + - dapps diff --git a/src/projects/tlsnotary/index.yaml b/src/projects/tlsnotary/index.yaml index 20fc3ba7..d7a09507 100644 --- a/src/projects/tlsnotary/index.yaml +++ b/src/projects/tlsnotary/index.yaml @@ -1,6 +1,6 @@ name: TLSNotary categories: - - dapps + - applications description: Proof of data authenticity links: web: https://tlsnotary.org @@ -10,3 +10,6 @@ links: blog: https://mirror.xyz/privacy-scaling-explorations.eth/T4MR2PgBzBmN2I3dhDJpILXkQsqZp1Bp8GSm_Oo3Vnw twitter: https://x.com/tlsnotary discord: https://discord.com/invite/9XwESXtcN7 + +usecases: + - dapps diff --git a/src/projects/tomochainp/index.yaml b/src/projects/tomochainp/index.yaml index e1d81938..f08496a6 100644 --- a/src/projects/tomochainp/index.yaml +++ b/src/projects/tomochainp/index.yaml @@ -1,10 +1,13 @@ name: TomoChainP categories: - infrastructure -description: 'A privacy protocols developed on TomoChain and designed to create safe and untraceable transactions' +description: "A privacy protocols developed on TomoChain and designed to create safe and untraceable transactions" links: web: https://tomochain.com/tomop github: https://github.com/tomochain/tomop have_token: true tokens: - symbol: TOMO + +usecases: + - infrastructure diff --git a/src/projects/tonnel-network/index.yaml b/src/projects/tonnel-network/index.yaml index dc8df3f5..5a074a45 100644 --- a/src/projects/tonnel-network/index.yaml +++ b/src/projects/tonnel-network/index.yaml @@ -1,7 +1,7 @@ name: Tonnel Network categories: - infrastructure -description: This is the first fully functioning tornado-core implementation on TON blockchain. It is based on circom and snarkjs libraries. +description: This is the first fully functioning tornado-core implementation on TON blockchain. It is based on circom and snarkjs libraries. team: anonymous: true links: @@ -16,3 +16,6 @@ project_status: version: Testnet testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/tornadocash/index.yaml b/src/projects/tornadocash/index.yaml index 68cfe62f..5006b8b2 100644 --- a/src/projects/tornadocash/index.yaml +++ b/src/projects/tornadocash/index.yaml @@ -1,7 +1,7 @@ name: TornadoCash categories: - - mixing-service -description: 'an open source, non-custodial, fully decentralized cryptocurrency tumbler that runs on Ethereum Virtual Machine-compatible networks' + - applications +description: "an open source, non-custodial, fully decentralized cryptocurrency tumbler that runs on Ethereum Virtual Machine-compatible networks" team: anonymous: true links: @@ -16,3 +16,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - mixing-service diff --git a/src/projects/transferchain/index.yaml b/src/projects/transferchain/index.yaml index 08dced23..3e7690fb 100644 --- a/src/projects/transferchain/index.yaml +++ b/src/projects/transferchain/index.yaml @@ -1,7 +1,7 @@ name: TransferChain categories: - - storage -description: 'Enables users to store, process, and share their data while ensuring its privacy and security' + - applications +description: "Enables users to store, process, and share their data while ensuring its privacy and security" team: anonymous: true links: @@ -15,3 +15,6 @@ project_status: version: tbd testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/treasure-chest/index.yaml b/src/projects/treasure-chest/index.yaml index 61685a94..1f157b5e 100644 --- a/src/projects/treasure-chest/index.yaml +++ b/src/projects/treasure-chest/index.yaml @@ -1,10 +1,13 @@ name: Treasure Chest categories: - - wallets -description: 'Treasure Chest is the main full node wallet for the ARRR cryptocurrency' -ecosystem: Pirate Chain + - applications +description: "Treasure Chest is the main full node wallet for the ARRR cryptocurrency" +ecosystem: [pirate-chain] links: web: https://pirate.black/wallets/treasure-chest/ github: https://github.com/PirateNetwork/PirateWallet-Lite team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/trivium/index.yaml b/src/projects/trivium/index.yaml index b15dcae6..760a383d 100644 --- a/src/projects/trivium/index.yaml +++ b/src/projects/trivium/index.yaml @@ -1,7 +1,7 @@ name: Trivium categories: - - rd -description: 'Provides validator services to several networks, and develops privacy-preserving dApps' + - infrastructure +description: "Provides validator services to several networks, and develops privacy-preserving dApps" links: web: https://trivium.network github: https://github.com/TriviumNode @@ -9,3 +9,6 @@ links: twitter: https://x.com/TriviumNode discord: https://discord.com/invite/tZj7ZhhdP5 telegram: https://t.me/TriviumNode + +usecases: + - research-and-development diff --git a/src/projects/trocador-app/index.yaml b/src/projects/trocador-app/index.yaml index e04ebc6e..e7cc003e 100644 --- a/src/projects/trocador-app/index.yaml +++ b/src/projects/trocador-app/index.yaml @@ -1,9 +1,12 @@ name: Trocador App categories: - infrastructure -description: 'A privacy-focused exchange aggregator. Anonymous service, no Java, no registration, onion site and I2P available' +description: "A privacy-focused exchange aggregator. Anonymous service, no Java, no registration, onion site and I2P available" team: anonymous: true links: web: https://trocador.app docs: https://trocador.app/en/docs/ + +usecases: + - infrastructure diff --git a/src/projects/truezk/index.yaml b/src/projects/truezk/index.yaml index 93d342f9..6921d646 100644 --- a/src/projects/truezk/index.yaml +++ b/src/projects/truezk/index.yaml @@ -1,6 +1,6 @@ name: TrueZK categories: - - layer-2 + - infrastructure description: Post-Quantum ZK Rollup as a service x private DIDs links: web: https://www.truezk.com @@ -8,3 +8,6 @@ links: blog: https://medium.com/truezk twitter: https://x.com/True_ZK telegram: https://t.me/truezk + +usecases: + - eth-layer-2 diff --git a/src/projects/tusima/index.yaml b/src/projects/tusima/index.yaml index 002e1e2c..b57f1262 100644 --- a/src/projects/tusima/index.yaml +++ b/src/projects/tusima/index.yaml @@ -1,6 +1,6 @@ name: Tusima categories: - - layer-2 + - infrastructure description: Privacy Financial Infrastructure For Blockchain links: web: https://tusima.network @@ -10,3 +10,6 @@ links: twitter: https://x.com/TusimaNetwork discord: https://discord.com/invite/tusimanetwork telegram: https://t.me/tusimaofficial + +usecases: + - eth-layer-2 diff --git a/src/projects/umbra/index.yaml b/src/projects/umbra/index.yaml index 87ca3585..056def93 100644 --- a/src/projects/umbra/index.yaml +++ b/src/projects/umbra/index.yaml @@ -1,2 +1,5 @@ name: Umbra categories: [defi] + +usecases: + - defi diff --git a/src/projects/unijoin/index.yaml b/src/projects/unijoin/index.yaml index 80695ac8..95f85a19 100644 --- a/src/projects/unijoin/index.yaml +++ b/src/projects/unijoin/index.yaml @@ -1,7 +1,10 @@ name: UniJoin categories: - - mixing-service -description: 'help you regain and maintain your anonymity by mixing your cryptos in a pool using CoinJoin technology' + - applications +description: "help you regain and maintain your anonymity by mixing your cryptos in a pool using CoinJoin technology" links: web: https://unijoin.io sunset: true + +usecases: + - mixing-service diff --git a/src/projects/universal-privacy-alliance/index.yaml b/src/projects/universal-privacy-alliance/index.yaml index e6256fb8..2836cec7 100644 --- a/src/projects/universal-privacy-alliance/index.yaml +++ b/src/projects/universal-privacy-alliance/index.yaml @@ -1,8 +1,12 @@ name: Universal Privacy Alliance categories: - - alliances -description: 'seeks to advance the understanding of privacy as the very basis of free and flourishing digital societies' + - social-and-communications + +description: "seeks to advance the understanding of privacy as the very basis of free and flourishing digital societies" links: web: https://privacyalliance.com blog: https://nymtech.medium.com/press-release-universal-privacy-alliance-launches-privacy-legal-defence-fund-at-devcon-c80af393ab11 twitter: https://twitter.com/priv_alliance + +usecases: + - alliances diff --git a/src/projects/universal-reputation/index.yaml b/src/projects/universal-reputation/index.yaml index 578b2ab1..35dd6059 100644 --- a/src/projects/universal-reputation/index.yaml +++ b/src/projects/universal-reputation/index.yaml @@ -1,6 +1,6 @@ name: Universal Reputation categories: - - did + - applications description: a private and non-repudiable reputation system links: web: https://developer.unirep.io @@ -12,3 +12,6 @@ links: twitter: https://x.com/UniRep_protocol discord: https://discord.com/invite/VzMMDJmYc5 have_token: true + +usecases: + - did diff --git a/src/projects/unova/index.yaml b/src/projects/unova/index.yaml index 6a57b317..163ab9ad 100644 --- a/src/projects/unova/index.yaml +++ b/src/projects/unova/index.yaml @@ -1,7 +1,7 @@ name: Unova categories: - infrastructure -description: Unova is a blockchain network with privacy-enabled data distribution clusters and cross-cluster distribution capabilities, made possible by the Web3 data distribution privacy protocol and multi-layer architecture. +description: Unova is a blockchain network with privacy-enabled data distribution clusters and cross-cluster distribution capabilities, made possible by the Web3 data distribution privacy protocol and multi-layer architecture. links: web: https://unova.io blog: https://unova.io/blog/ @@ -14,3 +14,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/utopia/index.yaml b/src/projects/utopia/index.yaml index 83db7277..0d9aaaec 100644 --- a/src/projects/utopia/index.yaml +++ b/src/projects/utopia/index.yaml @@ -1,7 +1,10 @@ name: Utopia categories: - infrastructure -description: 'All-in-one kit for secure instant messaging, encrypted email, anonymous payments and private browsing' +description: "All-in-one kit for secure instant messaging, encrypted email, anonymous payments and private browsing" links: web: https://u.is/en/ have_token: true + +usecases: + - infrastructure diff --git a/src/projects/valid-id/index.yaml b/src/projects/valid-id/index.yaml index db922786..e7bb658e 100644 --- a/src/projects/valid-id/index.yaml +++ b/src/projects/valid-id/index.yaml @@ -1,8 +1,11 @@ name: Valid.id categories: - - did -description: 'Build the root of trust for your entity in a way that is both cryptographic and legally binding' + - applications +description: "Build the root of trust for your entity in a way that is both cryptographic and legally binding" links: web: https://valid3.id docs: https://valid3.id/tutorial/ have_token: true + +usecases: + - did diff --git a/src/projects/vault1317/index.yaml b/src/projects/vault1317/index.yaml index ffafcfb9..9546206d 100644 --- a/src/projects/vault1317/index.yaml +++ b/src/projects/vault1317/index.yaml @@ -1,14 +1,19 @@ name: Vault1317 categories: - infrastructure -description: 'An Off-chain secure communication protocol with deniability via ZKP (Ring Signature)' +description: "An Off-chain secure communication protocol with deniability via ZKP (Ring Signature)" team: - - name: Shawn Chang - role: Founder & CEO - - name: Ming Xu - role: COO - - name: cybernaut.eth - role: CTO + anonymous: false + teammembers: + - name: Shawn Chang + role: Founder & CEO + - name: Ming Xu + role: COO + - name: cybernaut.eth + role: CTO links: web: https://hardenedvault.net/blog/2021-06-02-vault1317-thesis/ github: https://github.com/hardenedvault/vault1317 + +usecases: + - infrastructure diff --git a/src/projects/verida/index.yaml b/src/projects/verida/index.yaml index 0fa7fa1a..ee86d915 100644 --- a/src/projects/verida/index.yaml +++ b/src/projects/verida/index.yaml @@ -1,12 +1,14 @@ name: Verida categories: - infrastructure -description: 'Verida is a multi-chain protocol for interoperable database storage and messaging built on decentralized identity where personal data is owned and controlled by users' +description: "Verida is a multi-chain protocol for interoperable database storage and messaging built on decentralized identity where personal data is owned and controlled by users" team: - - name: Chris Were - role: Co-Founder & CEO - - name: Ryan Kris - role: Co-Founder & COO + anonymous: false + teammembers: + - name: Chris Were + role: Co-Founder & CEO + - name: Ryan Kris + role: Co-Founder & COO links: web: https://www.verida.io github: https://github.com/verida/ @@ -19,3 +21,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/verusid/index.yaml b/src/projects/verusid/index.yaml index 0a8a773e..117d17bc 100644 --- a/src/projects/verusid/index.yaml +++ b/src/projects/verusid/index.yaml @@ -1,8 +1,8 @@ name: VerusID categories: - - did -description: 'for self-sovereign individuals, and conscious organizations that value their data' -ecosystem: multichain + - applications +description: "for self-sovereign individuals, and conscious organizations that value their data" +ecosystem: [multichain] links: web: https://verus.io/verusid github: https://github.com/VerusCoin @@ -20,3 +20,6 @@ team: link: https://verus.io/people have_token: true token_link: https://coinmarketcap.com/it/currencies/veruscoin/ + +usecases: + - did diff --git a/src/projects/void-protocol/index.yaml b/src/projects/void-protocol/index.yaml index 07232a6b..bf7b095a 100644 --- a/src/projects/void-protocol/index.yaml +++ b/src/projects/void-protocol/index.yaml @@ -1,7 +1,10 @@ name: Void protocol categories: - - mixing-service -description: 'Void protocol gives users control over financial anonymity, as a non-custodial opt-in financial privacy service' + - applications +description: "Void protocol gives users control over financial anonymity, as a non-custodial opt-in financial privacy service" links: web: https://protocolvoid.gitbook.io/void-protocol/ sunset: true + +usecases: + - mixing-service diff --git a/src/projects/vult/index.yaml b/src/projects/vult/index.yaml index 93b67f01..e1dcedfd 100644 --- a/src/projects/vult/index.yaml +++ b/src/projects/vult/index.yaml @@ -1,6 +1,6 @@ name: vult categories: - - storage + - applications description: Your private cloud team: anonymous: true @@ -14,3 +14,6 @@ project_status: version: v1.14.10 testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/vup/index.yaml b/src/projects/vup/index.yaml index 0e915a6e..1ecbf6c3 100644 --- a/src/projects/vup/index.yaml +++ b/src/projects/vup/index.yaml @@ -1,6 +1,6 @@ name: VUP categories: - - storage + - applications description: Private and decentralized cloud storage team: anonymous: true @@ -14,3 +14,6 @@ project_status: version: v0.15.0 BETA testnet: false mainnet: true + +usecases: + - storage diff --git a/src/projects/waku/index.yaml b/src/projects/waku/index.yaml index c4943f12..0dd1884e 100644 --- a/src/projects/waku/index.yaml +++ b/src/projects/waku/index.yaml @@ -1,9 +1,8 @@ name: Waku categories: - - messaging -ecosystem: - - Ethereum -description: 'the communication layer for Web3. Decentralized communication that scales' + - applications +ecosystem: [ethereum] +description: "the communication layer for Web3. Decentralized communication that scales" team: anonymous: false @@ -16,7 +15,7 @@ links: blog: https://blog.waku.org twitter: https://x.com/waku_org discord: https://discord.waku.org - farcaster: "@waku" + farcaster: "https://farcaster/waku" project_status: live_status: true @@ -24,7 +23,8 @@ project_status: testnet: true mainnet: false -licenses: Apache 2.0 and MIT - traceability: kyc: false + +usecases: + - messaging diff --git a/src/projects/wasabi-wallet/index.yaml b/src/projects/wasabi-wallet/index.yaml index 6ed55514..94b40592 100644 --- a/src/projects/wasabi-wallet/index.yaml +++ b/src/projects/wasabi-wallet/index.yaml @@ -1,10 +1,13 @@ name: Wasabi Wallet categories: - - wallets + - applications description: Open-source, non-custodial Bitcoin Wallet for desktop -ecosystem: Bitcoin +ecosystem: [bitcoin] links: web: https://wasabiwallet.io/ github: https://github.com/zkSNACKs/WalletWasabi team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/weavemail/index.yaml b/src/projects/weavemail/index.yaml index 89ae12b3..d9ff4e19 100644 --- a/src/projects/weavemail/index.yaml +++ b/src/projects/weavemail/index.yaml @@ -1,6 +1,9 @@ name: Weavemail categories: - - dapps -description: 'The mail that cannot be lost, censored, or read by Google: Weavemail is mail that you own' + - applications +description: "The mail that cannot be lost, censored, or read by Google: Weavemail is mail that you own" links: web: https://docs.arweave.org/info/tools/weavemail + +usecases: + - dapps diff --git a/src/projects/web3id/index.yaml b/src/projects/web3id/index.yaml index 67cfa708..3af29f03 100644 --- a/src/projects/web3id/index.yaml +++ b/src/projects/web3id/index.yaml @@ -1,8 +1,8 @@ name: Web3ID categories: - - did + - applications description: Privacy-preserving user verification for Web3 -ecosystem: multichain +ecosystem: [multichain] links: web: https://www.dock.io/web3id github: https://github.com/docknetwork @@ -18,3 +18,6 @@ team: link: https://www.dock.io/verifiable-credentials-company have_token: true token_link: https://coinmarketcap.com/it/currencies/dock/ + +usecases: + - did diff --git a/src/projects/webb/index.yaml b/src/projects/webb/index.yaml index 1707bd9e..2c344f5f 100644 --- a/src/projects/webb/index.yaml +++ b/src/projects/webb/index.yaml @@ -1,7 +1,7 @@ name: Webb categories: [defi] -ecosystem: Tangle -description: 'an interoperable private bridge' +ecosystem: [tangle] +description: "an interoperable private bridge" technology: type: zk features: @@ -15,3 +15,6 @@ project_status: beta: true team: anonymous: true + +usecases: + - defi diff --git a/src/projects/whirlpool/index.yaml b/src/projects/whirlpool/index.yaml index 8607f609..ac8ae7ac 100644 --- a/src/projects/whirlpool/index.yaml +++ b/src/projects/whirlpool/index.yaml @@ -1,5 +1,8 @@ name: Whirlpool categories: - - mixing-service -description: 'Break the link your coins leave behind with built-in CoinJoin available on any platform' + - applications +description: "Break the link your coins leave behind with built-in CoinJoin available on any platform" sunset: true + +usecases: + - mixing-service diff --git a/src/projects/whonix/index.yaml b/src/projects/whonix/index.yaml index 6350af71..838df2c1 100644 --- a/src/projects/whonix/index.yaml +++ b/src/projects/whonix/index.yaml @@ -1,7 +1,7 @@ name: Whonix categories: - - os -description: 'Software designed to preserve privacy and anonymity by helping users run applications anonymously. Whonix™ can be installed on Windows, macOS, Linux, and Qubes' + - applications +description: "Software designed to preserve privacy and anonymity by helping users run applications anonymously. Whonix™ can be installed on Windows, macOS, Linux, and Qubes" team: anonymous: true links: @@ -17,3 +17,6 @@ project_status: version: 17.0.4.5 testnet: false mainnet: false + +usecases: + - operation-systems diff --git a/src/projects/wiremin/index.yaml b/src/projects/wiremin/index.yaml index 488e38b5..2fb55a28 100644 --- a/src/projects/wiremin/index.yaml +++ b/src/projects/wiremin/index.yaml @@ -1,10 +1,13 @@ name: WireMin categories: - - dapps + - applications description: A decentralized social network. links: web: https://wiremin.org/#/ - + blog: https://wiremin.org/#/blog twitter: https://x.com/WireMin facebook: https://www.facebook.com/WireMinApp/ + +usecases: + - dapps diff --git a/src/projects/wownero/index.yaml b/src/projects/wownero/index.yaml index 96c8a291..ed70b343 100644 --- a/src/projects/wownero/index.yaml +++ b/src/projects/wownero/index.yaml @@ -1,13 +1,13 @@ name: Wownero categories: - - currency -description: 'Privacy-respecting memecoin, no pre-mine, no dev tax, software fork of Monero with fixed supply of 184 million coins' -ecosystem: Wownero + - defi +description: "Privacy-respecting memecoin, no pre-mine, no dev tax, software fork of Monero with fixed supply of 184 million coins" +ecosystem: [wownero] product_launch_day: 01 April 2018 project_type: Memecoin technology: type: Privacy - features: + features: - Ring Signatures (21 decoys) - Ring Confidential Transactions (RingCT) - Stealth Addresses @@ -23,7 +23,7 @@ links: docs: https://wownerodocs.org/ forum: https://forum.wownero.com whitepapper: https://wownero.org/whitepaper.pdf - + twitter: https://twitter.com/W0wn3r0 discord: https://discord.gg/ykZyAzJhDK telegram: https://t.me/wownero @@ -31,7 +31,6 @@ team: anonymous: true licences: MIT License traceability: - tracked_data: None kyc: false compliance: We will not comply social_trust: Community @@ -43,3 +42,6 @@ project_status: live_status: true version: v0.11.1.0 mainnet: true + +usecases: + - currency diff --git a/src/projects/x-cash/index.yaml b/src/projects/x-cash/index.yaml index a7ee3898..e52a3cc5 100644 --- a/src/projects/x-cash/index.yaml +++ b/src/projects/x-cash/index.yaml @@ -1,17 +1,21 @@ name: x-cash categories: - - currency + - defi description: Web3’s Private Public Computing Platform -ecosystem: xcash -project_status: Mainnet +ecosystem: [xcash] +project_status: + version: Mainnet links: web: https://xcash.tech github: https://github.com/X-CASH-official - + blog: https://medium.com/x-cash twitter: https://x.com/XCashCrypto youtube: https://www.youtube.com/@x-cashcommunity1764 discord: https://discord.com/invite/4CAahnd team: - anonymous: No + anonymous: false + +usecases: + - currency diff --git a/src/projects/xata/index.yaml b/src/projects/xata/index.yaml index cf224e0a..c981757b 100644 --- a/src/projects/xata/index.yaml +++ b/src/projects/xata/index.yaml @@ -1,9 +1,12 @@ name: XATA categories: [defi] -ecosystem: Automata -description: 'A MEV Minimization solution to survive the Dark Forest' +ecosystem: [automata] +description: "A MEV Minimization solution to survive the Dark Forest" links: web: https://www.xata.fi/ docs: https://docs.xata.fi/ team: anonymous: true + +usecases: + - defi diff --git a/src/projects/xmtp-x-lens/index.yaml b/src/projects/xmtp-x-lens/index.yaml index d365c8f5..86e5c8d3 100644 --- a/src/projects/xmtp-x-lens/index.yaml +++ b/src/projects/xmtp-x-lens/index.yaml @@ -1,7 +1,7 @@ name: XMTP x Lens categories: - - messaging -description: 'Lens Protocol has adopted XMTP to provide a secure and private direct messaging layer for the entire Lens ecosystem' + - social-and-communications +description: "Lens Protocol has adopted XMTP to provide a secure and private direct messaging layer for the entire Lens ecosystem" team: anonymous: true links: @@ -17,3 +17,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - messaging diff --git a/src/projects/xx-messenger/index.yaml b/src/projects/xx-messenger/index.yaml index 9a2d2ba6..175163ce 100644 --- a/src/projects/xx-messenger/index.yaml +++ b/src/projects/xx-messenger/index.yaml @@ -1,7 +1,7 @@ name: xx messenger categories: - - messaging -description: 'An ultra-private messaging app, powered by the quantum-resistant and decentralized xx network' + - social-and-communications +description: "An ultra-private messaging app, powered by the quantum-resistant and decentralized xx network" team: anonymous: false links: @@ -18,3 +18,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - messaging diff --git a/src/projects/xx-network/index.yaml b/src/projects/xx-network/index.yaml index 6d2d7304..ce56339a 100644 --- a/src/projects/xx-network/index.yaml +++ b/src/projects/xx-network/index.yaml @@ -16,3 +16,6 @@ project_status: version: Mainnet testnet: true mainnet: true + +usecases: + - infrastructure diff --git a/src/projects/yellow-submarine/index.yaml b/src/projects/yellow-submarine/index.yaml index ad4f49a3..62b41966 100644 --- a/src/projects/yellow-submarine/index.yaml +++ b/src/projects/yellow-submarine/index.yaml @@ -1,2 +1,5 @@ name: Yellow Submarine categories: [defi] + +usecases: + - defi diff --git a/src/projects/ywallet/index.yaml b/src/projects/ywallet/index.yaml index d8bd768a..8bcdbce8 100644 --- a/src/projects/ywallet/index.yaml +++ b/src/projects/ywallet/index.yaml @@ -1,9 +1,12 @@ name: YWallet categories: - - wallets + - applications description: YWallet is a privacy-oriented wallet and messenger for Ycash and Zcash. -ecosystem: Ycash, Zcash +ecosystem: [ycash, zcash] links: web: https://ywallet.app/ team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/zano/index.yaml b/src/projects/zano/index.yaml index e0b37a3d..d882421f 100644 --- a/src/projects/zano/index.yaml +++ b/src/projects/zano/index.yaml @@ -1,9 +1,9 @@ name: Zano categories: - - currency + - defi description: A scalable and secure coin, with confidential assets support -ecosystem: Zano -project_status: +ecosystem: [zano] +project_status: live_status: true version: Mainnet testnet: true @@ -17,6 +17,9 @@ links: blog: https://blog.zano.org/ twitter: https://x.com/zano_project discord: https://discord.com/invite/wE3rmYY - telegram: https://t.me/zanocoin + telegram: https://t.me/zanocoin team: anonymous: false + +usecases: + - currency diff --git a/src/projects/zcash/index.yaml b/src/projects/zcash/index.yaml index 99e1b38b..fb344bd6 100644 --- a/src/projects/zcash/index.yaml +++ b/src/projects/zcash/index.yaml @@ -1,10 +1,6 @@ name: Zcash -categories: [ currency ] -token: - - name: Zcash - symbol: ZEC - network: Zcash -description: 'A simple, secure digital currency that protects your privacy. For everyday purchases, sending money to a friend, and your favorite crypto applications, too.' +categories: [defi] +description: "A simple, secure digital currency that protects your privacy. For everyday purchases, sending money to a friend, and your favorite crypto applications, too." project_type: transaction technology: type: halo2 zk-SNARK @@ -18,15 +14,13 @@ links: discord: https://discord.gg/zcash blog: https://electriccoin.co/blog block_explorer: https://zcashblockexplorer.com/ - whitepaper: https://zips.z.cash/protocol/protocol.pdf/ + whitepaper: https://zips.z.cash/protocol/protocol.pdf/ github: https://github.com/zcash/zcash/ blockchain_features: p2p: true encryption: zksnark network: Zcash - upgradability: - enabled: true - type: halo2 + opensource: true viewing_key: true dissapearing_tx: false @@ -42,15 +36,10 @@ blockchain_features: licences: MIT software license privacy_policy: defined: false -team: - - name: - role: + storage: decentralized: true -tracebility: - tracked_data: Transparent Pool - kyc: false - sign_in_type_requirments: wallet + third_party_dependency: false compliance: false audits: @@ -63,28 +52,30 @@ audits: - name: Sapling Implementation Audit link: https://leastauthority.com/static/publications/LeastAuthority-Zcash-Sapling-Implementation-RPC-Interface-Updated-Audit-Report.pdf time: Jan 30, 2019 -social_trust: -technical_spof: history: - title: Mainet - event_type: launch - description: Genesis block - time: Oct 28, 2016 - link: https://www.coindesk.com/markets/2016/10/28/with-zcash-launch-blockchain-enters-the-age-of-anonymity/ -client_diversability: + - title: Mainet + event_type: launch + description: Genesis block + time: Oct 28, 2016 + link: https://www.coindesk.com/markets/2016/10/28/with-zcash-launch-blockchain-enters-the-age-of-anonymity/ +client_diversability: - name: Zebra link: https://zfnd.org/zebra/ - name: zcashd link: https://github.com/Zcash/zcash default_privacy: true funding: - - name: DCG - type: Investments - link: - value: - time: + name: DCG + type: Investments + link: "https://zfnd.org/zebra/" + value: "" + time: "2024-09-15" + project_status: live_status: true - version: Mainnet + version: "Mainnet" testnet: false mainnet: true + +usecases: + - currency diff --git a/src/projects/zcloak/index.yaml b/src/projects/zcloak/index.yaml index e9205933..4bc033ef 100644 --- a/src/projects/zcloak/index.yaml +++ b/src/projects/zcloak/index.yaml @@ -1,6 +1,6 @@ name: zCloak categories: - - did + - applications description: Privacy-first DID and verifiable computation infrastructure links: web: https://zcloak.network @@ -11,3 +11,6 @@ links: twitter: https://x.com/zcloaknetwork discord: https://discord.com/invite/wcKt6MDRJz have_token: true + +usecases: + - did diff --git a/src/projects/zeal/index.yaml b/src/projects/zeal/index.yaml index 30528778..27198e92 100644 --- a/src/projects/zeal/index.yaml +++ b/src/projects/zeal/index.yaml @@ -1,9 +1,12 @@ name: Zeal categories: - - wallets + - applications description: The web3 wallet that defends your crypto and privacy -ecosystem: multichain +ecosystem: [multichain] links: web: https://www.zeal.app/ team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/zecrey-wallet/index.yaml b/src/projects/zecrey-wallet/index.yaml index c21d6ad7..d02c94f2 100644 --- a/src/projects/zecrey-wallet/index.yaml +++ b/src/projects/zecrey-wallet/index.yaml @@ -1,10 +1,13 @@ name: Zecrey Wallet categories: - - wallets -description: 'a portal to the new & open Internet. Zecrey is an all-in-one wallet that not only provides a multi-chain layer-1 wallet but also a private cross-chain layer-2 wallet' -ecosystem: multichain + - applications +description: "a portal to the new & open Internet. Zecrey is an all-in-one wallet that not only provides a multi-chain layer-1 wallet but also a private cross-chain layer-2 wallet" +ecosystem: [multichain] links: web: https://www.zecrey.com/ github: https://github.com/Zecrey-Labs team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/zecrey/index.yaml b/src/projects/zecrey/index.yaml index fc50109c..aaa7edc0 100644 --- a/src/projects/zecrey/index.yaml +++ b/src/projects/zecrey/index.yaml @@ -1,8 +1,8 @@ name: Zecrey categories: - - layer-2 + - infrastructure description: zkRollup basedLayer 2 protocol featuring privacy and scalability -ecosystem: multichain +ecosystem: [multichain] links: web: https://www.zecrey.com github: https://github.com/Zecrey-Labs @@ -13,3 +13,6 @@ links: team: anonymous: true + +usecases: + - eth-layer-2 diff --git a/src/projects/zengo/index.yaml b/src/projects/zengo/index.yaml index 54d490ce..1c5b1158 100644 --- a/src/projects/zengo/index.yaml +++ b/src/projects/zengo/index.yaml @@ -1,10 +1,13 @@ name: ZenGo categories: - - wallets -description: 'The only self-custodial wallet with no seed phrase vulnerability (shielded transactions)' -ecosystem: multichain + - applications +description: "The only self-custodial wallet with no seed phrase vulnerability (shielded transactions)" +ecosystem: [multichain] links: web: https://zengo.com/ github: https://github.com/ZenGo-X team: anonymous: false + +usecases: + - wallets diff --git a/src/projects/zephyr-protocol/index.yaml b/src/projects/zephyr-protocol/index.yaml index 1f845b00..fab5ddd1 100644 --- a/src/projects/zephyr-protocol/index.yaml +++ b/src/projects/zephyr-protocol/index.yaml @@ -1,8 +1,8 @@ name: Zephyr Protocol categories: - - currency -description: 'The Untraceable Stablecoin Protocol' -ecosystem: Zephyr + - defi +description: "The Untraceable Stablecoin Protocol" +ecosystem: [zephyr] links: web: https://zephyrprotocol.com/ github: https://github.com/monero-ecosystem @@ -32,13 +32,15 @@ blockchain_features: default_privacy: true storage: decentralized: true -tracebility: - kyc: false + project_status: live_status: true testnet: false mainnet: true audits: - name: Cyberscope - link: https://www.cyberscope.io/audits/coin-zephyr-protocol - time: Apr. 2024 + - name: Cyberscope + link: https://www.cyberscope.io/audits/coin-zephyr-protocol + time: Apr. 2024 + +usecases: + - currency diff --git a/src/projects/zero-knowledge-verifiable-credential/index.yaml b/src/projects/zero-knowledge-verifiable-credential/index.yaml index 0f7f25c9..cb8d41d9 100644 --- a/src/projects/zero-knowledge-verifiable-credential/index.yaml +++ b/src/projects/zero-knowledge-verifiable-credential/index.yaml @@ -1,7 +1,10 @@ name: Zero Knowledge Verifiable Credential categories: - - did -description: 'Sketching out verifiable credential selective disclosure presentation on Mina with snarky.js' + - applications +description: "Sketching out verifiable credential selective disclosure presentation on Mina with snarky.js" links: web: https://github.com/mono-koto/zkcred have_token: true + +usecases: + - did diff --git a/src/projects/zero/index.yaml b/src/projects/zero/index.yaml index a2907bf3..f152191d 100644 --- a/src/projects/zero/index.yaml +++ b/src/projects/zero/index.yaml @@ -1,6 +1,6 @@ name: Zero categories: - - currency + - defi description: Private transactions links: web: https://zero.directory @@ -13,3 +13,6 @@ links: telegram: https://t.me/zerocurrency team: anonymous: true + +usecases: + - currency diff --git a/src/projects/zerochain/index.yaml b/src/projects/zerochain/index.yaml index d2aacecc..580aa2a3 100644 --- a/src/projects/zerochain/index.yaml +++ b/src/projects/zerochain/index.yaml @@ -1,6 +1,9 @@ name: Zerochain categories: - - dapps + - applications description: Zerochain is a generic, privacy-protecting layer on top of Substrate. links: web: https://layerxcom.github.io/zerochain-book/ + +usecases: + - dapps diff --git a/src/projects/zeronet/index.yaml b/src/projects/zeronet/index.yaml index a8c5da63..dfc4e1a2 100644 --- a/src/projects/zeronet/index.yaml +++ b/src/projects/zeronet/index.yaml @@ -1,7 +1,10 @@ name: ZeroNet categories: - infrastructure -description: 'Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network' +description: "Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network" links: web: https://zeronet.io github: https://github.com/HelloZeroNet/ZeroNet + +usecases: + - infrastructure diff --git a/src/projects/zeropool/index.yaml b/src/projects/zeropool/index.yaml index be7eaab2..d83ff134 100644 --- a/src/projects/zeropool/index.yaml +++ b/src/projects/zeropool/index.yaml @@ -1,7 +1,7 @@ name: ZeroPool categories: - infrastructure -description: 'Is fully private multi-blockchain solution. Low transaction fees, atomic swaps and common anonymity set' +description: "Is fully private multi-blockchain solution. Low transaction fees, atomic swaps and common anonymity set" team: anonymous: true links: @@ -15,3 +15,6 @@ project_status: version: Testnet testnet: true mainnet: false + +usecases: + - infrastructure diff --git a/src/projects/zion/index.yaml b/src/projects/zion/index.yaml index 7cf739fe..5add4616 100644 --- a/src/projects/zion/index.yaml +++ b/src/projects/zion/index.yaml @@ -1,6 +1,6 @@ name: Zion categories: - - messaging + - applications description: The Zion app is a peer-governed social network where members are the true owners of their data with BTC lightning integration. team: anonymous: true @@ -12,3 +12,6 @@ links: blog: https://medium.com/@zion-fyi twitter: https://twitter.com/get_Zion telegram: https://t.me/getZION + +usecases: + - messaging diff --git a/src/projects/zk-kit/index.yaml b/src/projects/zk-kit/index.yaml index 8022d65e..3ee4fe5b 100644 --- a/src/projects/zk-kit/index.yaml +++ b/src/projects/zk-kit/index.yaml @@ -1,7 +1,7 @@ name: zk-kit -categories: infrastructure -description: 'A set of reusable libraries for zero-knowledge technologies.' -project_status: +categories: ["infrastructure"] +description: "A set of reusable libraries for zero-knowledge technologies." +project_status: live_status: true team: anonymous: true @@ -10,3 +10,6 @@ links: web: https://zkkit.pse.dev/ technology: type: javascript, circom, solidity, noir + features: [""] + +usecases: [infrastructure] diff --git a/src/projects/zkchaos/index.yaml b/src/projects/zkchaos/index.yaml index 817fa892..c12de315 100644 --- a/src/projects/zkchaos/index.yaml +++ b/src/projects/zkchaos/index.yaml @@ -1,11 +1,14 @@ name: ZKCHAOS categories: - - layer-2 -description: 'ZKCHAOS is a layer2-based anonymous transaction protocol, and a fair game platform, which is built to enhance privacy for all kinds of cryptocurrency' -ecosystem: TBD + - infrastructure +description: "ZKCHAOS is a layer2-based anonymous transaction protocol, and a fair game platform, which is built to enhance privacy for all kinds of cryptocurrency" +ecosystem: [tbd] links: web: https://www.zkchaos.com github: https://github.com/zkchaos blog: https://zkchaos.medium.com/ twitter: https://x.com/zkchaos2020 telegram: https://t.me/zkchaos + +usecases: + - eth-layer-2 diff --git a/src/projects/zkcloud/index.yaml b/src/projects/zkcloud/index.yaml index 0fd111f2..09ba89ed 100644 --- a/src/projects/zkcloud/index.yaml +++ b/src/projects/zkcloud/index.yaml @@ -1,11 +1,14 @@ name: ZkCloud categories: - - computing-network + - infrastructure description: Decentralized, Private Computing. -ecosystem: Aleo +ecosystem: [aleo] links: web: https://aleo.academy/ecosystem/aleo-toolkit/zkcloud/ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2242785598%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=6tr + +usecases: + - computing diff --git a/src/projects/zkmaps/index.yaml b/src/projects/zkmaps/index.yaml index 3cb41082..499d9005 100644 --- a/src/projects/zkmaps/index.yaml +++ b/src/projects/zkmaps/index.yaml @@ -1,7 +1,10 @@ name: ZkMaps categories: - - dapps + - applications description: Protecting users location with ZK proofs links: web: https://gitcoin.co/grants/5781/zkmaps-proof-of-location github: https://github.com/zkMaps + +usecases: + - dapps diff --git a/src/projects/zkmoney/index.yaml b/src/projects/zkmoney/index.yaml index c374ea4e..4f870346 100644 --- a/src/projects/zkmoney/index.yaml +++ b/src/projects/zkmoney/index.yaml @@ -1,2 +1,5 @@ name: zk.money categories: [defi] + +usecases: + - defi diff --git a/src/projects/zkpass/index.yaml b/src/projects/zkpass/index.yaml index 4305aa92..8c7edb45 100644 --- a/src/projects/zkpass/index.yaml +++ b/src/projects/zkpass/index.yaml @@ -1,6 +1,6 @@ name: zkPass categories: - - did + - applications description: Protocol for Private Data based on MPC, ZKP, 3P-TLS links: web: https://zkpass.org/home @@ -12,3 +12,6 @@ links: twitter: https://x.com/zkPass discord: https://discord.com/invite/zkpass have_token: true + +usecases: + - did diff --git a/src/projects/zkusd/index.yaml b/src/projects/zkusd/index.yaml index 68422e88..a7aee2eb 100644 --- a/src/projects/zkusd/index.yaml +++ b/src/projects/zkusd/index.yaml @@ -1,2 +1,5 @@ name: zkUSD categories: [defi] + +usecases: + - defi diff --git a/src/projects/zkvalidator/index.yaml b/src/projects/zkvalidator/index.yaml index 823f769c..7c216c2c 100644 --- a/src/projects/zkvalidator/index.yaml +++ b/src/projects/zkvalidator/index.yaml @@ -1,2 +1,5 @@ name: ZKValidator categories: [defi] + +usecases: + - defi diff --git a/src/projects/zoci/index.yaml b/src/projects/zoci/index.yaml index 7f15f81c..ccd9d106 100644 --- a/src/projects/zoci/index.yaml +++ b/src/projects/zoci/index.yaml @@ -1,6 +1,6 @@ name: Zoci categories: - - rpc + - infrastructure description: Private RPC services links: web: https://zoci.io @@ -16,3 +16,6 @@ tokens: symbol: ZOCI network: Arbitrum contract_address: "0x45d780cfe839b8a8f292c9e26aa5d1805bc536dc" + +usecases: + - rpc-provider diff --git a/src/projects/zoker/index.yaml b/src/projects/zoker/index.yaml index 4b547184..43424786 100644 --- a/src/projects/zoker/index.yaml +++ b/src/projects/zoker/index.yaml @@ -1,10 +1,13 @@ name: Zoker categories: - - wallets + - applications description: The foremost ZK-based Wallet in Web3 -ecosystem: multichain +ecosystem: [multichain] links: web: https://zoker.tech/ docs: https://zoker.tech/wp.pdf team: anonymous: true + +usecases: + - wallets diff --git a/src/projects/zus/index.yaml b/src/projects/zus/index.yaml index af3cd0e1..44bf62a8 100644 --- a/src/projects/zus/index.yaml +++ b/src/projects/zus/index.yaml @@ -1,7 +1,7 @@ name: Züs categories: - - storage -description: 'A high-performance storage network powering limitless applications' + - applications +description: "A high-performance storage network powering limitless applications" team: anonymous: true links: @@ -26,3 +26,6 @@ tokens: symbol: ZCN network: Ethereum contract_address: "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78" + +usecases: + - storage diff --git a/src/usecases.yaml b/src/usecases.yaml index f52a851b..f526504f 100644 --- a/src/usecases.yaml +++ b/src/usecases.yaml @@ -52,8 +52,6 @@ name: Node - id: events name: Events -- id: fhe encryption - name: FHE encryption - id: ai name: AI (Artificial Inteligence) - id: sunset