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 08b10510..00ad9c6b 100644 --- a/src/projects/01-labs/index.yaml +++ b/src/projects/01-labs/index.yaml @@ -1,8 +1,2 @@ -name: 01 Labs -usecase: [rd] -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 +usecase: +- rd diff --git a/src/projects/0xtip/index.yaml b/src/projects/0xtip/index.yaml index 08244adb..6c5eaddd 100644 --- a/src/projects/0xtip/index.yaml +++ b/src/projects/0xtip/index.yaml @@ -1,5 +1,2 @@ -name: 0xTIP -usecase: [mixing-service] -description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers." -links: - web: https://0xmonero.com/mixer +usecase: +- mixing-service diff --git a/src/projects/1984/index.yaml b/src/projects/1984/index.yaml index 7d57e90d..d47c626f 100644 --- a/src/projects/1984/index.yaml +++ b/src/projects/1984/index.yaml @@ -1,8 +1,2 @@ -name: "1984" -usecase: [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 +usecase: +- infrastructure diff --git a/src/projects/1rpc/index.yaml b/src/projects/1rpc/index.yaml index 95be5980..f0b20bd4 100644 --- a/src/projects/1rpc/index.yaml +++ b/src/projects/1rpc/index.yaml @@ -1,7 +1,2 @@ -name: 1RPC -usecase: [rpc] -description: "The Web3 Private RPC Relay" -links: - web: https://www.1rpc.io - docs: https://docs.ata.network/1rpc/introduction/ - twitter: https://x.com/1rpc_ +usecase: +- rpc diff --git a/src/projects/2fa-guru/index.yaml b/src/projects/2fa-guru/index.yaml index 198bbfb7..93fa3a54 100644 --- a/src/projects/2fa-guru/index.yaml +++ b/src/projects/2fa-guru/index.yaml @@ -1,6 +1,2 @@ -name: 2FA Guru -usecase: [dapps] -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 +usecase: +- dapps diff --git a/src/projects/AIOZ network/index.yaml b/src/projects/AIOZ network/index.yaml index c59ca920..dc15a100 100644 --- a/src/projects/AIOZ network/index.yaml +++ b/src/projects/AIOZ network/index.yaml @@ -1,10 +1,2 @@ -name: Aioz network -usecase: [AI] -description: "DePIN for Web3 AI, Storage & Streaming" -links: - web: https://aioz.network/ - block_explorer: https://t.me/aioznetwork - docs: https://docs.aioz.network/ - blog: https://aioz.network/blog - twitter: https://x.com/AIOZNetwork - telegram: https://t.me/aioznetwork +usecase: +- AI diff --git a/src/projects/Adamant/index.yaml b/src/projects/Adamant/index.yaml index d4f190b0..f5c47f7d 100644 --- a/src/projects/Adamant/index.yaml +++ b/src/projects/Adamant/index.yaml @@ -1,28 +1,2 @@ -name: Adamant -usecase: [messaging] -description: "Decentralized anonymous blockchain Messenger & crypto Wallet" - -team: - anonymous: true - -links: - web: https://adamant.im/ - github: https://github.com/adamant-im - block_explorer: https://explorer.adamant.im/ - whitepaper: https://adamant.im/whitepapers-library/ - blog: https://news.adamant.im/ - twitter: https://x.com/adamant_im - telegram: https://t.me/adamant_eng - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: true -token_link: https://www.coingecko.com/en/coins/adamant-messenger -tokens: - - name: ADMToken - symbol: $ADM - network: Ethereum +usecase: +- messaging diff --git a/src/projects/AnonKlub/index.yaml b/src/projects/AnonKlub/index.yaml index b29d965d..12937271 100644 --- a/src/projects/AnonKlub/index.yaml +++ b/src/projects/AnonKlub/index.yaml @@ -1,12 +1,2 @@ -name: AnonKlub -usecase: [DID] -description: "AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership." -project_status: testnet -team: - anonymous: true -links: - web: http://anonklub.xyz - docs: https://docs.anonklub.xyz/docs/intro - github: https://github.com/anonklub/anonklub -technology: - type: circom, snarkjs, halo2 +usecase: +- DID diff --git a/src/projects/Arcium/index.yaml b/src/projects/Arcium/index.yaml index c2349dce..04f0fefd 100644 --- a/src/projects/Arcium/index.yaml +++ b/src/projects/Arcium/index.yaml @@ -1,10 +1,2 @@ -name: "Arcium" -usecase: [FHE] -description: "The first parallelized confidential computing network" -links: - web: https://arcium.com/ - github: https://github.com/elusiv-privacy - docs: https://docs.arcium.com/ - blog: https://blog.arcium.com/ - twitter: https://x.com/ArciumHQ - discord: https://discord.com/invite/arcium +usecase: +- FHE diff --git a/src/projects/Bandada/index.yaml b/src/projects/Bandada/index.yaml index ead7d5e0..12937271 100644 --- a/src/projects/Bandada/index.yaml +++ b/src/projects/Bandada/index.yaml @@ -1,11 +1,2 @@ -name: Bandada -usecase: [DID] -description: "An open-source system for managing privacy-preserving groups of anonymous individuals." -project_status: testnet -team: - anonymous: true -links: - web: https://bandada.pse.dev/ - docs: https://docs.bandada.pse.dev/ - github: https://github.com/bandada-infra/bandada - type: semaphore, zk-kit +usecase: +- DID diff --git a/src/projects/BlockBlend/index.yaml b/src/projects/BlockBlend/index.yaml index 1a953448..fa22259b 100644 --- a/src/projects/BlockBlend/index.yaml +++ b/src/projects/BlockBlend/index.yaml @@ -1,32 +1,2 @@ -name: BlockBlend -usecase: [bridge] -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/ - whitepaper: https://blockblend.io/pitchdeck.pdf - blog: https://blockblendio.medium.com/ - twitter: https://x.com/blockblendio - telegram: https://t.me/blockblendIO - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: true -token_link: https://etherscan.io/address/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124 -tokens: - - name: BBL Tpken - symbol: $BBL - network: Ethereum - contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124" +usecase: +- bridge diff --git a/src/projects/Broearn/index.yaml b/src/projects/Broearn/index.yaml index a9517b2b..725689aa 100644 --- a/src/projects/Broearn/index.yaml +++ b/src/projects/Broearn/index.yaml @@ -1,21 +1,2 @@ -name: Broearn -usecase: [browser] -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/ - twitter: https://x.com/broearn - discord: https://discord.com/invite/vsfqexDTDK - telegram: https://t.me/broearn_browser - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: false +usecase: +- browser diff --git a/src/projects/ChainPort/index.yaml b/src/projects/ChainPort/index.yaml index ef6764a9..fa22259b 100644 --- a/src/projects/ChainPort/index.yaml +++ b/src/projects/ChainPort/index.yaml @@ -1,32 +1,2 @@ -name: ChainPort -usecase: [bridge] -ecosystem: [Ethereum, Arbitrum, Optimism, Base, Bnb, Fantom, Polygon, Avalanche] -description: "next-gen custodian secure bridge" - -team: - anonymous: false - teammembers: - - 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/ - blog: https://medium.com/chainport - twitter: https://x.com/chain_port - telegram: https://t.me/chainport_news - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: true -token_link: https://etherscan.io/token/0x104f3152d8ebfc3f679392977356962ff36566ac -tokens: - - name: PORTX Token - symbol: $PORTX - network: Ethereum - contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac" +usecase: +- bridge diff --git a/src/projects/Chainback/index.yaml b/src/projects/Chainback/index.yaml index d46836b9..886a0bb7 100644 --- a/src/projects/Chainback/index.yaml +++ b/src/projects/Chainback/index.yaml @@ -1,53 +1,2 @@ -name: Chainback -usecase: [storage] -ecosystem: [Ethereum, Solana, Bsc, Polygon] -usecases: [storage, cloud] -description: "Ultimate Cloud Computing & File Storage" -product_lunch_day: "2022-12" - -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 - twitter: https://x.com/ChainbackWeb3 - telegram: https://t.me/chainback_archive - -project_phase: Alpha -sunset: false - -tokens: - - name: ARCHIVE Token - symbol: $ARCHIVE - network: Ethereum - contract_address: "0xC7f950271d118A5bdF250dFfc39128DCCED8472C" - token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C - -funding: - name: Summus Capital - link: https://summus.capital/ - -blockchain_features: - opensource: false - asset_custody_type: non-custody - upgradability: - enabled: true - -privacy_policy: - defined: true - link: https://chainback.gitbook.io/chainback-whitepaper/company-policy/privacy-policy - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false - -storage: - decentralized: true +usecase: +- storage diff --git a/src/projects/Cloak-ai/index.yaml b/src/projects/Cloak-ai/index.yaml index 135ea263..dc15a100 100644 --- a/src/projects/Cloak-ai/index.yaml +++ b/src/projects/Cloak-ai/index.yaml @@ -1,15 +1,2 @@ -name: Cloak Ai -usecase: [AI] -description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business" -links: - web: https://www.cloakai.xyz/ - twitter: https://x.com/Cloak_xyz - telegram: https://t.me/cloakai -have_token: true -token_link: https://etherscan.io/token/0x13f7b4581df403542286563c2f762077b2a368da -tokens: - - name: Cloak - symbol: CLOAK - network: Ethereum - contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da" -sunset: false +usecase: +- AI diff --git a/src/projects/Codex/index.yaml b/src/projects/Codex/index.yaml index fd936fbb..c66791e8 100644 --- a/src/projects/Codex/index.yaml +++ b/src/projects/Codex/index.yaml @@ -1,30 +1,2 @@ -name: Codex usecase: - - Storage -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." - -team: - anonymous: false - -links: - web: https://codex.storage - github: https://github.com/codex-storage - docs: https://docs.codex.storage - forum: https://forum.vac.dev/ - blog: https://blog.codex.storage - twitter: https://x.com/codex_storage - discord: https://discord.com/invite/codex-storage - farcaster: "@codexstorage" - -project_status: - live_status: true - version: Codex Devnet - testnet: false - mainnet: false - -licenses: Apache 2.0 and MIT - -traceability: - kyc: false +- Storage diff --git a/src/projects/Coti/index.yaml b/src/projects/Coti/index.yaml index 7a217dcd..f8ecdede 100644 --- a/src/projects/Coti/index.yaml +++ b/src/projects/Coti/index.yaml @@ -1,37 +1,2 @@ -name: Coti -usecase: [layer-2] -description: "EVM L2 solving blockchain privacy with Garbled Circuits" - -team: - anonymous: false - teammembers: - - name: Joshua Maddox - role: CEPO - link: https://x.com/JoshuaBMaddox - - name: Shaf Bar-Geffen - role: CEO - link: https://x.com/shahafbg - -links: - web: https://coti.io/ - github: https://github.com/coti-io - docs: https://docs.coti.io/coti-v2-documentation - whitepaper: https://coti.io/files/coti_v2_whitepaper.pdf - blog: https://coti.io/blog - twitter: https://x.com/COTInetwork - discord: https://discord.com/invite/wfAQfbc3Df - telegram: https://t.me/COTInetwork - -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false - -have_token: true -token_link: https://etherscan.io/token/0xddb3422497e61e13543bea06989c0789117555c5 -tokens: - - name: CotiToken - symbol: $COTI - network: Ethereum - contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5" +usecase: +- layer-2 diff --git a/src/projects/Cursive/index.yaml b/src/projects/Cursive/index.yaml index afc4d006..04f0fefd 100644 --- a/src/projects/Cursive/index.yaml +++ b/src/projects/Cursive/index.yaml @@ -1,9 +1,2 @@ -name: "Cursive" -usecase: [FHE] -description: "A cryptography lab focused on human-first applications of signed data." -links: - web: https://www.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 +usecase: +- FHE diff --git a/src/projects/DeChat/index.yaml b/src/projects/DeChat/index.yaml index 59d4d7e8..f5c47f7d 100644 --- a/src/projects/DeChat/index.yaml +++ b/src/projects/DeChat/index.yaml @@ -1,37 +1,2 @@ -name: DeChat -usecase: [messaging] -description: "open and secure web3 communications protocol that powers decentralized user interactions" - -team: - anonymous: false - teammembers: - - name: JAMES I. RADFORD - role: CEO - link: https://www.linkedin.com/in/james-r-aa8989165/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app - - name: ANDY DEMETRIOU - role: CMO - link: https://www.linkedin.com/in/andy-demetriou-a57778177/ - - 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 - testnet: true - mainnet: false - -have_token: true -token_link: https://bscscan.com/token/0xd69ee2e508363fed57f89917d5ca03e715ee5519 -tokens: - - name: DeChat Token - symbol: $DeChat - network: BSC - contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519" +usecase: +- messaging diff --git a/src/projects/DeGuard/index.yaml b/src/projects/DeGuard/index.yaml index 2cb1eb0b..495c7127 100644 --- a/src/projects/DeGuard/index.yaml +++ b/src/projects/DeGuard/index.yaml @@ -1,25 +1,2 @@ -name: DeGuard -usecase: [VPN] -description: "Provide utimate privacy based on web3" - -team: - anonymous: false - teammembers: - - name: Niktim - link: https://x.com/Crypto_Niktim - -links: - web: https://deguard.io/ - github: https://github.com/deguardvpn - docs: https://docs.deguard.io/ - twitter: https://x.com/DeGuardVPN - discord: https://discord.com/invite/agv3a9wGUn - telegram: https://t.me/DeGuardVPN - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: false +usecase: +- VPN diff --git a/src/projects/DeNet/index.yaml b/src/projects/DeNet/index.yaml index 27d39b06..886a0bb7 100644 --- a/src/projects/DeNet/index.yaml +++ b/src/projects/DeNet/index.yaml @@ -1,52 +1,2 @@ -name: DeNet -usecase: [storage] -ecosystem: [Polygon] -usecases: [storage, Depin] -description: "Decentralized Storage Protocol for Web3 services " -product_lunch_day: "2017" - -team: - anonymous: false - teammembers: - - name: Denis Shelestov - link: https://x.com/djdeniro1 - - name: Daniil Maslov - link: https://x.com/tttcrp - -links: - web: https://denet.pro/ - github: https://github.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: - - name: DeNet File Token - symbol: $DE - network: Polygon - 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 - -default_privacy: true - -traceability: - kyc: false - -compliance: false - -storage: - decentralized: true +usecase: +- storage diff --git a/src/projects/Ergo/index.yaml b/src/projects/Ergo/index.yaml index 5466b27c..d47c626f 100644 --- a/src/projects/Ergo/index.yaml +++ b/src/projects/Ergo/index.yaml @@ -1,60 +1,2 @@ -name: Ergo Platform -usecase: [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" - -team: - anonymous: false - teammembers: - - name: Alex Chepurnoy - link: https://x.com/chepurnoy - - name: qx - link: https://x.com/qx_ergo - -links: - web: https://ergoplatform.org/en/ - github: https://github.com/ergoplatform - whitepaper: https://storage.googleapis.com/ergo-cms-media/Advanced_Ergo_Script_Tutorial_70ed6feddf/Advanced_Ergo_Script_Tutorial_70ed6feddf.pdf - docs: https://docs.ergoplatform.com/ - blog: https://ergoplatform.org/en/blog/ - forum: https://www.ergoforum.org/ - twitter: https://x.com/ergo_platform - telegram: https://t.me/Ergo_Chats - discord: https://discord.com/invite/ergo-platform-668903786361651200 - -project_phase: Testnet -sunset: false - -tokens: - - name: Ergo Token - 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/ - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false - -audits: - - name: Jean-Philipee Aumasson - link: https://www.aumasson.jp/ - time: 2019-12 - -tecnology: - type: vpn, mixer +usecase: +- infrastructure diff --git a/src/projects/Exabits/index.yaml b/src/projects/Exabits/index.yaml index 83fb4fe7..dc15a100 100644 --- a/src/projects/Exabits/index.yaml +++ b/src/projects/Exabits/index.yaml @@ -1,14 +1,2 @@ -name: Exabits -usecase: [AI] -description: "Simplified Access to the Currency of the Future " -team: - anonymous: true -links: - web: https://www.exabits.ai/ - docs: https://docs.exabits.ai/introduction/what-is-exabits - blog: https://blog.exabits.ai/ - twitter: https://x.com/exa_bits - discord: https://discord.com/invite/exabits - telegram: https://t.me/+D0CulDl9udZjMWIx -have_token: false -sunset: false +usecase: +- AI diff --git a/src/projects/FairMath/index.yaml b/src/projects/FairMath/index.yaml index 91b413b4..04f0fefd 100644 --- a/src/projects/FairMath/index.yaml +++ b/src/projects/FairMath/index.yaml @@ -1,8 +1,2 @@ -name: "FairMath" -usecase: [FHE] -description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)" -links: - web: https://fairmath.xyz/ - github: https://github.com/fairmath - twitter: https://x.com/FairMath - discord: https://discord.com/invite/NfhXwyr9M5 +usecase: +- FHE diff --git a/src/projects/Fhenix/index.yaml b/src/projects/Fhenix/index.yaml index 71983c23..04f0fefd 100644 --- a/src/projects/Fhenix/index.yaml +++ b/src/projects/Fhenix/index.yaml @@ -1,11 +1,2 @@ -name: "Fhenix" -usecase: [FHE] -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 - docs: https://docs.fhenix.zone/ - whitepaper: https://www.fhenix.io/wp-content/uploads/2024/04/FHE_Rollups_Paper_Final-20241404.pdf - blog: https://medium.com/@Fhenix - twitter: https://x.com/FhenixIO - discord: https://discord.com/invite/FuVgxrvJMY +usecase: +- FHE diff --git a/src/projects/Humanode/index.yaml b/src/projects/Humanode/index.yaml index 19088f3d..304e1715 100644 --- a/src/projects/Humanode/index.yaml +++ b/src/projects/Humanode/index.yaml @@ -1,61 +1,2 @@ -name: Humanode -usecase: [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" -team: - anonymous: false - teammembers: - - name: Dato Kavazi - link: https://x.com/DatoKavazi - - name: Sasha Shilina - link: https://x.com/sshshln - - name: Andrei Kraciun - link: https://x.com/andreikraciun - - name: Victor - link: https://x.com/tech_mingler - -links: - web: https://humanode.io/ - github: https://github.com/humanode-network - whitepaper: https://papers.humanode.io/whitepaper.pdf - docs: https://gitbook.humanode.io/docs - block_explorer: https://humanode.subscan.io/ - blog: https://blog.humanode.io/ - twitter: https://x.com/humanode_io - telegram: https://t.me/humanode - discord: https://discord.com/invite/8my5gbgptx - -project_phase: Mainnet -sunset: false - -tokens: - - name: Humanode Token - symbol: $HMND - network: Humanodechain - token_link: https://coinmarketcap.com/currencies/humanode/ - -blockchain_features: - opensource: true - asset_custody_type: non-custody - upgradability: - enabled: true - -privacy_policy: - defined: false - -default_privacy: true - -traceability: - kyc: false -third_party_dependency: false -compliance: false - -audits: - - name: Certik - link: https://skynet.certik.com/projects/humanode - time: 2023-01-30 - -tecnology: - type: ZKP +usecase: +- did diff --git a/src/projects/IVPN/index.yaml b/src/projects/IVPN/index.yaml index efc2b32f..495c7127 100644 --- a/src/projects/IVPN/index.yaml +++ b/src/projects/IVPN/index.yaml @@ -1,42 +1,2 @@ -name: IVPN -usecase: [VPN] -description: "Audited, privacy focused VPN service." - -team: - anonymous: false - teammembers: - - name: Nicholas Pestell - role: CEO - link: https://github.com/cipheromega - - name: Edward De - 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 - link: https://github.com/gorkapernas - - name: Natanael Rodriguez - link: https://github.com/nathanrod - - name: Juraj Hilje - role: Dev - link: https://github.com/jurajhilje - - name: Alexandr Stelnykovych - role: Dev - link: https://github.com/stenya - - name: Jordan Sullivan - link: https://github.com/jordan-ivpn - -links: - web: https://www.ivpn.net/en/ - github: https://github.com/ivpn - blog: https://www.ivpn.net/en/blog/ - twitter: https://x.com/ivpnnet - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: false +usecase: +- VPN diff --git a/src/projects/Inco/index.yaml b/src/projects/Inco/index.yaml index 6329f183..04f0fefd 100644 --- a/src/projects/Inco/index.yaml +++ b/src/projects/Inco/index.yaml @@ -1,14 +1,2 @@ -name: "Inco" -usecase: [FHE] -description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains " -team: - anonymous: false -links: - web: https://www.inco.org/ - github: https://github.com/Inco-fhevm - block_explorer: https://explorer.testnet.inco.org/ - docs: https://docs.inco.org/ - blog: https://www.inco.org/blog/ - twitter: https://x.com/inconetwork - discord: https://discord.com/invite/fnKZp2qHPQ - telgram: https://t.me/inconetwork +usecase: +- FHE diff --git a/src/projects/Intmax/index.yaml b/src/projects/Intmax/index.yaml index 6f9a13c1..f8ecdede 100644 --- a/src/projects/Intmax/index.yaml +++ b/src/projects/Intmax/index.yaml @@ -1,30 +1,2 @@ -name: Intmax usecase: - - layer-2 -ecosystem: [Ethereum] -project_type: Layer2 zk-rollup -description: "A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time." - -team: - anonymous: false - teammembers: - - name: Leona Hioki - role: Co-founder - link: https://x.com/HiokiLeona - -links: - web: https://www.intmax.io/ - github: https://github.com/InternetMaximalism - whitepaper: https://eprint.iacr.org/2023/1082.pdf - blog: https://medium.com/intmax - twitter: https://x.com/intmaxIO - discord: https://discord.com/invite/N7kYGUPDEE - telegram: https://t.me/QM1EbIzxACsxMDk1 - -project_status: - live_status: true - version: testnet2 - testnet: true - mainnet: false - -have_token: false +- layer-2 diff --git a/src/projects/Kinto/index.yaml b/src/projects/Kinto/index.yaml index 297fa94c..a9b9f98e 100644 --- a/src/projects/Kinto/index.yaml +++ b/src/projects/Kinto/index.yaml @@ -1,34 +1,2 @@ -name: Kinto -usecase: [Layer-2] -description: "The safety-first L2 for Finance" - -team: - anonymous: false - teammembers: - - name: Ramon Recuero - role: CEO - link: https://x.com/ramonrecuero - -links: - web: https://www.kinto.xyz/ - github: https://github.com/kintoxyz - block_explorer: https://kintoscan.io/ - docs: https://docs.kinto.xyz/kinto-the-safe-l2 - whitepaper: https://docs.kinto.xyz/kinto-the-safe-l2/general/litepaper - blog: https://mirror.xyz/kintoxyz.eth - twitter: https://x.com/KintoXYZ - discord: https://discord.com/invite/kinto?a=1 - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: true -token_link: https://kintoscan.io/token/0x010700808D59d2bb92257fCafACfe8e5bFF7aB87?chainid=7887 -tokens: - - name: KINTO - symbol: $KINTO - network: Kinto - contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87" +usecase: +- Layer-2 diff --git a/src/projects/Mailchain/index.yaml b/src/projects/Mailchain/index.yaml index 109245ab..93fa3a54 100644 --- a/src/projects/Mailchain/index.yaml +++ b/src/projects/Mailchain/index.yaml @@ -1,63 +1,2 @@ -name: Mailchain -usecase: [dapps] -ecosystem: [Ethereum] -usecases: [mail] -description: "Web3 communication layer & web3 email for everyone" -product_lunch_day: "2019" - -team: - anonymous: false - teammembers: - - name: Tim Boeckmann - link: https://x.com/t_boeckmann - - name: Rob De Feo - link: https://x.com/robdefeo - - name: Misha Deville - link: https://x.com/MishaDV_ - - name: Elizabeth Stuart-Morris - link: https://x.com/esm_iam - - name: Hannah Anderson - link: https://www.linkedin.com/in/hannahsanderson/ - - name: Alexandru Velicu - link: https://www.linkedin.com/in/velicu-a-73794348/ - - name: Zubeyir O. - link: https://github.com/zubeyiro - - name: Antonio Ivanovski - link: https://github.com/toteto - - name: Nathan Sorochan - link: https://x.com/nathansorochan - - name: Tom Sargent - link: https://x.com/expensive_jpeg - - name: Becky Prunty - link: https://www.linkedin.com/in/becky-prunty-b93406a9/ - -links: - web: https://mailchain.com/ - github: https://github.com/mailchain - whitepaper: https://mailchain.com/papers/mailchain-whitepaper - docs: https://docs.mailchain.com/ - blog: https://medium.com/@mailchain - twitter: https://x.com/Mailchain_xyz - 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 - link: https://mailchain.com/terms - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false +usecase: +- dapps diff --git a/src/projects/Media network/index.yaml b/src/projects/Media network/index.yaml index 5947bbcd..c6529dd0 100644 --- a/src/projects/Media network/index.yaml +++ b/src/projects/Media network/index.yaml @@ -1,44 +1,2 @@ -name: Media Network -usecase: [computing-network] -ecosystem: [Ethereum, Solana, Base, Bnb, Optimist] -usecases: [cloud, DePin] -description: "The Web3 replacement for AWS and Google Cloud" -product_lunch_day: "2021" - -team: - anonymous: true - -links: - web: https://www.media.network/ - 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: - - name: Media Token - symbol: $MEDIA - 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 - -default_privacy: true - -traceability: - kyc: false -third_party_dependency: false -compliance: false +usecase: +- computing-network diff --git a/src/projects/Mindnetwork/index.yaml b/src/projects/Mindnetwork/index.yaml index 016059a2..04f0fefd 100644 --- a/src/projects/Mindnetwork/index.yaml +++ b/src/projects/Mindnetwork/index.yaml @@ -1,11 +1,2 @@ -name: "MindNetwork" -usecase: [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 +usecase: +- FHE diff --git a/src/projects/Nata network/index.yaml b/src/projects/Nata network/index.yaml index 21fcd2a7..fa22259b 100644 --- a/src/projects/Nata network/index.yaml +++ b/src/projects/Nata network/index.yaml @@ -1,23 +1,2 @@ -name: Nata network -usecase: [bridge] -description: "Nata Network is your portal to private cross-chain transactions." - -team: - anonymous: true - -links: - web: https://app.natarouter.com/ - github: https://github.com/shichiro-nakahara - block_explorer: https://explorer.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 - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: false +usecase: +- bridge diff --git a/src/projects/Nuco.cloud/index.yaml b/src/projects/Nuco.cloud/index.yaml index e5bf0ed8..dc15a100 100644 --- a/src/projects/Nuco.cloud/index.yaml +++ b/src/projects/Nuco.cloud/index.yaml @@ -1,20 +1,2 @@ -name: Nuco-cloud -usecase: [AI] -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 - whitepaper: https://www.nuco.cloud/whitepaper - blog: https://nucocloud.medium.com/ - twitter: https://x.com/nucocloud - discord: https://discord.com/invite/5fSC5aEhpm - facebook: https://www.facebook.com/nuco.cloud.distributedcloudcomputing/ - telegram: https://t.me/officialnucocloudgroup -have_token: true -token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B -tokens: - - name: nuco.cloud - symbol: NCDT - network: Ethereum - contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b" -sunset: false +usecase: +- AI diff --git a/src/projects/OpSec/index.yaml b/src/projects/OpSec/index.yaml index b16b1877..dc15a100 100644 --- a/src/projects/OpSec/index.yaml +++ b/src/projects/OpSec/index.yaml @@ -1,17 +1,2 @@ -name: OpSec -usecase: [AI] -description: " AI-powered decentralized cloud security." -links: - 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 -have_token: true -token_link: https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98 -tokens: - - name: Opsec - symbol: OPSEC - network: Ethereum - contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98" -sunset: false +usecase: +- AI diff --git a/src/projects/OriginTrail/index.yaml b/src/projects/OriginTrail/index.yaml index 1d7702a8..dc15a100 100644 --- a/src/projects/OriginTrail/index.yaml +++ b/src/projects/OriginTrail/index.yaml @@ -1,13 +1,2 @@ -name: OriginTrail -usecase: [ AI ] -description: 'Powering Verifiable Internet for Artificial Intelligence -' -links: - web: https://origintrail.io/ - 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 +usecase: +- AI diff --git a/src/projects/OxO/index.yaml b/src/projects/OxO/index.yaml index 7a3bae33..dc15a100 100644 --- a/src/projects/OxO/index.yaml +++ b/src/projects/OxO/index.yaml @@ -1,54 +1,2 @@ -name: OxO -usecase: [AI] -ecosystem: [Ethereum] -usecases: [Audit, mixer] -description: "All-in-One Privacy Exchange" -product_lunch_day: "2023-01" - -team: - anonymous: false - teammembers: - - name: Sir Enigma - link: https://x.com/abdel_hhh - - name: Smokey - link: https://x.com/Smokey_0x0 - - name: Jay - link: https://x.com/xcyb0rg - - name: Andy - link: https://t.me/Andy_0x0 - -links: - web: https://0x0.ai/ - 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: - - name: OxO Token - symbol: $OxO - network: Ethereum - contract_address: "0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5" - token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5 - -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 +usecase: +- AI diff --git a/src/projects/Particl/index.yaml b/src/projects/Particl/index.yaml index 962a709e..93fa3a54 100644 --- a/src/projects/Particl/index.yaml +++ b/src/projects/Particl/index.yaml @@ -1,51 +1,2 @@ -name: Particl -usecase: [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 +usecase: +- dapps diff --git a/src/projects/Presearch/index.yaml b/src/projects/Presearch/index.yaml index a4b0a685..725689aa 100644 --- a/src/projects/Presearch/index.yaml +++ b/src/projects/Presearch/index.yaml @@ -1,75 +1,2 @@ -name: Preserch -usecase: [browser] -ecosystem: [Ethereum] -usecases: [browser] -description: "The Decentralized Search Engine with more than 4 million members" -product_lunch_day: "2017" - -team: - anonymous: false - teammembers: - - name: Tim Enneking - link: https://www.linkedin.com/in/timothy-enneking-a725905/ - - name: Mark Torelli - link: https://www.linkedin.com/in/mark-torelli - - name: Jeff Hunt - link: https://www.linkedin.com/in/jeff-hunt-b302631b - - name: Ed Reese - link: https://www.linkedin.com/in/edreese/ - - name: Brenden Tacon - link: https://www.linkedin.com/in/brenden-tacon-81abb211/ - - name: Todd Enneking - link: https://www.linkedin.com/in/toddenneking/ - - name: Colin Pape - link: https://www.linkedin.com/in/colinpape - - name: Trey Grainger - link: https://www.linkedin.com/in/treygrainger/ - - name: Luís Dalmolin - 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/ - 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: - - name: Pre Token - symbol: $PRE - network: Ethereum - contract_address: "0xEC213F83defB583af3A000B1c0ada660b1902A0F" - token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F - -blockchain_features: - opensource: true - asset_custody_type: non-custody - upgradability: - enabled: true - -privacy_policy: - defined: true - link: https://presearch.com/privacy - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false - -audits: - - name: Mantisec Lab - link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf - time: 2023-10 - -storage: - decentralized: true +usecase: +- browser diff --git a/src/projects/Privasea/index.yaml b/src/projects/Privasea/index.yaml index f1f763d1..04f0fefd 100644 --- a/src/projects/Privasea/index.yaml +++ b/src/projects/Privasea/index.yaml @@ -1,12 +1,2 @@ -name: "Privasea" -usecase: [FHE] -description: "An AI + DePIN Network enabled through FHEML" -links: - web: https://www.privasea.ai/ - github: https://github.com/Privasea - docs: https://docs.privasea.ai/ - whitepaper: https://drive.google.com/file/d/1jbxWMgEziupt119gvM1n0Mu8sDdM7VWF/view - blog: https://www.privasea.ai/blog - twitter: https://x.com/Privasea_ai - discord: https://discord.com/invite/yRtQGvWkvG - telegram: https://t.me/Privasea_ai +usecase: +- FHE diff --git a/src/projects/Privy/index.yaml b/src/projects/Privy/index.yaml index 3952a77d..89eab459 100644 --- a/src/projects/Privy/index.yaml +++ b/src/projects/Privy/index.yaml @@ -1,50 +1,2 @@ -name: Privy -usecase: [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" - -team: - anonymous: false - teammembers: - - name: Colfax - link: https://x.com/colfaxselby - - name: Jainil Sutaria - link: https://x.com/jainilsutaria1 - -links: - web: https://www.privy.io/ - github: https://github.com/privy-io - 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 - link: https://www.privy.io/privacy-policy - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false - -audits: - - name: Zellic - link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf - time: 2023-08 - -tecnology: - type: AA +usecase: +- wallets diff --git a/src/projects/RawBox/index.yaml b/src/projects/RawBox/index.yaml index e99ce144..53c5a6ef 100644 --- a/src/projects/RawBox/index.yaml +++ b/src/projects/RawBox/index.yaml @@ -1,29 +1,2 @@ -name: RawBox -usecase: [Hardware] -ecosystem: [Nym] -description: "Redefined privacy-enabled router." - -team: - anonymous: false - teammembers: - - name: Oleksandr - link: https://x.com/oleksky - - name: crptcpchk - link: https://x.com/the01100011 - - name: Yana Matrosova - link: https://x.com/yana_tnfl - - name: Beyond - link: https://x.com/Beyond_Karto - -links: - github: https://github.com/Raw-Box/ - twitter: https://x.com/rawbox_tech - telegram: https://t.me/+G4ixLEgYBXJkZWRi - -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false - -have_token: false +usecase: +- Hardware diff --git a/src/projects/Rido/index.yaml b/src/projects/Rido/index.yaml index eb537546..dc15a100 100644 --- a/src/projects/Rido/index.yaml +++ b/src/projects/Rido/index.yaml @@ -1,14 +1,2 @@ -name: Rido -usecase: [AI] -description: "Web3 Personal Data Layer for AI " -team: - anonymous: true -links: - 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 - discord: https://discord.com/invite/Ekb98rR3pu - telegram: https://t.me/+N6HLxnRL_WE5ZDVl -have_token: false -sunset: false +usecase: +- AI diff --git a/src/projects/Ritual/index.yaml b/src/projects/Ritual/index.yaml index 86e406e4..ad4dacc8 100644 --- a/src/projects/Ritual/index.yaml +++ b/src/projects/Ritual/index.yaml @@ -1,57 +1,2 @@ -name: Ritual -usecase: [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." -product_launch_day: "2023" - -team: - anonymous: false - teammembers: - - name: Niraj Pant - link: https://x.com/niraj - - name: Akilesh Potti - link: https://x.com/akileshpotti - - name: Anish Agnihotri - link: https://x.com/_anishagnihotri - - name: Eva Zhang - link: https://www.linkedin.com/in/evazhang612/ - - name: Saneel Sreeni - link: https://x.com/sanlsrni - - name: Maryam Bahrani - 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/ - -links: - web: https://ritual.net/ - github: https://github.com/ritual-net - docs: https://docs.ritual.net/ - blog: https://ritual.net/blog - 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 - -blockchain_features: - opensource: true - asset_custody_type: non-custody - upgradability: - enabled: true - -privacy_policy: - defined: false - -default_privacy: true - -traceability: - kyc: false -third_party_dependency: false -compliance: false +usecase: +- ai diff --git a/src/projects/Rotki/index.yaml b/src/projects/Rotki/index.yaml index ba85a21e..93fa3a54 100644 --- a/src/projects/Rotki/index.yaml +++ b/src/projects/Rotki/index.yaml @@ -1,41 +1,2 @@ -name: Rotki -usecase: [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" - -team: - anonymous: false - teammembers: - - name: Lefteris Karapetsas - link: https://x.com/LefterisJP - -links: - web: https://rotki.com/ - github: https://github.com/rotki/rotki - docs: https://docs.rotki.com/ - blog: https://blog.rotki.com/ - 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 - link: https://rotki.com/privacy-policy - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false +usecase: +- dapps diff --git a/src/projects/Self/index.yaml b/src/projects/Self/index.yaml index 9535319d..304e1715 100644 --- a/src/projects/Self/index.yaml +++ b/src/projects/Self/index.yaml @@ -1,47 +1,2 @@ -name: Self -usecase: [did] -usecases: [digital identity, personal data] -description: "Build identification and personal data management for everything" -product_lunch_day: "2019" - -team: - anonymous: false - teammembers: - - name: Dan Sutherland - link: https://www.linkedin.com/in/dansuth/ - - name: Sena Gbeckor-Kove - link: https://www.linkedin.com/in/senagbe/ - - name: Jason Reid - link: https://www.linkedin.com/in/jason-reid-1a12833/ - -links: - web: https://www.joinself.com/ - github: https://github.com/joinself - docs: https://docs.joinself.com/ - 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 - -default_privacy: true - -traceability: - kyc: false -third_party_dependency: false -compliance: false - -storage: - decentralized: true - -tecnology: - type: ZK +usecase: +- did diff --git a/src/projects/Sentz/index.yaml b/src/projects/Sentz/index.yaml index decfa47b..93fa3a54 100644 --- a/src/projects/Sentz/index.yaml +++ b/src/projects/Sentz/index.yaml @@ -1,54 +1,2 @@ -name: Sentz -usecase: [dapps] -usecases: [payment] -description: "Global payments app for Freelancers & Creators" -product_lunch_day: "2022" - -team: - anonymous: false - teammembers: - - name: Sara Drakeley - link: https://www.linkedin.com/in/sara-drakeley/ - - name: Henry Holtzman - link: https://www.linkedin.com/in/holtzmanh/?original_referer=https%3A%2F%2Fwww.sentz.com%2F - -links: - web: https://www.sentz.com/ - github: https://github.com/mobilecoinofficial - whitepaper: https://www.sentz.com/learn/whitepapers - docs: https://www.sentz.com/developers - blog: https://www.sentz.com/blog - twitter: https://x.com/sentzapp - discord: https://discord.com/invite/mobilecoin - -project_phase: Mainet -sunset: false - -tokens: - - name: Mobile Coin - 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 - -default_privacy: true - -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false - -audits: - - name: Trail of Bits - link: https://www.sentz.com/developers/audits - -assets_used: [eUSD] +usecase: +- dapps diff --git a/src/projects/SightAI/index.yaml b/src/projects/SightAI/index.yaml index 2e40980a..dc15a100 100644 --- a/src/projects/SightAI/index.yaml +++ b/src/projects/SightAI/index.yaml @@ -1,14 +1,2 @@ -name: SightAI -usecase: [AI] -description: "Decentralized AI inference with FHE" -team: - anonymous: true -links: - web: https://sightai.io/ - github: https://github.com/sight-ai - docs: https://sightai.gitbook.io/docs - blog: https://medium.com/@theSightAI - twitter: https://x.com/theSightAI - telegram: https://t.me/sightai -have_token: false -sunset: false +usecase: +- AI diff --git a/src/projects/Summa/index.yaml b/src/projects/Summa/index.yaml index f5da0a4a..e5c8586f 100644 --- a/src/projects/Summa/index.yaml +++ b/src/projects/Summa/index.yaml @@ -1,11 +1 @@ -name: Summa usecase: infrastructure -description: "Protocol enabling centralized exchanges to prove solvency without compromising private information." -project_status: - live_status: true -team: - anonymous: true -links: - github: https://github.com/summa-dev -technology: - type: halo2 diff --git a/src/projects/Sunscreen/index.yaml b/src/projects/Sunscreen/index.yaml index f8523b04..04f0fefd 100644 --- a/src/projects/Sunscreen/index.yaml +++ b/src/projects/Sunscreen/index.yaml @@ -1,8 +1,2 @@ -name: "Sunsscreen" -usecase: [FHE] -description: "Privacy engine of the new web." -links: - web: https://sunscreen.tech/ - blog: https://blog.sunscreen.tech/ - twitter: https://x.com/sunscreentech - discord: https://discord.com/invite/WHCs6jNNDS +usecase: +- FHE diff --git a/src/projects/Super Protocol/index.yaml b/src/projects/Super Protocol/index.yaml index b5296eab..dc15a100 100644 --- a/src/projects/Super Protocol/index.yaml +++ b/src/projects/Super Protocol/index.yaml @@ -1,13 +1,2 @@ -name: SuperProtocol -usecase: [AI] -description: "The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts" -team: - anonymous: true -links: - web: https://superprotocol.com/ - docs: https://docs.superprotocol.com/developers/ - twitter: https://x.com/super__protocol - discord: https://discord.com/invite/superprotocol - telegram: https://t.me/superprotocol -have_token: false -sunset: false +usecase: +- AI diff --git a/src/projects/Synaps/index.yaml b/src/projects/Synaps/index.yaml index 0b0c6df8..b3ff2432 100644 --- a/src/projects/Synaps/index.yaml +++ b/src/projects/Synaps/index.yaml @@ -1,25 +1,2 @@ -name: Synaps -usecase: [kyc] -description: "KYC provider and verifiable credential issuer for DID protocols." - -team: - anonymous: false - teammembers: - - 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 - testnet: false - mainnet: true - -have_token: false +usecase: +- kyc diff --git a/src/projects/Taceo/index.yaml b/src/projects/Taceo/index.yaml index 3a4df8c6..c6529dd0 100644 --- a/src/projects/Taceo/index.yaml +++ b/src/projects/Taceo/index.yaml @@ -1,27 +1,2 @@ -name: Taceo -usecase: [computing-network] -description: "Encrypted Computation Layer; MPC + ZK" - -team: - anonymous: false - teammembers: - - name: Roman Walch - role: Co-founder - link: https://x.com/rw0x0 - - name: Lukas Helminger - role: CEO - link: https://x.com/luhelminger - -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 +usecase: +- computing-network diff --git a/src/projects/The 4th Pillar/index.yaml b/src/projects/The 4th Pillar/index.yaml index b1992f4b..f5c47f7d 100644 --- a/src/projects/The 4th Pillar/index.yaml +++ b/src/projects/The 4th Pillar/index.yaml @@ -1,30 +1,2 @@ -name: The 4th Pillar -usecase: [messaging] -description: "Web3 Aligned Email & Chat Super App" - -team: - anonymous: true - -links: - web: https://the4thpillar.io/ - github: https://github.com/4P-project/ - docs: https://docs.the4thpillar.io/ - whitepaper: https://docs.google.com/document/d/1Ie_whzzIdvkuBOH_-X2Uhly3r0IIFR1hYGaHqHtIKrU/edit?usp=sharing - blog: https://medium.com/4p-project - twitter: https://x.com/4pfour - discord: https://discord.com/invite/WaZZXeBhg4 - telegram: https://t.me/the4thpillarofficial - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true - -have_token: true -token_link: https://etherscan.io/token/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0 -tokens: - - name: The 4th Pillar Token - symbol: $FOUR - network: Ethereum - contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0" +usecase: +- messaging diff --git a/src/projects/Venice/index.yaml b/src/projects/Venice/index.yaml index b02fb9b6..dc15a100 100644 --- a/src/projects/Venice/index.yaml +++ b/src/projects/Venice/index.yaml @@ -1,8 +1,2 @@ -name: Venice -usecase: [AI] -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 +usecase: +- AI diff --git a/src/projects/Vocdoni/index.yaml b/src/projects/Vocdoni/index.yaml index 8705f270..93fa3a54 100644 --- a/src/projects/Vocdoni/index.yaml +++ b/src/projects/Vocdoni/index.yaml @@ -1,62 +1,2 @@ -name: Vocdoni -usecase: [dapps] -ecosystem: [Ethereum] -usecases: [voting] -description: "To build open source solutions to facilitate decision making in any organization." -product_lunch_day: "2017" - -team: - anonymous: false - teammembers: - - name: Joan Arus - link: https://x.com/Joan_Arus - - name: Jordi Aulet - link: https://x.com/jp_aulet - - name: Pau Escrich - link: https://x.com/wildp4u - - name: Jordi Pinyana - - name: Marta Sancho - link: https://x.com/MartaMordis - - name: Guido Iribarren - link: https://github.com/altergui - - name: Lucas Menéndez - link: https://github.com/lucasmenendez - -links: - web: https://www.vocdoni.io/ - github: https://github.com/vocdoni - 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 - discord: https://discord.com/invite/Qjm7krrFBf - -project_phase: Mainnet -sunset: false - -funding: - name: Aragon grant 2021/2022 - link: https://x.com/AragonProject - -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 +usecase: +- dapps diff --git a/src/projects/Zama/index.yaml b/src/projects/Zama/index.yaml index a5a08778..04f0fefd 100644 --- a/src/projects/Zama/index.yaml +++ b/src/projects/Zama/index.yaml @@ -1,8 +1,2 @@ -name: "Zama" -usecase: [FHE] -description: "an open source cryptography company building FHE solutions for blockchain and AI." -team: - anonymous: false -links: - web: https://www.zama.ai - docs: https://docs.zama.ai/ +usecase: +- FHE diff --git a/src/projects/ZkAGI/index.yaml b/src/projects/ZkAGI/index.yaml index 4332b9a5..dc15a100 100644 --- a/src/projects/ZkAGI/index.yaml +++ b/src/projects/ZkAGI/index.yaml @@ -1,13 +1,2 @@ -name: ZkAGI -usecase: [AI] -description: "Pioneering Privacy AI with Decentralized Infrastructure (DePIN)" -links: - web: https://www.zkagi.ai/ - docs: https://zkagi.gitbook.io/introduction - whitepaper: https://docsend.com/view/gfz2t2emnz9uifbx - blog: https://medium.com/zkagi - twitter: https://x.com/zk_agi - discord: https://discord.com/invite/Zjxe6m4GhH - telegram: https://t.me/ZkAGI_AI -have_token: false -sunset: false +usecase: +- AI diff --git a/src/projects/actilist/index.yaml b/src/projects/actilist/index.yaml index 7f685157..0aee9366 100644 --- a/src/projects/actilist/index.yaml +++ b/src/projects/actilist/index.yaml @@ -1,18 +1,2 @@ -name: Actilist -usecase: [nft] -description: "Secret NFT auctions." -links: - web: https://test.actilist.io - github: https://github.com/actilabs - docs: https://docs.actilist.io/ - blog: https://medium.com/actilist - twitter: https://x.com/ActiList_Dapp - discord: https://discord.com/invite/uPxGvqJErz - telegram: https://t.me/actilist -project_status: - live_status: true - version: testnet - testnet: true - mainnet: false -have_token: false -sunset: false +usecase: +- nft diff --git a/src/projects/aesirx-web3-id/index.yaml b/src/projects/aesirx-web3-id/index.yaml index ab032090..304e1715 100644 --- a/src/projects/aesirx-web3-id/index.yaml +++ b/src/projects/aesirx-web3-id/index.yaml @@ -1,13 +1,2 @@ -name: AesirX WEB3 ID -usecase: [did] -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 - whitepaper: https://whitepaper.aesirx.io/ - - blog: https://aesirx.io/blog/aesirx - twitter: https://x.com/aesirxio - facebook: https://www.facebook.com/aesirxio - telegram: https://t.me/aesirx_official_community -have_token: true +usecase: +- did diff --git a/src/projects/alaya/index.yaml b/src/projects/alaya/index.yaml index 71f43901..c6529dd0 100644 --- a/src/projects/alaya/index.yaml +++ b/src/projects/alaya/index.yaml @@ -1,13 +1,2 @@ -name: Alaya -usecase: [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 -links: - web: https://alaya.network/en - github: https://github.com/AlayaNetwork - forum: https://forum.latticex.foundation/c/alaya-cn/36 - docs: https://devdocs.alaya.network/alaya-devdocs/en/ - blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e -team: - anonymous: true +usecase: +- computing-network diff --git a/src/projects/aleo/index.yaml b/src/projects/aleo/index.yaml index 9ea1af14..d47c626f 100644 --- a/src/projects/aleo/index.yaml +++ b/src/projects/aleo/index.yaml @@ -1,41 +1,2 @@ -name: Aleo -usecase: [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: - web: https://www.aleo.studio - twitter: https://twitter.com/AleoHQ - discord: https://discord.gg/aleo - youtube: https://www.youtube.com/@aleofoundation - github: https://github.com/AleoHQ - block_explorer: https://explorer.aleo.org/ - docs: https://developer.aleo.org/getting_started/ - blog: https://aleo.org/blog/ -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false -technology: - type: zk-SNARKs - features: - - ZK circuit programming - - SNARK validator network -blockchain_features: - p2p: true - viewing_key: true - dissapearing_tx: true - connected_tx: true -client_diversability: - 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 +usecase: +- infrastructure diff --git a/src/projects/aleph-zero/index.yaml b/src/projects/aleph-zero/index.yaml index ca053151..c6529dd0 100644 --- a/src/projects/aleph-zero/index.yaml +++ b/src/projects/aleph-zero/index.yaml @@ -1,22 +1,2 @@ -name: Aleph Zero -usecase: [computing-network] -description: "Privacy-enhancing public blockchain with instant finality." -ecosystem: Aleph -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://alephzero.org - github: https://github.com/aleph-zero-foundation - docs: https://docs.alephzero.org/aleph-zero - whitepaper: https://docs.alephzero.org/aleph-zero/explore/whitepapers - twitter: https://x.com/Aleph__Zero - discord: https://discord.com/invite/alephzero - facebook: https://www.facebook.com/AlephZeroFoundation - telegram: https://t.me/AlephZeroFoundation -team: - anonymous: false - company: - link: https://alephzero.org/the-team +usecase: +- computing-network diff --git a/src/projects/alter/index.yaml b/src/projects/alter/index.yaml index 16bf72c3..f5c47f7d 100644 --- a/src/projects/alter/index.yaml +++ b/src/projects/alter/index.yaml @@ -1,17 +1,2 @@ -name: ALTER -usecase: [messaging] -description: "Private & Secure Communication App Utilizing Secret Nework secret contract technology." -team: - anonymous: true -links: - web: https://alter.network/ - blog: https://blog.altermail.live/ - twitter: https://twitter.com/AlterDapp - discord: https://discord.com/invite/jyTnQnpnbU - facebook: https://www.facebook.com/alterdapp/?_rdr - telegram: https://t.me/alterdapp -project_status: - live_status: true - version: mainnet - testnet: false - mainnet: true +usecase: +- messaging diff --git a/src/projects/anagolay/index.yaml b/src/projects/anagolay/index.yaml index 3949b1de..304e1715 100644 --- a/src/projects/anagolay/index.yaml +++ b/src/projects/anagolay/index.yaml @@ -1,13 +1,2 @@ -name: Anagolay -usecase: [did] -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 - docs: https://anagolay.dev/docs/ - whitepaper: https://kelp.notion.site/Anagolay-White-Paper-v_0-3-fd9ca46a2f524e83b46ed8a0242d618d - - blog: https://anagolay.dev/blog/ - twitter: https://x.com/AnagolayNet - discord: https://discord.com/invite/WHe4EuY -have_token: true +usecase: +- did diff --git a/src/projects/anoma/index.yaml b/src/projects/anoma/index.yaml index ef18e77e..d47c626f 100644 --- a/src/projects/anoma/index.yaml +++ b/src/projects/anoma/index.yaml @@ -1,30 +1,2 @@ -name: Anoma -usecase: [infrastructure] -description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement" -project_status: testnet -team: - anonymous: false - teammembers: - - name: Christopher Goes - role: CTO - - name: Adrian Brink - role: Co-founder - - name: Awa Sun Yin - role: CEO -links: - web: https://anoma.net - docs: https://github.com/anoma/anoma-archive/tree/main/docs - blog: https://anoma.net/blog - github: https://github.com/anoma - whitepaper: https://github.com/anoma/whitepaper/blob/main/whitepaper.pdf - vision-paper: https://anoma.net/vision-paper.pdf -technology: - type: ZK, FHE - features: - - privacy for content -blockchain_features: - p2p: true -tracebility: - kyc: false -storage: - decentralized: true +usecase: +- infrastructure diff --git a/src/projects/anon-aadhaar/index.yaml b/src/projects/anon-aadhaar/index.yaml index b3ea2ac0..12937271 100644 --- a/src/projects/anon-aadhaar/index.yaml +++ b/src/projects/anon-aadhaar/index.yaml @@ -1,14 +1,2 @@ -name: Anon Aadhaar -usecase: [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 -team: - anonymous: true -links: - web: https://anon-aadhaar.pse.dev/ - blog: https://anon-aadhaar-documentation.vercel.app/blog - docs: https://anon-aadhaar-documentation.vercel.app/docs/intro - github: https://github.com/anon-aadhaar/anon-aadhaar -technology: - type: zk, circom, rsa +usecase: +- DID diff --git a/src/projects/anon-nero/index.yaml b/src/projects/anon-nero/index.yaml index 134a8939..89eab459 100644 --- a/src/projects/anon-nero/index.yaml +++ b/src/projects/anon-nero/index.yaml @@ -1,5 +1,2 @@ -name: Anon/Nero -usecase: [wallets] -description: "Private wallet" -links: - web: https://t.me/anoneroapks +usecase: +- wallets diff --git a/src/projects/anonybit/index.yaml b/src/projects/anonybit/index.yaml index 80329bf7..304e1715 100644 --- a/src/projects/anonybit/index.yaml +++ b/src/projects/anonybit/index.yaml @@ -1,10 +1,2 @@ -name: Anonybit -usecase: [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: - web: https://www.anonybit.io/team/ - - blog: https://www.anonybit.io/blog/ - twitter: https://x.com/Anonybit1 -have_token: true +usecase: +- did diff --git a/src/projects/anonzk-incognito/index.yaml b/src/projects/anonzk-incognito/index.yaml index 40d9af5e..6c5eaddd 100644 --- a/src/projects/anonzk-incognito/index.yaml +++ b/src/projects/anonzk-incognito/index.yaml @@ -1,5 +1,2 @@ -name: AnonZK Incognito -usecase: [mixing-service] -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 +usecase: +- mixing-service diff --git a/src/projects/anydao/index.yaml b/src/projects/anydao/index.yaml index 7fdc3b58..cb24a5b1 100644 --- a/src/projects/anydao/index.yaml +++ b/src/projects/anydao/index.yaml @@ -1,9 +1,2 @@ -name: AnyDAO -usecase: [dao] -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 +usecase: +- dao diff --git a/src/projects/anytype/index.yaml b/src/projects/anytype/index.yaml index 5555976b..d47c626f 100644 --- a/src/projects/anytype/index.yaml +++ b/src/projects/anytype/index.yaml @@ -1,12 +1,2 @@ -name: Anytype -usecase: [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 -links: - web: https://anytype.io/en - github: https://github.com/anytypeio - docs: https://doc.anytype.io/anytype-docs - blog: https://blog.anytype.io/ - twitter: https://twitter.com/anytypelabs - telegram: https://t.me/anytype - youtube: https://www.youtube.com/c/anytype +usecase: +- infrastructure diff --git a/src/projects/arcana-s-private-nft/index.yaml b/src/projects/arcana-s-private-nft/index.yaml index 3fdeef91..0aee9366 100644 --- a/src/projects/arcana-s-private-nft/index.yaml +++ b/src/projects/arcana-s-private-nft/index.yaml @@ -1,6 +1,2 @@ -name: Arcana's Private NFT -usecase: [nft] -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/ +usecase: +- nft diff --git a/src/projects/arcana/index.yaml b/src/projects/arcana/index.yaml index 6e24eb0a..d47c626f 100644 --- a/src/projects/arcana/index.yaml +++ b/src/projects/arcana/index.yaml @@ -1,29 +1,2 @@ -name: Arcana -usecase: [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 -links: - web: https://arcana.network - github: https://docs.beta.arcana.network - twitter: https://twitter.com/ArcanaNetwork - discord: https://discord.com/invite/6g7fQvEpdy - youtube: https://www.youtube.com/@ArcanaNetwork - telegram: https://t.me/ArcanaNetwork - docs: https://docs.arcana.network/ - blog: https://arcana.network/blog - whitepaper: https://www.notion.so/arcananetwork/Arcana-Technical-Docs-a1d7fd0d2970452586c693e4fee14d08 -have_token: true -tokens: - - symbol: XAR +usecase: +- infrastructure diff --git a/src/projects/arpa/index.yaml b/src/projects/arpa/index.yaml index d3bb89fb..c6529dd0 100644 --- a/src/projects/arpa/index.yaml +++ b/src/projects/arpa/index.yaml @@ -1,20 +1,2 @@ -name: ARPA -usecase: [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: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://www.arpanetwork.io/en-US - github: https://github.com/ARPA-Network - docs: https://docs.arpanetwork.io/becoming-a-node-and-get-rewarded - whitepaper: https://docsend.com/view/gnqammz8wtysrud4 - blog: https://arpa.medium.com/ - twitter: https://x.com/arpaofficial - discord: https://discord.com/invite/swahGvv5XK - telegram: https://t.me/arpa_community -team: - anonymous: true +usecase: +- computing-network diff --git a/src/projects/asmatch/index.yaml b/src/projects/asmatch/index.yaml index b72b3906..93fa3a54 100644 --- a/src/projects/asmatch/index.yaml +++ b/src/projects/asmatch/index.yaml @@ -1,10 +1,2 @@ -name: AsMatch -usecase: [dapps] -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/ - - blog: https://asmatch.medium.com/ - twitter: https://x.com/AsMatchApp - discord: https://discord.com/invite/yqUWDdyfX9 +usecase: +- dapps diff --git a/src/projects/asterizm/index.yaml b/src/projects/asterizm/index.yaml index 3b044723..d47c626f 100644 --- a/src/projects/asterizm/index.yaml +++ b/src/projects/asterizm/index.yaml @@ -1,17 +1,2 @@ -name: Asterizm -usecase: [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 -links: - web: https://asterizm.io - github: https://github.com/Asterizm-Protocol - docs: http://docs.asterizm.io/ - blog: https://medium.com/asterizm-labs - whitepaper: https://asterizm.io/files/wp.pdf - twitter: https://twitter.com/Asterizm_layer - discord: https://discord.gg/z5QVerD48C - telegram: https://t.me/asterizm_protocol +usecase: +- infrastructure diff --git a/src/projects/auth3/index.yaml b/src/projects/auth3/index.yaml index ca656b12..d47c626f 100644 --- a/src/projects/auth3/index.yaml +++ b/src/projects/auth3/index.yaml @@ -1,18 +1,2 @@ -name: Auth3 -usecase: [infrastructure] - -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 +usecase: +- infrastructure diff --git a/src/projects/automata-network/index.yaml b/src/projects/automata-network/index.yaml index fad2316b..d47c626f 100644 --- a/src/projects/automata-network/index.yaml +++ b/src/projects/automata-network/index.yaml @@ -1,18 +1,2 @@ -name: Automata Network -usecase: [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: - website: https://www.ata.network/ - docs: https://docs.ata.network - github: https://github.com/automata-network - blog: https://blog.ata.network/ -have_token: true -tokens: - - symbol: ATA -project_status: - live_status: true - version: false - testnet: true - mainnet: false +usecase: +- infrastructure diff --git a/src/projects/avado/index.yaml b/src/projects/avado/index.yaml index 2e66d48e..2fa04e73 100644 --- a/src/projects/avado/index.yaml +++ b/src/projects/avado/index.yaml @@ -1,16 +1,2 @@ -name: Avado -usecase: [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 - docs: https://docs.ava.do/ - blog: https://ava.do/blog/ - twitter: https://x.com/AvadoAg - discord: https://discord.com/invite/RpMaFjTjyw - facebook: https://www.facebook.com/avadocloud -team: - anonymous: false - company: - link: https://www.mysterium.network/team +usecase: +- hardware diff --git a/src/projects/axiatel/index.yaml b/src/projects/axiatel/index.yaml index 8bc0ebb9..2fa04e73 100644 --- a/src/projects/axiatel/index.yaml +++ b/src/projects/axiatel/index.yaml @@ -1,9 +1,2 @@ -name: AXIAtel -usecase: [hardware] -description: "a privacy first mobile service for everyone" -ecosystem: multichain -links: - web: https://axiatel.co - blog: https://medium.com/@axiatel -team: - anonymous: true +usecase: +- hardware diff --git a/src/projects/aztec-connect/index.yaml b/src/projects/aztec-connect/index.yaml index 0c509339..fa22259b 100644 --- a/src/projects/aztec-connect/index.yaml +++ b/src/projects/aztec-connect/index.yaml @@ -1,8 +1,2 @@ -name: Aztec Connect -usecase: [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 +usecase: +- bridge diff --git a/src/projects/basic-attention-token/index.yaml b/src/projects/basic-attention-token/index.yaml index 850ac2bd..7306fc76 100644 --- a/src/projects/basic-attention-token/index.yaml +++ b/src/projects/basic-attention-token/index.yaml @@ -1,12 +1,2 @@ -name: Basic Attention Token -usecase: [currency] -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 - blog: https://basicattentiontoken.org/blog/ - twitter: https://x.com/attentiontoken - discord: https://discord.com/invite/BATBrigade -team: - anonymous: false +usecase: +- currency diff --git a/src/projects/basicswap/index.yaml b/src/projects/basicswap/index.yaml index 20ba7c9c..7eed242a 100644 --- a/src/projects/basicswap/index.yaml +++ b/src/projects/basicswap/index.yaml @@ -1,55 +1,2 @@ -name: Basic Swap -usecase: [defi] -ecosystem: Multichain -description: "A private and cross-chain DEX" -project_type: DeFi -product_launch_day: "2022-12-08" -technology: - type: P2P - name: peer to peer - features: - - private - - swaps -links: - web: https://basicswapdex.com/ - twitter: https://twitter.com/basicswapdex - blog: https://particl.news/tag/basicswap/ - github: https://github.com/tecnovert/basicswap - docs: https://academy.particl.io/en/latest/basicswap-dex/basicswap_technicals.html -blockchain_features: - p2p: true - encryption: P2P, AtomicSwaps - upgradability: - enabled: true - type: fork - opensource: true - dissapearing_tx: true - frontend_anonymity: self-hosted - connected_tx: false - revealed_recipient: true - revealed_sender: true - revealed_ammount: true - data_masking: P2P - asset_custody_type: non-custody -licences: MIT License -privacy_policy: - defined: false -team: - anonymous: true -storage: - decentralized: true -traceability: - tracked_data: Chains activity - kyc: false - sign_in_type_requirments: wallets -third_party_dependency: false -compliance: none -client_diversability: - - name: BasicSwap client - link: https://basicswapdex.com/ -default_privacy: false -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- defi diff --git a/src/projects/bcchat/index.yaml b/src/projects/bcchat/index.yaml index 356bd500..f5c47f7d 100644 --- a/src/projects/bcchat/index.yaml +++ b/src/projects/bcchat/index.yaml @@ -1,18 +1,2 @@ -name: BCchat -usecase: [messaging] -description: "A decentralized, privacy messenger built over the Beldex blockchain." -team: - anonymous: true -links: - web: https://bchat.beldex.io - github: https://github.com/Beldex-Coin - docs: https://docs.beldex.io/ - litepaper: https://bchat.beldex.io/img/litepaper.pdf - blog: https://beldex.io/blog/what-is-bchat/ - twitter: https://twitter.com/Bchat_official - telegram: https://t.me/official_beldex -project_status: - live_status: true - version: mainnet - testnet: false - mainnet: true +usecase: +- messaging diff --git a/src/projects/beam-wallet/index.yaml b/src/projects/beam-wallet/index.yaml index 011734d8..89eab459 100644 --- a/src/projects/beam-wallet/index.yaml +++ b/src/projects/beam-wallet/index.yaml @@ -1,14 +1,2 @@ -name: Beam -usecase: [wallets] -description: "Self-custodial wallet built on eco.org" -team: - anonymous: true -links: - web: https://beam.eco/ - twitter: https://x.com/beam_eco - github: https://github.com/eco-association -project_status: - live_status: true - version: - testnet: false - mainnet: false +usecase: +- wallets diff --git a/src/projects/beam/index.yaml b/src/projects/beam/index.yaml index 4588291d..7306fc76 100644 --- a/src/projects/beam/index.yaml +++ b/src/projects/beam/index.yaml @@ -1,16 +1,2 @@ -name: Beam -usecase: [currency] -description: "Best in class privacy coin and confidential DeFi platform" -links: - web: https://beam.mw - github: https://github.com/BeamMW/beam - docs: https://beam.mw/docs - forum: https://forum.beam.mw/ - blog: https://medium.com/beam-mw - twitter: https://x.com/beamprivacy - discord: https://discord.com/invite/BHZvAhg - telegram: https://t.me/BeamPrivacy -ecosystem: Beam -project_status: Mainnet -team: - anonymous: false +usecase: +- currency diff --git a/src/projects/beepo/index.yaml b/src/projects/beepo/index.yaml index c2231f7a..f5c47f7d 100644 --- a/src/projects/beepo/index.yaml +++ b/src/projects/beepo/index.yaml @@ -1,15 +1,2 @@ -name: Beepo -usecase: [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" -team: - - 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 - whitepaper: https://beepo.gitbook.io/internal-wiki/the-company/whitepaper - twitter: https://x.com/beepoapp - discord: https://discord.com/invite/DhYJGgAVzR - telegram: https://t.me/beepoapp +usecase: +- messaging diff --git a/src/projects/beldex/index.yaml b/src/projects/beldex/index.yaml index e0ad0ed5..7306fc76 100644 --- a/src/projects/beldex/index.yaml +++ b/src/projects/beldex/index.yaml @@ -1,20 +1,2 @@ -name: Beldex -usecase: [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 -project_status: - live_status: true - verion: Mainnet - testnet: true - mainnet: true -links: - web: https://www.beldex.io/ - github: https://github.com/Beldex-Coin - docs: https://docs.beldex.io/ - blog: https://beldex.io/blog/ - twitter: https://x.com/BeldexCoin - discord: https://discord.com/invite/Hj4MAmA5gs - facebook: https://www.facebook.com/beldexofficial - telegram: https://t.me/official_beldex -team: - anonymous: false +usecase: +- currency diff --git a/src/projects/bermuda/index.yaml b/src/projects/bermuda/index.yaml index ce8af35e..93fa3a54 100644 --- a/src/projects/bermuda/index.yaml +++ b/src/projects/bermuda/index.yaml @@ -1,10 +1,2 @@ -name: Bermuda -usecase: [dapps] -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 - - blog: https://medium.com/@bmdaadmin - twitter: https://x.com/BermudaEth - telegram: https://t.me/bermudaportal +usecase: +- dapps diff --git a/src/projects/bidshop/index.yaml b/src/projects/bidshop/index.yaml index c47d43dd..0aee9366 100644 --- a/src/projects/bidshop/index.yaml +++ b/src/projects/bidshop/index.yaml @@ -1,16 +1,2 @@ -name: Bidshop -usecase: [nft] -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 - blog: https://medium.com/@BIDSHOP - twitter: https://x.com/BIDSHOP_io - telegram: https://t.me/BIDSHOP_TG -have_token: true -token_link: https://etherscan.io/token/0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F -tokens: - - name: BIDSHOP - symbol: BIDS - network: Ethereum - contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F" +usecase: +- nft diff --git a/src/projects/blackbox/index.yaml b/src/projects/blackbox/index.yaml index 76a5e906..7eed242a 100644 --- a/src/projects/blackbox/index.yaml +++ b/src/projects/blackbox/index.yaml @@ -1,67 +1,2 @@ -name: Blackbox -usecase: [defi] -ecosystem: Secret -description: "Collection of tools allowing you send & receive SCRT anonymously" -project_type: DeFi -product_launch_day: "2021-15-02" -technology: - type: TEE - name: Trusted execution environment - features: - - Privacy - - Payments -links: - web: https://blackbox.cash/ - twitter: https://twitter.com/TriviumNode - telegram: https://t.me/TriviumNode - block_explorer: https://www.mintscan.io/secret - github: https://github.com/TriviumNode -blockchain_features: - p2p: false - encryption: TEE - upgradability: - enabled: false - opensource: true - viewing_key: true - dissapearing_tx: false - frontend_anonymity: options - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false - reversability_condition: hack - data_masking: SNIP-20 token/SCRT contracts - asset_custody_type: non-custody -licences: Apache License -privacy_policy: - defined: false -team: - anonymous: false - company: - name: Trivium Nodes - link: https://trivium.network/ - contacts: info@trivium.network - teammembers: - - name: Xiphiar - role: rdeveloper - link: https://github.com/Xiphiar -storage: - decentralized: true -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: true -compliance: false -social_trust: Slabs ( MRSINGER ), Contract operator ( Trivium ) -technical_spof: Can decrypt/fraud -client_diversability: - - name: Keplr - link: https://www.keplr.app/ - - name: Starshell - link: https://starshell.net/ -default_privacy: true -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- defi diff --git a/src/projects/blackhat-coin/index.yaml b/src/projects/blackhat-coin/index.yaml index 453dc422..7306fc76 100644 --- a/src/projects/blackhat-coin/index.yaml +++ b/src/projects/blackhat-coin/index.yaml @@ -1,16 +1,2 @@ -name: BlackHat Coin -usecase: [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 -links: - web: https://blackhatco.in - github: https://github.com/BlackHatCoin - block_explorer: https://explorer.blackhatco.in/ - forum: https://forum.blackhatco.in/ - whitepaper: https://blackhatco.in/resources/whitepaper.pdf?v092 - twitter: https://x.com/blkcoin - discord: https://discord.com/invite/wGvzQVfhdR - telegram: https://t.me/BlackHatCoin -team: - anonymous: true +usecase: +- currency diff --git a/src/projects/blockstream-green/index.yaml b/src/projects/blockstream-green/index.yaml index aa6cb99a..89eab459 100644 --- a/src/projects/blockstream-green/index.yaml +++ b/src/projects/blockstream-green/index.yaml @@ -1,20 +1,2 @@ -name: Blockstream Green -usecase: [wallets] -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 - docs: https://help.blockstream.com/hc/en-us/usecase/900000056183-Blockstream-Green/ - twitter: https://x.com/Blockstream -team: - anonymous: false - teammembers: - - name: Dr. Adam Back - role: CEO - link: https://blockstream.com/about/ -project_status: - live_status: true - version: 2.0.6 - testnet: false - mainnet: false +usecase: +- wallets diff --git a/src/projects/blockwallet/index.yaml b/src/projects/blockwallet/index.yaml index 3add64fa..89eab459 100644 --- a/src/projects/blockwallet/index.yaml +++ b/src/projects/blockwallet/index.yaml @@ -1,16 +1,2 @@ -name: BlockWallet -usecase: [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 -links: - web: https://blockwallet.io/ - github: https://github.com/block-wallet - docs: https://blockwallet.io/docs - blog: https://blockwallet.io/blog -team: - anonymous: false -project_status: - live_status: true - version: v.1.2.9 - testnet: false - mainnet: false +usecase: +- wallets diff --git a/src/projects/blockyfile/index.yaml b/src/projects/blockyfile/index.yaml index a53413ef..93fa3a54 100644 --- a/src/projects/blockyfile/index.yaml +++ b/src/projects/blockyfile/index.yaml @@ -1,5 +1,2 @@ -name: Blockyfile -usecase: [dapps] -description: "The new way to upload files anonymously and without censorship." -links: - web: https://blockyfile.org +usecase: +- dapps diff --git a/src/projects/bluum/index.yaml b/src/projects/bluum/index.yaml index 4dcec1a4..0aee9366 100644 --- a/src/projects/bluum/index.yaml +++ b/src/projects/bluum/index.yaml @@ -1,6 +1,2 @@ -name: Bluum -usecase: [nft] -description: "Enable confidentiality of NFT content." -links: - web: https://bluumprotocol.com - github: https://github.com/BluumProtocol +usecase: +- nft diff --git a/src/projects/bob-protocol/index.yaml b/src/projects/bob-protocol/index.yaml index c79d802f..7306fc76 100644 --- a/src/projects/bob-protocol/index.yaml +++ b/src/projects/bob-protocol/index.yaml @@ -1,15 +1,2 @@ -name: BOB Protocol -usecase: [currency] -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 - docs: https://docs.zkbob.com/ - forum: https://forum.zkbob.com/?utm_source=Twitter&utm_medium=Linktree - blog: https://blog.zkbob.com/ - twitter: https://x.com/zkBob_ - discord: https://discord.com/invite/zkbob - telegram: https://t.me/zkbobcommunity -team: - anonymous: true +usecase: +- currency diff --git a/src/projects/boltz/index.yaml b/src/projects/boltz/index.yaml index c246fcae..7306fc76 100644 --- a/src/projects/boltz/index.yaml +++ b/src/projects/boltz/index.yaml @@ -1,13 +1,2 @@ -name: Boltz -usecase: [currency] -description: "Privacy first, account-free crypto exchange" -links: - web: https://boltz.exchange - github: https://github.com/BoltzExchange/ - docs: https://docs.boltz.exchange/ - blog: https://blog.boltz.exchange/ - twitter: https://x.com/Boltzhq - discord: https://discord.com/invite/QBvZGcW - telegram: https://t.me/boltzhq -team: - anonymous: true +usecase: +- currency diff --git a/src/projects/boring-protocol/index.yaml b/src/projects/boring-protocol/index.yaml index 43757f0f..f0897aef 100644 --- a/src/projects/boring-protocol/index.yaml +++ b/src/projects/boring-protocol/index.yaml @@ -1,12 +1,2 @@ -name: Boring Protocol -usecase: [vpn] -description: "A Decentralized VPN on Solana" -ecosystem: Solana -links: - web: https://boringprotocol.io - github: https://docs.boringprotocol.io/bop/information/boring-protocol -team: - anonymous: true -have_token: true -token_link: https://coinmarketcap.com/currencies/boring-protocol/ -sunset: true +usecase: +- vpn diff --git a/src/projects/bpsaa/index.yaml b/src/projects/bpsaa/index.yaml index 4646700c..0ba2733a 100644 --- a/src/projects/bpsaa/index.yaml +++ b/src/projects/bpsaa/index.yaml @@ -1,6 +1,2 @@ -name: BPSAA -usecase: [alliances] -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 +usecase: +- alliances diff --git a/src/projects/brace/index.yaml b/src/projects/brace/index.yaml index 8a9d5e80..93fa3a54 100644 --- a/src/projects/brace/index.yaml +++ b/src/projects/brace/index.yaml @@ -1,11 +1,2 @@ -name: Brace.to usecase: - - 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." -links: - web: https://brace.to - github: https://github.com/stxapps/brace-client - blog: https://medium.com/@stxapps - twitter: https://x.com/bracedotto -project_status: - live_status: true +- dapps diff --git a/src/projects/brave-wallet/index.yaml b/src/projects/brave-wallet/index.yaml index 7e2696e8..89eab459 100644 --- a/src/projects/brave-wallet/index.yaml +++ b/src/projects/brave-wallet/index.yaml @@ -1,18 +1,2 @@ -name: Brave Wallet -usecase: [wallets] -description: "The secure multi-chain crypto wallet" -ecosystem: multichain -links: - web: https://brave.com/wallet/ - github: https://github.com/brave/brave-wallet-docs -team: - anonymous: false - teammembers: - - name: Brendan Eich - role: CEO - link: https://brave.com/about/ -project_status: - live_status: true - version: - testnet: false - mainnet: false +usecase: +- wallets diff --git a/src/projects/brave/index.yaml b/src/projects/brave/index.yaml index df359e9e..725689aa 100644 --- a/src/projects/brave/index.yaml +++ b/src/projects/brave/index.yaml @@ -1,9 +1,2 @@ -name: Brave -usecase: [browser] -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/ +usecase: +- browser diff --git a/src/projects/brightid/index.yaml b/src/projects/brightid/index.yaml index d77e9852..304e1715 100644 --- a/src/projects/brightid/index.yaml +++ b/src/projects/brightid/index.yaml @@ -1,13 +1,2 @@ -name: BrightID -usecase: [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" -links: - web: https://www.brightid.org - github: https://github.com/BrightID - whitepaper: https://www.brightid.org/whitepaper - forum: https://forum.brightid.org/ - - blog: https://brightid.mirror.xyz/ - twitter: https://x.com/BrightIDProject - discord: https://discord.com/invite/brightid-596752664906432522 -have_token: true +usecase: +- did diff --git a/src/projects/bringing-privacy-to-ens/index.yaml b/src/projects/bringing-privacy-to-ens/index.yaml index 08d21e6e..93fa3a54 100644 --- a/src/projects/bringing-privacy-to-ens/index.yaml +++ b/src/projects/bringing-privacy-to-ens/index.yaml @@ -1,6 +1,2 @@ -name: Bringing Privacy to ENS -usecase: [dapps] -description: "ChainSafe’s Proposed Integration Using Aztec Network" -links: - web: https://www.cerebrum.com - github: https://github.com/ChainSafe/ens-aztec-privacy/ +usecase: +- dapps diff --git a/src/projects/brume-wallet/index.yaml b/src/projects/brume-wallet/index.yaml index e9ad2800..89eab459 100644 --- a/src/projects/brume-wallet/index.yaml +++ b/src/projects/brume-wallet/index.yaml @@ -1,58 +1,2 @@ -name: Brume wallet -usecase: [wallets] -ecosystem: Ethereum -description: "Tor based wallet for Ethereum" -project_type: Wallets -product_launch_day: "2022-11-13" -technology: - type: Tor - name: Tor project - features: - - private - - Wallet -links: - web: https://bento.me/brume - twitter: https://twitter.com/BrumeWallet - discord: https://discord.com/invite/KVEPWfN9jK - github: https://github.com/brumewallet -blockchain_features: - p2p: true - encryption: Tor - upgradability: - enabled: true - type: centralized - opensource: true - frontend_anonymity: Tor - identity_integration: Profiles - reversability_condition: Hack, spyware - data_masking: Tor based - asset_custody_type: non-custody -privacy_policy: - defined: false -team: - anonymous: false - teammembers: - - name: Haz Æ 41 - role: developer - link: https://bento.me/hazae41 -storage: - decentralized: true -traceability: - tracked_data: no ( Tor based ) - kyc: false - sign_in_type_requirments: seed -third_party_dependency: false -compliance: compliant - -history: - title: Hackaton - event_type: Hackaton - description: Hackaton project - time: Nov 13, 2022 -default_privacy: true - -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- wallets diff --git a/src/projects/buildoor/index.yaml b/src/projects/buildoor/index.yaml index edb2581b..93fa3a54 100644 --- a/src/projects/buildoor/index.yaml +++ b/src/projects/buildoor/index.yaml @@ -1,10 +1,2 @@ -name: Buildoor -usecase: [dapps] -description: "Privacy Focused Analytics" -links: - web: https://buildoor.xyz - docs: https://docs.buildoor.xyz/untitled - - blog: https://mirror.xyz/0xA19B625EdFB67422EE984712f6DF8d3625E64e61 - twitter: https://x.com/buildoorxyz - discord: https://discord.com/invite/3hcjSGmEWD +usecase: +- dapps diff --git a/src/projects/burstiq/index.yaml b/src/projects/burstiq/index.yaml index 8e76388e..d47c626f 100644 --- a/src/projects/burstiq/index.yaml +++ b/src/projects/burstiq/index.yaml @@ -1,21 +1,2 @@ -name: burstIQ -usecase: [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 -links: - web: https://burstiq.com - twitter: https://twitter.com/BurstIQ -have_token: true -tokens: - - symbol: BIQ -project_status: - live_status: false - version: false - testnet: false - mainnet: false +usecase: +- infrastructure diff --git a/src/projects/cake-wallet/index.yaml b/src/projects/cake-wallet/index.yaml index 071a7746..89eab459 100644 --- a/src/projects/cake-wallet/index.yaml +++ b/src/projects/cake-wallet/index.yaml @@ -1,15 +1,2 @@ -name: Cake Wallet -usecase: [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 -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: - testnet: false - mainnet: false -team: - anonymous: true +usecase: +- wallets diff --git a/src/projects/calamari-network/index.yaml b/src/projects/calamari-network/index.yaml index 6c7a378b..d47c626f 100644 --- a/src/projects/calamari-network/index.yaml +++ b/src/projects/calamari-network/index.yaml @@ -1,18 +1,2 @@ -name: Calamari network usecase: - - infrastructure -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 - github: https://github.com/Manta-Network - blog: https://mantanetwork.medium.com/ -have_token: true -tokens: - - symbol: KMA -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/calimero-network/index.yaml b/src/projects/calimero-network/index.yaml index 2f168702..d47c626f 100644 --- a/src/projects/calimero-network/index.yaml +++ b/src/projects/calimero-network/index.yaml @@ -1,15 +1,2 @@ -name: Calimero network usecase: - - 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" -team: - anonymous: true -links: - web: https://www.calimero.network - blog: https://www.calimero.network/blogs - twitter: https://twitter.com/CalimeroNetwork -project_status: - live_status: false - version: false - testnet: false - mainnet: false +- infrastructure diff --git a/src/projects/calyxos/index.yaml b/src/projects/calyxos/index.yaml index 0f16d94b..c03c43b1 100644 --- a/src/projects/calyxos/index.yaml +++ b/src/projects/calyxos/index.yaml @@ -1,16 +1,2 @@ -name: CalyxOS usecase: - - os -description: "Android mobile operating system that puts privacy and security into the hands of everyday users" -team: - anonymous: true -links: - web: https://calyxos.org/ - github: https://gitlab.com/CalyxOS - docs: https://calyxos.org/docs/ - twitter: https://x.com/CalyxOS -project_status: - live_status: true - version: 5.7.1 - testnet: false - mainnet: true +- os diff --git a/src/projects/cape/index.yaml b/src/projects/cape/index.yaml index 7bcd3903..7eed242a 100644 --- a/src/projects/cape/index.yaml +++ b/src/projects/cape/index.yaml @@ -1,13 +1,2 @@ -name: CAPE -usecase: [defi] -ecosystem: Ethereum -description: "Configurable Asset Privacy for Ethereum" -links: - web: https://app.firn.cash/ - github: https://github.com/EspressoSystems/cape - docs: https://docs.espressosys.com/sequencer/espresso-sequencer-architecture/readme -project_status: - live_status: false - testnet: true -team: - anonymous: true +usecase: +- defi diff --git a/src/projects/carbon-browser/index.yaml b/src/projects/carbon-browser/index.yaml index e0240537..725689aa 100644 --- a/src/projects/carbon-browser/index.yaml +++ b/src/projects/carbon-browser/index.yaml @@ -1,10 +1,2 @@ -name: Carbon Browser usecase: - - browser -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 +- browser diff --git a/src/projects/cerebrum/index.yaml b/src/projects/cerebrum/index.yaml index c14eb86e..304e1715 100644 --- a/src/projects/cerebrum/index.yaml +++ b/src/projects/cerebrum/index.yaml @@ -1,11 +1,2 @@ -name: Cerebrum usecase: - - did -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 - - blog: https://blog.cerebrum.com/ - twitter: https://x.com/cerebruminc -have_token: true +- did diff --git a/src/projects/certup/index.yaml b/src/projects/certup/index.yaml index dc021a66..0aee9366 100644 --- a/src/projects/certup/index.yaml +++ b/src/projects/certup/index.yaml @@ -1,16 +1,2 @@ -name: certUP usecase: - - nft -description: "SecretNFT Certificates revolutionizing official document distribution, verification, and publication" -links: - web: https://certup.net - github: https://github.com/CertUP - twitter: https://x.com/cert_up - discord: https://discord.com/invite/jNZJYBDcZQ -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true -have_token: false -sunset: false +- nft diff --git a/src/projects/cheqd/index.yaml b/src/projects/cheqd/index.yaml index a016fecf..93fa3a54 100644 --- a/src/projects/cheqd/index.yaml +++ b/src/projects/cheqd/index.yaml @@ -1,14 +1,2 @@ -name: CheqD usecase: - - 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" -links: - web: https://cheqd.io - github: https://github.com/cheqd - block_explorer: https://bigdipper.live/cheqd/it - docs: https://docs.cheqd.io/identity - - blog: https://cheqd.io/blog/ - twitter: https://x.com/cheqd_io - discord: https://discord.com/invite/4VZszdE7HH - telegram: https://t.me/cheqd +- dapps diff --git a/src/projects/chimp-exchange/index.yaml b/src/projects/chimp-exchange/index.yaml index 73b8e9a8..7eed242a 100644 --- a/src/projects/chimp-exchange/index.yaml +++ b/src/projects/chimp-exchange/index.yaml @@ -1,22 +1,2 @@ -name: ChimpExchange -usecase: [defi] -ecosystem: [Ten] - -project_type: DeFi -description: "Fully encrypted DEX" - -team: - anonymous: true - -links: - web: https://ten.chimp.exchange - docs: https://docs.chimp.exchange/chimp-on-ten - twitter: https://x.com/ChimpExchange - block_explorer: https://testnet.tenscan.io - discord: https://discord.gg/TBJZzkY9aN - -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +usecase: +- defi diff --git a/src/projects/cia-protocol/index.yaml b/src/projects/cia-protocol/index.yaml index af5698c3..7eed242a 100644 --- a/src/projects/cia-protocol/index.yaml +++ b/src/projects/cia-protocol/index.yaml @@ -1,2 +1,2 @@ -name: CIA protocol -usecase: [defi] +usecase: +- defi diff --git a/src/projects/cirus-foundation/index.yaml b/src/projects/cirus-foundation/index.yaml index 41684ddc..a9a8ac96 100644 --- a/src/projects/cirus-foundation/index.yaml +++ b/src/projects/cirus-foundation/index.yaml @@ -1,9 +1,2 @@ -name: Cirus foundation usecase: - - data-management -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 +- data-management diff --git a/src/projects/cog/index.yaml b/src/projects/cog/index.yaml index dc3152c9..7306fc76 100644 --- a/src/projects/cog/index.yaml +++ b/src/projects/cog/index.yaml @@ -1,8 +1,2 @@ -name: COG usecase: - - currency -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 +- currency diff --git a/src/projects/coinbook/index.yaml b/src/projects/coinbook/index.yaml index 88594929..7eed242a 100644 --- a/src/projects/coinbook/index.yaml +++ b/src/projects/coinbook/index.yaml @@ -1,2 +1,2 @@ -name: CoinBook -usecase: [defi] +usecase: +- defi diff --git a/src/projects/coinomize/index.yaml b/src/projects/coinomize/index.yaml index 37f517ee..6c5eaddd 100644 --- a/src/projects/coinomize/index.yaml +++ b/src/projects/coinomize/index.yaml @@ -1,7 +1,2 @@ -name: Coinomize usecase: - - 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" -links: - web: https://coinomize.biz - blog: https://coinomize.biz/blog +- mixing-service diff --git a/src/projects/coinshuffle/index.yaml b/src/projects/coinshuffle/index.yaml index 314e579a..6c5eaddd 100644 --- a/src/projects/coinshuffle/index.yaml +++ b/src/projects/coinshuffle/index.yaml @@ -1,6 +1,2 @@ -name: CoinShuffle++ usecase: - - mixing-service -description: "CoinShuffle++ (CSPP) is a mixing protocol used to create Decred CoinJoin transactions" -links: - web: https://github.com/decred/cspp +- mixing-service diff --git a/src/projects/colossusxt/index.yaml b/src/projects/colossusxt/index.yaml index 590dab7e..7306fc76 100644 --- a/src/projects/colossusxt/index.yaml +++ b/src/projects/colossusxt/index.yaml @@ -1,22 +1,2 @@ -name: ColossusXT usecase: - - currency -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 - mainnet: true -links: - web: https://www.colossusxt.io - github: https://github.com/ColossusCoinXT - block_explorer: https://chainz.cryptoid.info/colx/ - whitepaper: https://www.colossusxt.io/whitepaper/ - forum: https://forum.colossusxt.io/ - blog: https://colossusxt.medium.com/ - twitter: https://x.com/ColossusCoinXT - discord: https://discord.com/invite/pRbDzPd - telegram: https://t.me/colossuscoin -team: - anonymous: false +- currency diff --git a/src/projects/comit-network/index.yaml b/src/projects/comit-network/index.yaml index bfb07631..d47c626f 100644 --- a/src/projects/comit-network/index.yaml +++ b/src/projects/comit-network/index.yaml @@ -1,15 +1,2 @@ -name: Comit Network usecase: - - 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" -team: - anonymous: true -links: - web: https://comit.network/ - github: https://github.com/comit-network - blog: https://comit.network/blog/ -project_status: - live_status: false - version: false - testnet: false - mainnet: false +- infrastructure diff --git a/src/projects/common/index.yaml b/src/projects/common/index.yaml index a270192f..7eed242a 100644 --- a/src/projects/common/index.yaml +++ b/src/projects/common/index.yaml @@ -1,2 +1,2 @@ -name: Common -usecase: [defi] +usecase: +- defi diff --git a/src/projects/conceal-network/index.yaml b/src/projects/conceal-network/index.yaml index 0aa2f77c..7eed242a 100644 --- a/src/projects/conceal-network/index.yaml +++ b/src/projects/conceal-network/index.yaml @@ -1,2 +1,2 @@ -name: Conceal Network -usecase: [defi] +usecase: +- defi diff --git a/src/projects/concordium/index.yaml b/src/projects/concordium/index.yaml index b41e64dc..d47c626f 100644 --- a/src/projects/concordium/index.yaml +++ b/src/projects/concordium/index.yaml @@ -1,25 +1,2 @@ -name: Concordium usecase: - - infrastructure -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 -links: - web: https://concordium.com - github: https://github.com/Concordium - whitepaper: https://www.concordium.com/technology#whitepapers -have_token: true -tokens: - - symbol: CCD -project_status: - live_status: true - version: false - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/cool-wallet/index.yaml b/src/projects/cool-wallet/index.yaml index 60047611..89eab459 100644 --- a/src/projects/cool-wallet/index.yaml +++ b/src/projects/cool-wallet/index.yaml @@ -1,20 +1,2 @@ -name: Cool Wallet usecase: - - wallets -description: "Non-custodial wallet" -team: - anonymous: false - teammembers: - - name: Michael Ou - role: CEO - link: https://coolbitx.com/about/ -links: - web: https://www.coolwallet.io/ - blog: https://www.coolwallet.io/blog/ - docs: https://help.coolwallet.io/en/support/solutions - twitter: https://twitter.com/coolwallet -project_status: - live_status: true - version: - testnet: false - mainnet: false +- wallets diff --git a/src/projects/crust/index.yaml b/src/projects/crust/index.yaml index 32c20550..886a0bb7 100644 --- a/src/projects/crust/index.yaml +++ b/src/projects/crust/index.yaml @@ -1,21 +1,2 @@ -name: Crust usecase: - - 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." -team: - anonymous: true -links: - web: https://crust.network - github: https://github.com/crustio - docs: https://wiki.crust.network/en - whitepaper: https://ipfs.io/ipfs/QmP9WqDYhreSuv5KJWzWVKZXJ4hc7y9fUdwC4u23SmqL6t - twitter: https://twitter.com/CrustNetwork - blog: https://medium.com/crustnetwork - discord: https://discord.com/invite/Jbw2PAUSCR - telegram: https://t.me/CrustNetwork -project_status: - live_status: true - version: Release 6 - testnet: true - mainnet: true +- storage diff --git a/src/projects/crypviser-secure-messenger/index.yaml b/src/projects/crypviser-secure-messenger/index.yaml index 24611519..f5c47f7d 100644 --- a/src/projects/crypviser-secure-messenger/index.yaml +++ b/src/projects/crypviser-secure-messenger/index.yaml @@ -1,23 +1,2 @@ -name: Crypviser Secure Messenger usecase: - - messaging -description: "The most private messaging app, based on Blockchain technology" -team: - - name: Vadim Andryan - role: Managing Director - - name: Waldemar Konradi - role: Managing Director -links: - web: https://crypviser.network/ - whitepaper: https://crypviser.network/CrypViser_Whitepaper.pdf - blog: https://crypviser.medium.com/ - twitter: https://twitter.com/crypviser - facebook: https://www.facebook.com/crypviser/ -have_token: true -tokens: - - symbol: CVT -project_status: - live_status: true - version: mainnet - testnet: false - mainnet: true +- messaging diff --git a/src/projects/cultdao/index.yaml b/src/projects/cultdao/index.yaml index b9147e53..cb24a5b1 100644 --- a/src/projects/cultdao/index.yaml +++ b/src/projects/cultdao/index.yaml @@ -1,51 +1,2 @@ -name: CULT DAO -usecase: [dao] -assets_used: [CULT] -ecosystem: [Ethereum] - -description: Investment DAO that fight against centralization and further decentralization -product_readiness: live - -have_token: true -token_link: https://etherscan.io/address/0xf0f9D895aCa5c8678f706FB8216fa22957685A13 -tokens: - - name: CULT - symbol: CULT - network: Ethereum - contract_address: "0xf0f9D895aCa5c8678f706FB8216fa22957685A13" -fee: 0.4% - -team: - anonymous: true - teammembers: - - name: Mr. O Modulus - role: Founder - link: https://x.com/MrOmodulus - - name: Artorias - role: Co-Founder - link: https://x.com/Artorias_eth - -# LINKS --------------------------------------------------------------------- -links: - web: https://cultdao.io/ - github: https://github.com/cultdao-developer/cultdao - docs: https://doc.cultdao.io/ - whitepaper: https://cultdao.io/manifesto - l2 zkevm: https://moduluszk.io/ - docs l2: https://docs.moduluszk.io/ - - changelog: https://changelog.sample-website.com - Proposals: https://app.cultdao.io/#/proposalOptions - snapshot: https://snapshot.org/#/cult-dao.eth - - blog: https://medium.com/@wearecultdao - twitter: https://x.com/wearecultdao - 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" +usecase: +- dao diff --git a/src/projects/cyclone/index.yaml b/src/projects/cyclone/index.yaml index b3e4041c..6c5eaddd 100644 --- a/src/projects/cyclone/index.yaml +++ b/src/projects/cyclone/index.yaml @@ -1,27 +1,2 @@ -name: Cyclone usecase: - - 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." -team: - anonymous: true -product_readiness: live -links: - web: https://cyclone.xyz - github: https://github.com/cycloneprotocol/cyclone-contracts - docs: https://docs.cyclone.xyz/ - forum: https://forum.cyclone.xyz/ - blog: https://cycloneprotocol.medium.com/ - twitter: https://x.com/cycloneprotocol - telegram: https://t.me/cycloneprotocol -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true -audits: - - name: Smart Contract Audit Report Cyclone Protocol v2 - link: https://4040024839-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MNeAQGL5skC11vu82Sy%2F-MVwM2h1RmXM94Ik7NAO%2F-MVwMB3sAAKGp9zma217%2FSmart%20Contract%20Audit%20Report%20-%20Cyclone%20Protocol%20v2.pdf?alt=media&token=03e492f6-bebc-4969-aff4-d0441fe662df - time: March, 2021 - - name: Smart Contract Security Audit Report - 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 +- mixing-service diff --git a/src/projects/damus/index.yaml b/src/projects/damus/index.yaml index e0e9873e..93fa3a54 100644 --- a/src/projects/damus/index.yaml +++ b/src/projects/damus/index.yaml @@ -1,9 +1,2 @@ -name: Damus usecase: - - dapps -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 +- dapps diff --git a/src/projects/dappnode/index.yaml b/src/projects/dappnode/index.yaml index 771dae6a..2fa04e73 100644 --- a/src/projects/dappnode/index.yaml +++ b/src/projects/dappnode/index.yaml @@ -1,17 +1,2 @@ -name: DappNode usecase: - - hardware -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 - docs: https://docs.dappnode.io/ - forum: https://discourse.dappnode.io/ - blog: https://medium.com/dappnode - twitter: https://x.com/DAppNode - discord: https://discord.com/invite/dappnode -team: - anonymous: false - company: - link: https://dappnode.com/pages/about +- hardware diff --git a/src/projects/darkfi/index.yaml b/src/projects/darkfi/index.yaml index 58e4cb5d..d47c626f 100644 --- a/src/projects/darkfi/index.yaml +++ b/src/projects/darkfi/index.yaml @@ -1,14 +1,2 @@ -name: DarkFi usecase: - - 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" -links: - web: https://dark.fi - github: https://github.com/darkrenaissance/darkfi - docs: https://darkrenaissance.github.io/darkfi/ - blog: https://dark.fi/insights/ -project_status: - live_status: true - version: Testnet V.1 - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/dauth-network/index.yaml b/src/projects/dauth-network/index.yaml index ec6a574c..304e1715 100644 --- a/src/projects/dauth-network/index.yaml +++ b/src/projects/dauth-network/index.yaml @@ -1,13 +1,2 @@ -name: DAuth Network usecase: - - did -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 - docs: https://openid3.gitbook.io/openid3-docs - - blog: https://dauthnetwork.medium.com/ - twitter: https://x.com/DauthNetwork - discord: https://discord.com/invite/ZJZjAAej2q -have_token: true +- did diff --git a/src/projects/decentr/index.yaml b/src/projects/decentr/index.yaml index 9bee35bc..725689aa 100644 --- a/src/projects/decentr/index.yaml +++ b/src/projects/decentr/index.yaml @@ -1,12 +1,2 @@ -name: Decentr usecase: - - 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" -links: - web: https://decentr.net - github: https://github.com/Decentr-net - whitepaper: https://decentr.net/files/Decentr_Whitepaper_V1.7.pdf - blog: https://decentrnet.medium.com/ - twitter: https://x.com/decentrnet - discord: https://discord.com/invite/VMUt7yw92B - telegram: https://t.me/DecentrNet +- browser diff --git a/src/projects/decred/index.yaml b/src/projects/decred/index.yaml index 766b1262..7306fc76 100644 --- a/src/projects/decred/index.yaml +++ b/src/projects/decred/index.yaml @@ -1,17 +1,2 @@ -name: Decred usecase: - - currency -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 - block_explorer: https://dcrdata.decred.org/ - docs: https://docs.decred.org/ - blog: https://medium.com/decred - twitter: https://x.com/decredproject - discord: https://discord.com/invite/dXSmwvYury - facebook: https://www.facebook.com/decredproject - telegram: https://t.me/Decred -team: - anonymous: false +- currency diff --git a/src/projects/deeper-network/index.yaml b/src/projects/deeper-network/index.yaml index c59d52ea..2fa04e73 100644 --- a/src/projects/deeper-network/index.yaml +++ b/src/projects/deeper-network/index.yaml @@ -1,14 +1,2 @@ -name: Deeper Network usecase: - - hardware -description: Web 3.0 infrastructure of the users, by the users, for the users. -project_status: Mainnet -links: - web: https://www.deeper.network - blog: https://shop.deeper.network/pages/blog - twitter: https://x.com/deeper_network - discord: https://discord.com/invite/EWUyAJyH2B - facebook: https://www.facebook.com/deeper.network - telegram: https://t.me/DeeperNetwork -team: - anonymous: true +- hardware diff --git a/src/projects/deeponion/index.yaml b/src/projects/deeponion/index.yaml index da3fb6e5..cd8c5b48 100644 --- a/src/projects/deeponion/index.yaml +++ b/src/projects/deeponion/index.yaml @@ -1,146 +1 @@ -#PROJECT DESCRIPTION ------------------------------------------------------------- -name: DeepOnion usecase: currency -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 - -have_token: Yes -token_link: -tokens: - - name: DeepOnion - symbol: ONION - network: DeepOnion Network - contract_address: -fee: 0.0001 ONION/kB - -team: - anonymous: Yes - 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/ - -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 - -# LINKS --------------------------------------------------------------------- -links: - web: https://deeponion.org - github: https://github.com/deeponion/deeponion/ - block_explorer: https://explorer.deeponion.org/ - forum: https://deeponion.org/community/ - whitepaper: https://deeponion.org/White-Paper.pdf - - twitter: https://twitter.com/TheDeepOnion - facebook: https://www.facebook.com/deeponionx - telegram: https://t.me/getdeeponion - cmc community: https://coinmarketcap.com/community/profile/DeepOnion/ - gettr: https://gettr.com/user/deeponion - rumble: https://rumble.com/user/DeepOnion - primal: http://primal.net/p/npub1l3h54332pdmwnvyg83fsd5g6cfsrdf75mqy3fnh8nxhls0gr2eysm5hucr - - 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 - -blockchain_features: - encryption: zksnark - opensource: Yes - identity_integration: None - p2p: Yes - 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 - version: V2.3.3 - testnet: No - mainnet: Yes - - client_diversability: - name: DeepOnion Wallet - link: https://deeponion.org/#download - -# PRIVACY --------------------------------------------------------------------- -licences: General Public License - -privacy_policy: - defined: Yes - link: https://deeponion.org/privacypolicy.html - data_usage: Not using - -traceability: - tracked_data: None - kyc: No - sign_in_type_requirements: wallet - -compliance: none - -storage: - decentralized: Yes - - # SECURITY --------------------------------------------------------------------- -third_party_dependency: None -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: diff --git a/src/projects/definer/index.yaml b/src/projects/definer/index.yaml index a31de620..7eed242a 100644 --- a/src/projects/definer/index.yaml +++ b/src/projects/definer/index.yaml @@ -1,2 +1,2 @@ -name: DeFiner -usecase: [defi] +usecase: +- defi diff --git a/src/projects/demox-labs/index.yaml b/src/projects/demox-labs/index.yaml index fa0420f8..00ad9c6b 100644 --- a/src/projects/demox-labs/index.yaml +++ b/src/projects/demox-labs/index.yaml @@ -1,13 +1,2 @@ -name: Demox labs usecase: - - rd -description: "Building privacy preserving ZK infrastructure on Aleo" -team: - anonymous: false - teammembers: - - name: Evan Marshall - role: CTO - link: https://x.com/CoralRelief -links: - web: https://www.demoxlabs.xyz - twitter: https://x.com/DemoxLabs +- rd diff --git a/src/projects/dero/index.yaml b/src/projects/dero/index.yaml index 1e2cd9b4..d47c626f 100644 --- a/src/projects/dero/index.yaml +++ b/src/projects/dero/index.yaml @@ -1,18 +1,2 @@ -name: Dero usecase: - - 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" -links: - web: https://dero.io - github: https://github.com/deroproject/derohe/ - docs: https://docs.dero.io - whitepaper: https://github.com/deroproject/documentation/blob/master/Dero_Whitepaper.pdf - twitter: https://twitter.com/deroproject -have_token: true -tokens: - - symbol: DERO -project_status: - live_status: true - version: Mainnet v1 - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/derp/index.yaml b/src/projects/derp/index.yaml index c8d7d8f9..f0b20bd4 100644 --- a/src/projects/derp/index.yaml +++ b/src/projects/derp/index.yaml @@ -1,7 +1,2 @@ -name: DERP usecase: - - 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" -links: - web: https://derp.hoprnet.org/ - github: https://github.com/hoprnet/derp +- rpc diff --git a/src/projects/discreet-labs/index.yaml b/src/projects/discreet-labs/index.yaml index 3fe756cd..00ad9c6b 100644 --- a/src/projects/discreet-labs/index.yaml +++ b/src/projects/discreet-labs/index.yaml @@ -1,16 +1,2 @@ -name: Discreet Labs usecase: - - rd -description: "Build blockchain systems for a more private, self-sovereign future on Fidora" -team: - anonymous: false - teammembers: - - name: Samuel Harrison - role: CEO - link: https://x.com/samuelpharrison - - name: Peter Abilla - role: CBO - link: https://x.com/shmula -links: - web: https://discreetlabs.io - twitter: https://x.com/discreet_labs +- rd diff --git a/src/projects/discreet/index.yaml b/src/projects/discreet/index.yaml index 298b7a48..7306fc76 100644 --- a/src/projects/discreet/index.yaml +++ b/src/projects/discreet/index.yaml @@ -1,19 +1,2 @@ -name: Discreet usecase: - - currency -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 - mainnet: false -links: - web: https://discreet.net - github: https://github.com/DiscreetNetwork - docs: https://developers.discreet.net/ - twitter: https://x.com/Discreet - discord: https://discord.com/invite/t4EnxCMb3r - telegram: https://t.me/discreetnetwork -team: - anonymous: false +- currency diff --git a/src/projects/diva/index.yaml b/src/projects/diva/index.yaml index 40ad4766..7eed242a 100644 --- a/src/projects/diva/index.yaml +++ b/src/projects/diva/index.yaml @@ -1,2 +1,2 @@ -name: Diva -usecase: [defi] +usecase: +- defi diff --git a/src/projects/divestos/index.yaml b/src/projects/divestos/index.yaml index d900e88a..c03c43b1 100644 --- a/src/projects/divestos/index.yaml +++ b/src/projects/divestos/index.yaml @@ -1,14 +1,2 @@ -name: DivestOS usecase: - - os -description: "A fork of LineageOS with monthly updates, automated CVE patchings, system WebView, and more" -team: - anonymous: true -links: - web: https://divestos.org/ - github: https://github.com/Divested-Mobile/DivestOS-Build -project_status: - live_status: true - version: 20.0 - testnet: false - mainnet: true +- os diff --git a/src/projects/djib/index.yaml b/src/projects/djib/index.yaml index c0160da1..886a0bb7 100644 --- a/src/projects/djib/index.yaml +++ b/src/projects/djib/index.yaml @@ -1,23 +1,2 @@ -name: DJIB usecase: - - storage -description: DJIB is the next generation Web3 storage -team: - anonymous: false - teammembers: - - name: Moe Sayadi - role: CEO/CTO - link: https://djuno.io/#our-team -links: - web: https://djib.io - github: https://github.com/Djib-io - docs: https://docs.djib.io/ - whitepaper: https://djib.io/assets/files/Djib-WP-v1.pdf?v=20220602 - twitter: https://twitter.com/djibchain - discord: https://discord.com/invite/PpZgKJkKpb - telegram: https://t.me/DjibTech -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- storage diff --git a/src/projects/dmail-network/index.yaml b/src/projects/dmail-network/index.yaml index 8a1adc46..304e1715 100644 --- a/src/projects/dmail-network/index.yaml +++ b/src/projects/dmail-network/index.yaml @@ -1,15 +1,2 @@ -name: Dmail Network usecase: - - did -description: Construct DID in Web3.0, Not Just an Email. -ecosystem: multichain -links: - web: https://dmail.ai - github: https://github.com/dmailofficial/dmail - docs: https://dmailnetwork.gitbook.io/dmail-network - - blog: https://blog.dmail.ai/ - twitter: https://x.com/dmailofficial?ref=blog.dmail.ai - discord: https://discord.com/invite/RyYNmdqjF9?ref=blog.dmail.ai - telegram: https://t.me/dmailofficial -have_token: true +- did diff --git a/src/projects/dragonX/index.yaml b/src/projects/dragonX/index.yaml index 0a4c7a3c..7306fc76 100644 --- a/src/projects/dragonX/index.yaml +++ b/src/projects/dragonX/index.yaml @@ -1,33 +1,2 @@ -name: DragonX usecase: - - currency -description: "a Z2Z private by default crypto + messenging" -links: - web: https://dragonx.is/ - block_explorer: https://explorer.dragonx.is/ - whitepaper: https://dragonx.is/whitepaper.pdf - twitter: https://twitter.com/DragonXchain - discord: https://discord.gg/ - telegram: https://t.me/+ISXrAVgLnXkwZmU5 -team: - anonymous: true -technology: - type: ZCash - features: - - zk-SNARKs - - RandomX proof - - Sietch -blockchain_features: - p2p: true - dissapearing_tx: true - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false -default_privacy: true -tracebility: - kyc: false -project_status: - live_status: true - testnet: false - mainnet: true +- currency diff --git a/src/projects/dusk-network/index.yaml b/src/projects/dusk-network/index.yaml index 900695de..7eed242a 100644 --- a/src/projects/dusk-network/index.yaml +++ b/src/projects/dusk-network/index.yaml @@ -1,14 +1,2 @@ -name: Dusk Network -usecase: [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." -links: - web: https://dusk.network/ - github: https://github.com/dusk-network -project_status: - live_status: false - testnet: true -team: - anonymous: false - company: - link: https://dusk.network/pages/team +usecase: +- defi diff --git a/src/projects/ecash/index.yaml b/src/projects/ecash/index.yaml index 318f59b2..7306fc76 100644 --- a/src/projects/ecash/index.yaml +++ b/src/projects/ecash/index.yaml @@ -1,14 +1,2 @@ -name: eCash usecase: - - currency -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/ - blog: https://e.cash/blog - twitter: https://x.com/ecashofficial - discord: https://discord.com/invite/ecash-official-852595915159896114 - facebook: https://www.facebook.com/ecashofficial - telegram: https://t.me/ecash -team: - anonymous: true +- currency diff --git a/src/projects/edge/index.yaml b/src/projects/edge/index.yaml index 35c07242..89eab459 100644 --- a/src/projects/edge/index.yaml +++ b/src/projects/edge/index.yaml @@ -1,22 +1,2 @@ -name: Edge usecase: - - wallets -description: "The most secure way to buy, store & trade crypto under your control" -ecosystem: multichain -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://edge.app/ - github: https://github.com/EdgeApp - whitepaper: https://edge.app/wp-content/uploads/2019/01/Edge-White-Paper-01-22-2019.pdf?af=edge-app-wp-admin-post-php&af=edge-app - docs: https://edge.app/blog/?af=edge-app - twitter: https://twitter.com/EdgeWallet -team: - anonymous: false - teammembers: - - name: Paul Puey - role: CEO - link: https://edge.app/about/ +- wallets diff --git a/src/projects/electric-coin-co/index.yaml b/src/projects/electric-coin-co/index.yaml index 211158ab..00ad9c6b 100644 --- a/src/projects/electric-coin-co/index.yaml +++ b/src/projects/electric-coin-co/index.yaml @@ -1,17 +1,2 @@ -name: Electric Coin. Co usecase: - - rd -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: - - name: Josh Swihart - role: CEO - link: https://x.com/jswihart - - name: Paul Brigner - role: VP - link: https://x.com/paulbrigner -links: - web: https://electriccoin.co/ - blog: https://electriccoin.co/blog/ - twitter: https://x.com/ElectricCoinCo +- rd diff --git a/src/projects/elite/index.yaml b/src/projects/elite/index.yaml index 3ec1141f..89eab459 100644 --- a/src/projects/elite/index.yaml +++ b/src/projects/elite/index.yaml @@ -1,14 +1,2 @@ -name: Elite usecase: - - wallets -description: Android and IOS Wallet that respects your privacy -team: - anonymous: true -links: - web: https://elitewallet.sc/ - github: https://github.com/Elite-Labs/EliteWallet -project_status: - live_status: true - version: 1.3.1 - testnet: false - mainnet: false +- wallets diff --git a/src/projects/elusiv/index.yaml b/src/projects/elusiv/index.yaml index 01cb78a9..7eed242a 100644 --- a/src/projects/elusiv/index.yaml +++ b/src/projects/elusiv/index.yaml @@ -1,18 +1,2 @@ -name: Elusiv -usecase: [defi] -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: - - zk-SNARKS -links: - web: https://elusiv.io/ - github: https://github.com/elusiv-privacy - docs: https://docs.elusiv.io/ -project_status: - live_status: true -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 +usecase: +- defi diff --git a/src/projects/email-wallet/index.yaml b/src/projects/email-wallet/index.yaml index bb7b09fe..89eab459 100644 --- a/src/projects/email-wallet/index.yaml +++ b/src/projects/email-wallet/index.yaml @@ -1,19 +1,2 @@ -name: Email Wallet usecase: - - 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 -links: - web: https://emailwallet.org/ - docs: https://zkemail.gitbook.io/zk-email/email-wallet - github: https://github.com/zkemail/email-wallet - telegram: https://t.me/zkemail -team: - anonymous: true -technology: - type: ZK -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- wallets diff --git a/src/projects/entropy1729/index.yaml b/src/projects/entropy1729/index.yaml index 60e64fa8..00ad9c6b 100644 --- a/src/projects/entropy1729/index.yaml +++ b/src/projects/entropy1729/index.yaml @@ -1,8 +1,2 @@ -name: Entropy1729 usecase: - - rd -description: Zero Knowledge Shop. -links: - web: https://www.entropy1729.com - twitter: https://x.com/1729entropy -sunset: true +- rd diff --git a/src/projects/epic-cash/index.yaml b/src/projects/epic-cash/index.yaml index c6e82a8d..7306fc76 100644 --- a/src/projects/epic-cash/index.yaml +++ b/src/projects/epic-cash/index.yaml @@ -1,15 +1,2 @@ -name: Epic Cash usecase: - - currency -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 - block_explorer: https://explorer.epiccash.com/ - whitepaper: https://epiccash.com/wp-content/uploads/2024/02/Epic-Cash-v7.1b.pdf - twitter: https://x.com/EpicCashTech - facebook: https://www.facebook.com/EpicCashTech/ - telegram: https://t.me/epiccash/ -team: - anonymous: true +- currency diff --git a/src/projects/espresso-systems/index.yaml b/src/projects/espresso-systems/index.yaml index 165fb27e..d47c626f 100644 --- a/src/projects/espresso-systems/index.yaml +++ b/src/projects/espresso-systems/index.yaml @@ -1,25 +1,2 @@ -name: Espresso Systems usecase: - - infrastructure -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 -links: - web: https://www.espressosys.com - github: https://github.com/EspressoSystems/ - whitepaper: https://github.com/EspressoSystems/HotShot/blob/main/docs/espresso-sequencer-paper.pdf - docs: https://docs.espressosys.com/ -project_status: - live_status: true - version: false - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/eth-privacy/index.yaml b/src/projects/eth-privacy/index.yaml index d825e660..d49f1924 100644 --- a/src/projects/eth-privacy/index.yaml +++ b/src/projects/eth-privacy/index.yaml @@ -1,6 +1,2 @@ -name: ETH Privacy -description: "ETH #Privacy is the hackathon around privacy, organized by the Leading Privacy Alliance of web3." -usecase: [events] -ecosystem: Ethereum -links: - web: https://www.leadingprivacy.com/istanbul +usecase: +- events diff --git a/src/projects/ethberlin/index.yaml b/src/projects/ethberlin/index.yaml index ff221e38..d49f1924 100644 --- a/src/projects/ethberlin/index.yaml +++ b/src/projects/ethberlin/index.yaml @@ -1,9 +1,2 @@ -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." -usecase: [events] -ecosystem: Ethereum -links: - web: https://ethberlin.ooo/contributors/ - github: https://github.com/ethb3rlin/4 - blog: https://blog.dod.ngo/ - twitter: https://x.com/ETHBerlin +usecase: +- events diff --git a/src/projects/ethbrno/index.yaml b/src/projects/ethbrno/index.yaml index f68d5e7f..d49f1924 100644 --- a/src/projects/ethbrno/index.yaml +++ b/src/projects/ethbrno/index.yaml @@ -1,7 +1,2 @@ -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" -usecase: [events] -ecosystem: Ethereum -links: - web: https://ethbrno.cz/ - twitter: https://twitter.com/ETHBrno +usecase: +- events diff --git a/src/projects/ethdam/index.yaml b/src/projects/ethdam/index.yaml index b0dd0f15..d49f1924 100644 --- a/src/projects/ethdam/index.yaml +++ b/src/projects/ethdam/index.yaml @@ -1,9 +1,2 @@ -name: ETHDam -description: "Ethereum-focused privacy & DeFi hackathon. " -usecase: [events] -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 +usecase: +- events diff --git a/src/projects/ethereum-portal-network/index.yaml b/src/projects/ethereum-portal-network/index.yaml index 88dc23bc..f0b20bd4 100644 --- a/src/projects/ethereum-portal-network/index.yaml +++ b/src/projects/ethereum-portal-network/index.yaml @@ -1,25 +1,2 @@ -name: Ethereum Portal Network usecase: - - rpc -description: "Decentralized P2P overlay network on top of Ethereum devp2p for serving RPC requests" -team: - anonymous: false - teammembers: - - name: Piper Merriam - role: lead res - link: https://github.com/pipermerriam - - name: Jason Carver - role: lead dev - link: https://github.com/carver/ - - name: Nick Gheorghita - role: dev - link: https://github.com/njgheorghita - - name: Kolby ML - role: dev - link: https://github.com/KolbyML -links: - web: https://www.ethportal.net/ - github: https://github.com/ethereum/portal-network-specs - blog: https://blog.ethportal.net/ - twitter: https://x.com/ethportalnet - discord: https://discord.com/invite/rHruRsbgeY +- rpc diff --git a/src/projects/ethernity-cloud/index.yaml b/src/projects/ethernity-cloud/index.yaml index ddfd632b..c6529dd0 100644 --- a/src/projects/ethernity-cloud/index.yaml +++ b/src/projects/ethernity-cloud/index.yaml @@ -1,33 +1,2 @@ -name: Ethernity cloud usecase: - - computing-network -description: "The Web3 decentralized confidential computing ecosystem" -ecosystem: Polygon -links: - web: https://ethernity.cloud/ - docs: https://docs.ethernity.cloud/ - whitepaper: https://ethernity.cloud/ethernity_whitepaper.pdf - github: https://github.com/ethernity-cloud - blog: https://blog.marlin.org/ - twitter: https://x.com/Ethernity_cloud - discord: https://discord.gg/W74JcFPGcb - telegram: https://t.me/ethernitycloud - facebook: https://www.facebook.com/Ethernity.cloud/ -team: - anonymous: false - teammembers: - - name: Keith Koo - role: Advisor - - name: Iosif Peterfi - role: Founder & CEO - - name: Ioan Munteanu - role: COO - - name: Andreas Stavropoulos - role: CTO -blockchain_features: - p2p: false - encryption: ECC -traceability: - kyc: false -storage: - decentralized: true +- computing-network diff --git a/src/projects/ethrome/index.yaml b/src/projects/ethrome/index.yaml index 2641657d..d49f1924 100644 --- a/src/projects/ethrome/index.yaml +++ b/src/projects/ethrome/index.yaml @@ -1,7 +1,2 @@ -name: ETHRome -usecase: [events] -ecosystem: Ethereum -links: - web: https://ethrome.org/ - twitter: https://x.com/ETHRome - discord: https://discord.com/invite/tr8KMmC2aF +usecase: +- events diff --git a/src/projects/evanesco/index.yaml b/src/projects/evanesco/index.yaml index 4993be16..7eed242a 100644 --- a/src/projects/evanesco/index.yaml +++ b/src/projects/evanesco/index.yaml @@ -1,11 +1,2 @@ -name: Evanesco -usecase: [defi] -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 -project_status: - live_status: true -team: - anonymous: true +usecase: +- defi diff --git a/src/projects/evolution/index.yaml b/src/projects/evolution/index.yaml index 917340b7..7306fc76 100644 --- a/src/projects/evolution/index.yaml +++ b/src/projects/evolution/index.yaml @@ -1,23 +1,2 @@ -name: Evolution usecase: - - currency -description: "A new level of your freedom. Anonymously. Secure." -ecosystem: Evolution -project_status: - live status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://evolution-network.org - 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 - telegram: https://t.me/EvoxNetwork - -team: - anonymous: true +- currency diff --git a/src/projects/fade-wtf/index.yaml b/src/projects/fade-wtf/index.yaml index eb545680..0aee9366 100644 --- a/src/projects/fade-wtf/index.yaml +++ b/src/projects/fade-wtf/index.yaml @@ -1,6 +1,2 @@ -name: Fade WTF usecase: - - nft -description: Privacy for NFTs powered by Light Protocol. -links: - web: http://mint.fade.wtf +- nft diff --git a/src/projects/fairy/index.yaml b/src/projects/fairy/index.yaml index 68aac217..7eed242a 100644 --- a/src/projects/fairy/index.yaml +++ b/src/projects/fairy/index.yaml @@ -1,2 +1,2 @@ -name: Fairy -usecase: [defi] +usecase: +- defi diff --git a/src/projects/fedi/index.yaml b/src/projects/fedi/index.yaml index d286483a..89eab459 100644 --- a/src/projects/fedi/index.yaml +++ b/src/projects/fedi/index.yaml @@ -1,18 +1,2 @@ -name: Fedi usecase: - - wallets -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 - docs: https://fedibtc.github.io/fedi-docs/ - blog: https://www.fedi.xyz/blog - twitter: https://twitter.com/fedibtc -team: - anonymous: true -project_status: - live_status: true - version: - testnet: false - mainnet: false +- wallets diff --git a/src/projects/fedimint/index.yaml b/src/projects/fedimint/index.yaml index 406fe16c..d47c626f 100644 --- a/src/projects/fedimint/index.yaml +++ b/src/projects/fedimint/index.yaml @@ -1,17 +1,2 @@ -name: Fedimint usecase: - - infrastructure -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: - web: https://fedimint.org - github: https://github.com/fedimint - docs: https://fedimint.org/docs/intro - blog: https://fedimint.org/blog - twitter: https://twitter.com/fedimint -project_status: - live_status: false - version: false - testnet: false - mainnet: false +- infrastructure diff --git a/src/projects/fileverse/index.yaml b/src/projects/fileverse/index.yaml index 971d3b3c..886a0bb7 100644 --- a/src/projects/fileverse/index.yaml +++ b/src/projects/fileverse/index.yaml @@ -1,15 +1,2 @@ -name: Fileverse usecase: - - storage -description: "On-chain people and communities deserve on-chain tools for private communication and collaboration" -team: - anonymous: true -links: - web: https://fileverse.io - github: https://github.com/fileverse - twitter: https://x.com/fileverse -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- storage diff --git a/src/projects/findora-cr/index.yaml b/src/projects/findora-cr/index.yaml index 43b162fb..304e1715 100644 --- a/src/projects/findora-cr/index.yaml +++ b/src/projects/findora-cr/index.yaml @@ -1,13 +1,2 @@ -name: Findora CR usecase: - - did -description: Enabling ZK Identity Management & CRedentials for Web3 -ecosystem: multichain -links: - web: https://findora.org/findora-cr/ - github: https://github.com/findoranetwork -team: - company: - link: https://findora.org/team/ -have_token: true -token_link: https://coinmarketcap.com/it/currencies/findora/ +- did diff --git a/src/projects/findora-platform/index.yaml b/src/projects/findora-platform/index.yaml index 58496056..c6529dd0 100644 --- a/src/projects/findora-platform/index.yaml +++ b/src/projects/findora-platform/index.yaml @@ -1,20 +1,2 @@ -name: Findora usecase: - - computing-network -description: a decentralized, privacy-preserving smart contract platform. -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://findora.org - github: https://github.com/findoranetwork -have_token: true -tokens: - - symbol: FRA -ecosystem: multichain -team: - anonymous: false - company: - link: https://findora.org/team/ +- computing-network diff --git a/src/projects/findora/index.yaml b/src/projects/findora/index.yaml index c671cf82..d47c626f 100644 --- a/src/projects/findora/index.yaml +++ b/src/projects/findora/index.yaml @@ -1,20 +1,2 @@ -name: Findora usecase: - - 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" -links: - web: https://findora.org - github: https://github.com/findoranetwork - docs: https://docs.findora.org/ - twitter: https://twitter.com/Findora - discord: https://discord.com/invite/findora - facebook: https://www.facebook.com/findoraOfficial/ - telegram: https://t.me/findoraen -have_token: true -tokens: - - symbol: FRA -project_status: - live_status: false - version: false - testnet: false - mainnet: false +- infrastructure diff --git a/src/projects/firn-protocol/index.yaml b/src/projects/firn-protocol/index.yaml index 608db832..7eed242a 100644 --- a/src/projects/firn-protocol/index.yaml +++ b/src/projects/firn-protocol/index.yaml @@ -1,78 +1,2 @@ -name: Firn Protocol -usecase: [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 - network: Optimism - contract_address: "0xb20d84ebFeCdC6821448C7094564a039F0AE5EA4" -project_type: DeFi -product_launch_day: "2021-11-06" -technology: - type: ZK - name: Zero-knowledge - features: - - privacy - - payments -links: - web: https://app.firn.cash/ - twitter: https://twitter.com/firnprotocol - discord: https://discord.com/invite/2TPJE7CMdu - whitepaper: https://firn.cash/whitepaper.pdf - github: https://github.com/firnprotocol - docs: https://docs.firn.cash/ -blockchain_features: - p2p: false - encryption: ZK - upgradability: - enabled: true - type: multisig - opensource: true - viewing_key: false - dissapearing_tx: true - frontend_anonymity: options - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false - reversability_condition: hack - data_masking: deposit - asset_custody_type: non-custody -privacy_policy: - defined: false -team: - anonymous: true -storage: - decentralized: true -traceability: - tracked_dat: non - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false -audits: - - name: BlockSec - 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: - - name: Metamask - link: https://www.metamask.io -default_privacy: true -funding: - name: LunarDAO - type: token sale - link: https://lunardao.net/firn_investment.html - value: 45.000 $ - time: Jun 1, 2023 -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- defi diff --git a/src/projects/firo/index.yaml b/src/projects/firo/index.yaml index a26a807a..7306fc76 100644 --- a/src/projects/firo/index.yaml +++ b/src/projects/firo/index.yaml @@ -1,18 +1,2 @@ -name: Firo usecase: - - currency -description: A privacy-preserving cryptocurrency and ecosystem -ecosystem: Firo -links: - web: https://firo.org - github: https://github.com/firoorg/firo - block_explorer: https://explorer.firo.org/ - forum: https://forum.firo.org/ - - blog: https://firo.org/blog/ - twitter: https://x.com/firoorg - discord: https://discord.com/invite/TGZPRbRT3Y - facebook: https://www.facebook.com/firoorg/ - telegram: https://t.me/firoorg -team: - anonymous: false +- currency diff --git a/src/projects/flock-io/index.yaml b/src/projects/flock-io/index.yaml index c1ea07c0..93fa3a54 100644 --- a/src/projects/flock-io/index.yaml +++ b/src/projects/flock-io/index.yaml @@ -1,13 +1,2 @@ -name: FLock.io usecase: - - dapps -description: A native Web3 Data Privacy solution for Artificial Intelligence. -links: - web: https://flock.io/ - github: https://github.com/flock-io - docs: https://docs.flock.io/ - - blog: https://flock-io.medium.com/ - twitter: https://x.com/flock_io - discord: https://discord.com/invite/fz5EqH7rhn - telegram: https://t.me/flock_io_community +- dapps diff --git a/src/projects/foundation/index.yaml b/src/projects/foundation/index.yaml index 4e6eb1ef..2fa04e73 100644 --- a/src/projects/foundation/index.yaml +++ b/src/projects/foundation/index.yaml @@ -1,16 +1,2 @@ -name: Foundation usecase: - - hardware -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 - docs: https://docs.foundationdevices.com/ - blog: https://foundation.xyz/blog/ - twitter: https://x.com/FOUNDATIONdvcs/ - telegram: https://t.me/foundationdevices -team: - anonymous: false - company: - link: https://foundationdevices.com/about/ +- hardware diff --git a/src/projects/fractal-id/index.yaml b/src/projects/fractal-id/index.yaml index 2b8b3bc5..304e1715 100644 --- a/src/projects/fractal-id/index.yaml +++ b/src/projects/fractal-id/index.yaml @@ -1,13 +1,2 @@ -name: Fractal ID usecase: - - 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" -links: - web: https://web.fractal.id - github: https://github.com/trustfractal - docs: https://fractal-id.gitbook.io/fractal-id - - blog: https://web.fractal.id/blog/ - twitter: https://x.com/Fractal_ID - telegram: https://t.me/Fractal_ID_Support_bot -have_token: true +- did diff --git a/src/projects/frame/index.yaml b/src/projects/frame/index.yaml index 9b656a83..89eab459 100644 --- a/src/projects/frame/index.yaml +++ b/src/projects/frame/index.yaml @@ -1,19 +1,2 @@ -name: Frame usecase: - - wallets -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/ - blog: https://blog.frame.sh/ - discord: https://discord.com/invite/rr4Yr3JkPq - github: https://github.com/floating/frame - twitter: https://x.com/0xFrame -team: - anonymous: true -project_status: - live_status: true - version: 0.6.9 - testnet: false - mainnet: false +- wallets diff --git a/src/projects/freechat/index.yaml b/src/projects/freechat/index.yaml index 971a844a..93fa3a54 100644 --- a/src/projects/freechat/index.yaml +++ b/src/projects/freechat/index.yaml @@ -1,6 +1,2 @@ -name: FreeChat usecase: - - dapps -description: Web3 Social -links: - web: https://twitter.com/Freeture_Chat +- dapps diff --git a/src/projects/fulldive/index.yaml b/src/projects/fulldive/index.yaml index 58ed43ec..725689aa 100644 --- a/src/projects/fulldive/index.yaml +++ b/src/projects/fulldive/index.yaml @@ -1,9 +1,2 @@ -name: Fulldive usecase: - - browser -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 +- browser diff --git a/src/projects/fyeo-identity/index.yaml b/src/projects/fyeo-identity/index.yaml index 262239e1..93fa3a54 100644 --- a/src/projects/fyeo-identity/index.yaml +++ b/src/projects/fyeo-identity/index.yaml @@ -1,10 +1,2 @@ -name: FYEO Identity usecase: - - dapps -description: Decentralized password management. Real-time identity monitoring. -links: - web: https://www.gofyeo.com/fyeo-identity - blog: https://www.fyeo.io/blog - twitter: https://x.com/gofyeo - discord: https://discord.com/invite/tBcAkFPb5r - telegram: https://t.me/fyeo_security +- dapps diff --git a/src/projects/geniish/index.yaml b/src/projects/geniish/index.yaml index 5b6116e3..0aee9366 100644 --- a/src/projects/geniish/index.yaml +++ b/src/projects/geniish/index.yaml @@ -1,11 +1,2 @@ -name: geniish usecase: - - nft -description: Confidential NFTs for exclusive experiences. -links: - web: https://www.geniish.io - github: https://github.com/geniish-protocol/docs - twitter: https://x.com/GeniishProtocol - discord: https://discord.com/invite/Mc6Y2jfeEv -have_token: false -sunset: false +- nft diff --git a/src/projects/ghost/index.yaml b/src/projects/ghost/index.yaml index e0e2b9c0..7306fc76 100644 --- a/src/projects/ghost/index.yaml +++ b/src/projects/ghost/index.yaml @@ -1,22 +1,2 @@ -name: Ghost usecase: - - currency -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 - mainnet: true -links: - web: https://ipfs.ghostbyjohnmcafee.com/#/ - 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 +- currency diff --git a/src/projects/gotabit/index.yaml b/src/projects/gotabit/index.yaml index afe4446c..d47c626f 100644 --- a/src/projects/gotabit/index.yaml +++ b/src/projects/gotabit/index.yaml @@ -1,17 +1,2 @@ -name: GotaBit usecase: - - infrastructure -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: - web: https://gotabit.io - github: https://github.com/gotabit - docs: https://docs.gotabit.io/ - twitter: https://twitter.com/GotaBitG -have_token: true -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/graphene-os/index.yaml b/src/projects/graphene-os/index.yaml index a5cc09f3..c03c43b1 100644 --- a/src/projects/graphene-os/index.yaml +++ b/src/projects/graphene-os/index.yaml @@ -1,19 +1,2 @@ -name: Graphene OS usecase: - - os -description: The private and secure mobile operating system with Android app compatibility -team: - anonymous: true -links: - web: https://grapheneos.org - github: https://github.com/GrapheneOS - docs: https://grapheneos.org/usage - twitter: https://x.com/GrapheneOS - forum: https://discuss.grapheneos.org/ - discord: https://discord.com/invite/grapheneos - telegram: https://t.me/GrapheneOS -project_status: - live_status: true - version: 2024051500 - testnet: false - mainnet: true +- os diff --git a/src/projects/grin/index.yaml b/src/projects/grin/index.yaml index e0cf854a..7306fc76 100644 --- a/src/projects/grin/index.yaml +++ b/src/projects/grin/index.yaml @@ -1,18 +1,2 @@ -name: GRin usecase: - - currency -description: Electronic transactions for all. Without censorship or restrictions -ecosystem: Mimblewimble -links: - web: https://grin.mw - github: https://github.com/mimblewimble/grin - docs: https://docs.grin.mw/ - forum: https://forum.grin.mw/ - whitepaper: https://download.wpsoftware.net/bitcoin/wizardry/mimblewimble.txt - - blog: https://grin.mw/blog/ - twitter: https://x.com/grin_privacy - discord: https://discord.com/invite/5p4vCQY9km - telegram: https://t.me/grinprivacy -team: - anonymous: true +- currency diff --git a/src/projects/hackers-congress-paralelni-polis/index.yaml b/src/projects/hackers-congress-paralelni-polis/index.yaml index 2ba8bd25..d49f1924 100644 --- a/src/projects/hackers-congress-paralelni-polis/index.yaml +++ b/src/projects/hackers-congress-paralelni-polis/index.yaml @@ -1,7 +1,2 @@ -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." -usecase: [events] -links: - web: https://last-shot.hcpp.cz/ - twitter: https://twitter.com/institutecrypto - telegram: https://t.me/HCCP20 +usecase: +- events diff --git a/src/projects/hana/index.yaml b/src/projects/hana/index.yaml index 3d892648..d47c626f 100644 --- a/src/projects/hana/index.yaml +++ b/src/projects/hana/index.yaml @@ -1,16 +1,2 @@ -name: Hana usecase: - - infrastructure -description: "privacy hub for all blockchains, enabling on-chain privacy on existing chains and for arbitrary assets including Bitcoin" -team: - anonymous: true -links: - web: https://hana.network - blog: https://medium.com/hananetwork - twitter: https://twitter.com/HanaNetwork -have_token: true -project_status: - live_status: false - version: false - testnet: false - mainnet: false +- infrastructure diff --git a/src/projects/hashbon-pass/index.yaml b/src/projects/hashbon-pass/index.yaml index 822aecc8..b3ff2432 100644 --- a/src/projects/hashbon-pass/index.yaml +++ b/src/projects/hashbon-pass/index.yaml @@ -1,13 +1,2 @@ -name: Hashbon Pass usecase: - - kyc -description: Tokenized All Web3 Pass to KYC while being anonymous. -team: - anonymous: false -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 - telegram: https://t.me/hashbon_chat +- kyc diff --git a/src/projects/hashcloak/index.yaml b/src/projects/hashcloak/index.yaml index faf69aef..00ad9c6b 100644 --- a/src/projects/hashcloak/index.yaml +++ b/src/projects/hashcloak/index.yaml @@ -1,15 +1,2 @@ -name: HashCloak usecase: - - rd -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 - link: https://x.com/badcryptobitch - - name: Hernan Vanegas - link: https://x.com/hdvanegasm -links: - web: https://hashcloak.com - github: https://github.com/hashcloak - twitter: https://x.com/hashcloak +- rd diff --git a/src/projects/haven-protocol/index.yaml b/src/projects/haven-protocol/index.yaml index 614461f0..d47c626f 100644 --- a/src/projects/haven-protocol/index.yaml +++ b/src/projects/haven-protocol/index.yaml @@ -1,22 +1,2 @@ -name: Haven Protocol usecase: - - infrastructure -description: "an open source, community-led network of private digital assets" -team: - anonymous: true -links: - web: https://havenprotocol.org - github: https://github.com/haven-protocol-org - whitepaper: https://havenprotocol.org/whitepaper/ - docs: https://havenprotocol.org/knowledge/ - blog: https://havenprotocol.org/category/blog/ - twitter: https://twitter.com/HavenXHV -have_token: true -tokens: - - symbol: XHV -audits: no audit reports attached - https://github.com/haven-protocol-org/security-audits/ -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/heyanon/index.yaml b/src/projects/heyanon/index.yaml index 23ca50fe..cb24a5b1 100644 --- a/src/projects/heyanon/index.yaml +++ b/src/projects/heyanon/index.yaml @@ -1,7 +1,2 @@ -name: HeyAnon usecase: - - dao -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 +- dao diff --git a/src/projects/hideyour-cash/index.yaml b/src/projects/hideyour-cash/index.yaml index 852a1735..6c5eaddd 100644 --- a/src/projects/hideyour-cash/index.yaml +++ b/src/projects/hideyour-cash/index.yaml @@ -1,8 +1,2 @@ -name: HideYour.cash usecase: - - mixing-service -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 +- mixing-service diff --git a/src/projects/highline/index.yaml b/src/projects/highline/index.yaml index a0d44b19..d47c626f 100644 --- a/src/projects/highline/index.yaml +++ b/src/projects/highline/index.yaml @@ -1,7 +1,2 @@ -name: Highline usecase: - - infrastructure -description: An execution layer for Ethereum -links: - web: https://highline.dev - github: https://highline.dev/docs/ +- infrastructure diff --git a/src/projects/hinkal/index.yaml b/src/projects/hinkal/index.yaml index 7b3c6715..7eed242a 100644 --- a/src/projects/hinkal/index.yaml +++ b/src/projects/hinkal/index.yaml @@ -1,2 +1,2 @@ -name: Hinkal -usecase: [defi] +usecase: +- defi diff --git a/src/projects/holonym-id/index.yaml b/src/projects/holonym-id/index.yaml index 883e2dcc..304e1715 100644 --- a/src/projects/holonym-id/index.yaml +++ b/src/projects/holonym-id/index.yaml @@ -1,8 +1,2 @@ -name: Holonym usecase: - - did -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 +- did diff --git a/src/projects/holonym/index.yaml b/src/projects/holonym/index.yaml index f9933c64..b3ff2432 100644 --- a/src/projects/holonym/index.yaml +++ b/src/projects/holonym/index.yaml @@ -1,13 +1,2 @@ -name: Holonym usecase: - - kyc -description: ZK-identity protocol for anonymous KYC, sybil resistance, and compliance. -team: - anonymous: true -links: - web: https://holonym.id - github: https://github.com/holonym-foundation - docs: https://docs.holonym.id/ - blog: https://medium.com/holonym - twitter: https://x.com/0xHolonym -have_token: true +- kyc diff --git a/src/projects/hopr/index.yaml b/src/projects/hopr/index.yaml index 7eac6bc9..d47c626f 100644 --- a/src/projects/hopr/index.yaml +++ b/src/projects/hopr/index.yaml @@ -1,21 +1,2 @@ -name: HOPR usecase: - - 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." -team: - - name: Dr. Sebastian Bürgel - role: President - - name: Rik Krieger - role: Co-Founder -links: - web: https://hoprnet.org/protocol - github: https://github.com/hoprnet - docs: https://docs.hoprnet.org/ -have_token: true -tokens: - - symbol: HOPR -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/hurricane-protocol/index.yaml b/src/projects/hurricane-protocol/index.yaml index a7fbf65c..7eed242a 100644 --- a/src/projects/hurricane-protocol/index.yaml +++ b/src/projects/hurricane-protocol/index.yaml @@ -1,2 +1,2 @@ -name: Hurricane Protocol -usecase: [defi] +usecase: +- defi diff --git a/src/projects/hush/index.yaml b/src/projects/hush/index.yaml index daf5aaa9..7306fc76 100644 --- a/src/projects/hush/index.yaml +++ b/src/projects/hush/index.yaml @@ -1,15 +1,2 @@ -name: Hush usecase: - - currency -description: Private cryptocurrency using zero knowledge mathematics -links: - web: https://hush.is - github: https://git.hush.is/hush - block_explorer: https://explorer.hush.is/ - whitepaper: https://git.hush.is/hush/hush-v3-whitepaper/src/branch/master/hush-v3.pdf - - blog: https://blog.hush.is/ - twitter: https://x.com/hushisprivacy - telegram: https://t.me/hushisprivacy -team: - anonymous: false +- currency diff --git a/src/projects/hushchat/index.yaml b/src/projects/hushchat/index.yaml index 0d0867b9..f5c47f7d 100644 --- a/src/projects/hushchat/index.yaml +++ b/src/projects/hushchat/index.yaml @@ -1,17 +1,2 @@ -name: HushChat usecase: - - 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" -team: - anonymous: true -links: - web: https://hush.is/ - github: https://git.hush.is/hush - docs: https://git.hush.is/hush/docs - blog: https://blog.hush.is/ - twitter: https://twitter.com/hushisprivacy -project_status: - live_status: true - version: mainnet - testnet: false - mainnet: true +- messaging diff --git a/src/projects/hypermine/index.yaml b/src/projects/hypermine/index.yaml index 910128b2..00ad9c6b 100644 --- a/src/projects/hypermine/index.yaml +++ b/src/projects/hypermine/index.yaml @@ -1,19 +1,2 @@ -name: Hypermine usecase: - - rd -description: "Smart tools and protocols for Identity, Privacy & Security, with our roots in Distributed Systems, Machine Learning & Cryptography" -team: - anonymous: false - teammembers: - - name: Vikram Anand - role: Product&Engineering - link: https://x.com/bhushan_vikram - - name: Irfan Khan - role: Business&Strategy - link: https://x.com/arcaneprojekt - - name: Vishwas Bhushan - role: Research&dev - link: https://www.linkedin.com/in/vishwas-anand-bhushan-bab55576/ -links: - web: https://hypermine.co - blog: https://hypermine.co/blog +- rd diff --git a/src/projects/hypersign/index.yaml b/src/projects/hypersign/index.yaml index 5804bf4d..304e1715 100644 --- a/src/projects/hypersign/index.yaml +++ b/src/projects/hypersign/index.yaml @@ -1,15 +1,2 @@ -name: Hypersign usecase: - - did -description: the ultimate stack for identity management -links: - web: https://hypersign.id - github: https://github.com/hypersign-protocol - block_explorer: https://explorer.hypersign.id/hypersign-prajna-testnet - docs: https://docs.hypersign.id/ - - blog: https://medium.com/@blog.hypersign - twitter: https://x.com/hypersignchain - discord: https://discord.com/invite/MMnhBYjF4N - telegram: https://t.me/hypersignchain -have_token: true +- did diff --git a/src/projects/iExec/index.yaml b/src/projects/iExec/index.yaml index a8ec45ea..dc15a100 100644 --- a/src/projects/iExec/index.yaml +++ b/src/projects/iExec/index.yaml @@ -1,23 +1,2 @@ -name: iExec -usecase: [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 +usecase: +- AI diff --git a/src/projects/icebreaker/index.yaml b/src/projects/icebreaker/index.yaml index 0e52243d..304e1715 100644 --- a/src/projects/icebreaker/index.yaml +++ b/src/projects/icebreaker/index.yaml @@ -1,13 +1,2 @@ -name: Icebreaker usecase: - - did -description: zero knowledge x self-sovereign identity -links: - web: https://www.icebreaker.xyz - docs: https://icebreakerlabs.notion.site/Icebreaker-Wiki-a2dac9feaf9740d095b58263290ead71 - - blog: https://mirror.xyz/icebreakerlabs.eth - twitter: https://x.com/icebreaker_xyz - telegram: https://t.me/+Mgo-ltakTs80MDkx - farcaster: "@icebreaker" -have_token: true +- did diff --git a/src/projects/iden3/index.yaml b/src/projects/iden3/index.yaml index 0a43c7f9..304e1715 100644 --- a/src/projects/iden3/index.yaml +++ b/src/projects/iden3/index.yaml @@ -1,14 +1,2 @@ -name: Iden3 usecase: - - 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 -links: - web: https://iden3.io - github: https://github.com/iden3 - docs: https://docs.iden3.io/ - - blog: https://blog.iden3.io/ - twitter: https://x.com/identhree - telegram: https://t.me/iden3io -have_token: true +- did diff --git a/src/projects/iexec/index.yaml b/src/projects/iexec/index.yaml index 100b5c76..d47c626f 100644 --- a/src/projects/iexec/index.yaml +++ b/src/projects/iexec/index.yaml @@ -1,14 +1,2 @@ -name: iExec usecase: - - 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. -team: - anonymous: true -links: - web: https://iex.ec - github: https://github.com/iExecBlockchainComputing - docs: https://academy.iex.ec/ - twitter: https://twitter.com/iEx_ec -have_token: true -tokens: - - symbol: RLC +- infrastructure diff --git a/src/projects/imperiume/index.yaml b/src/projects/imperiume/index.yaml index 110ce656..89eab459 100644 --- a/src/projects/imperiume/index.yaml +++ b/src/projects/imperiume/index.yaml @@ -1,8 +1,2 @@ -name: Imperiume usecase: - - wallets -description: Non-custodial wallet -links: - web: https://www.imperiume.io/wallet - -sunset: true +- wallets diff --git a/src/projects/incognet/index.yaml b/src/projects/incognet/index.yaml index f970baa3..d47c626f 100644 --- a/src/projects/incognet/index.yaml +++ b/src/projects/incognet/index.yaml @@ -1,11 +1,2 @@ -name: Incognet usecase: - - 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)" -team: - anonymous: true -links: - web: https://incognet.io/ - blog: https://blog.incognet.io/ - tor: http://incoghostm2dytlqdiaj3lmtn7x2l5gb76jhabb6ywbqhjfzcoqq6aad.onion/ - twitter: https://x.com/IncogNetLLC +- infrastructure diff --git a/src/projects/integritee/index.yaml b/src/projects/integritee/index.yaml index c0fcd4ff..d47c626f 100644 --- a/src/projects/integritee/index.yaml +++ b/src/projects/integritee/index.yaml @@ -1,21 +1,2 @@ -name: Integritee usecase: - - infrastructure -description: "Integritee is a highly scalable, privacy-enabling network in the Polkadot ecosystem with parachains on Polkadot and Kusama" -team: - anonymous: true -links: - web: https://integritee.network - github: https://github.com/integritee-network - docs: https://docs.integritee.network/ - blog: https://www.integritee.network/blog - Lightpaper: https://www.integritee.network/docs/Integritee_%20Lightpaper_2021.pdf - twitter: https://twitter.com/integri_t_e_e -have_token: true -tokens: - - symbol: TEER -project_status: - live_status: true - version: testnet - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/interep/index.yaml b/src/projects/interep/index.yaml index 8b569afb..304e1715 100644 --- a/src/projects/interep/index.yaml +++ b/src/projects/interep/index.yaml @@ -1,12 +1,2 @@ -name: Interep usecase: - - did -description: Anti-sybil as a service -links: - web: https://interep.link - github: https://github.com/interep-project - docs: https://docs.interep.link/ - - blog: https://mirror.xyz/privacy-scaling-explorations.eth/w7zCHj0xoxIfhoJIxI-ZeYIXwvNatP1t4w0TsqSIBe4 - education: https://x.com/PrivacyScaling/status/1570046655998709764 -have_token: true +- did diff --git a/src/projects/iodeos/index.yaml b/src/projects/iodeos/index.yaml index ee5fa0a5..c03c43b1 100644 --- a/src/projects/iodeos/index.yaml +++ b/src/projects/iodeos/index.yaml @@ -1,16 +1,2 @@ -name: iodéOS usecase: - - 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" -team: - anonymous: true -links: - web: https://iode.tech - github: https://gitlab.com/iode/ - blog: https://blog.iode.tech/ - twitter: https://twitter.com/iode_tech -project_status: - live_status: true - version: 5 - testnet: false - mainnet: true +- os diff --git a/src/projects/iron-fish/index.yaml b/src/projects/iron-fish/index.yaml index 758cc0a8..7306fc76 100644 --- a/src/projects/iron-fish/index.yaml +++ b/src/projects/iron-fish/index.yaml @@ -1,22 +1,2 @@ -name: Iron Fish usecase: - - currency -description: The Privacy Platform for Web3 -ecosystem: Iron Fish -project_status: - live status: true - version: testnet - testnet: true - mainnet: false -links: - web: https://ironfish.network - github: https://github.com/iron-fish - block_explorer: https://explorer.ironfish.network/ - whitepaper: https://ironfish.network/learn/whitepaper/introduction - - blog: https://ironfish.network/learn/blog - twitter: https://x.com/ironfishcrypto - discord: https://discord.com/invite/EkQkEcm8DH - telegram: https://t.me/ironfishcryptochat -team: - anonymous: false +- currency diff --git a/src/projects/jami/index.yaml b/src/projects/jami/index.yaml index 1888e592..f5c47f7d 100644 --- a/src/projects/jami/index.yaml +++ b/src/projects/jami/index.yaml @@ -1,14 +1,2 @@ -name: Jami usecase: - - messaging -description: "a free/libre, end-to-end encrypted, and private communication platform" -team: - anonymous: true -links: - web: https://jami.net/ - github: https://git.jami.net/savoirfairelinux/jami-project - docs: https://docs.jami.net/en_US/user/index.html - forum: https://forum.jami.net/ - blog: https://jami.net/tag/articles/ - twitter: https://x.com/jami_social - facebook: https://www.facebook.com/JamiCommunication +- messaging diff --git a/src/projects/joinmarket/index.yaml b/src/projects/joinmarket/index.yaml index b8329a50..6c5eaddd 100644 --- a/src/projects/joinmarket/index.yaml +++ b/src/projects/joinmarket/index.yaml @@ -1,13 +1,2 @@ -name: JoinMarket usecase: - - mixing-service -description: Decentralized bitcoin coinjoin for improving privacy and fungibility. -team: - anonymous: true -product_readiness: live -links: - web: https://joinmarket.net/ - github: https://github.com/JoinMarket-Org - docs: https://joinmarket-org.github.io/joinmarket-clientserver/ - twitter: https://twitter.com/joinmarket -sunset: true +- mixing-service diff --git a/src/projects/juno-analytics/index.yaml b/src/projects/juno-analytics/index.yaml index 618a2f6c..93fa3a54 100644 --- a/src/projects/juno-analytics/index.yaml +++ b/src/projects/juno-analytics/index.yaml @@ -1,14 +1,2 @@ -name: Juno Analytics usecase: - - dapps -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 - github: https://github.com/junobuild/juno - docs: https://juno.build/docs/intro - changelog: https://juno.build/changelog - - blog: https://juno.build/blog - twitter: https://x.com/junobuild - discord: https://discord.com/invite/wHZ57Z2RAG +- dapps diff --git a/src/projects/justnote/index.yaml b/src/projects/justnote/index.yaml index 55b771de..93fa3a54 100644 --- a/src/projects/justnote/index.yaml +++ b/src/projects/justnote/index.yaml @@ -1,11 +1,2 @@ -name: Justnote usecase: - - 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." -links: - web: https://justnote.cc - github: https://github.com/stxapps/justnote-client - blog: https://medium.com/@stxapps - twitter: https://x.com/justnotecc -project_status: - live_status: true +- dapps diff --git a/src/projects/keep/index.yaml b/src/projects/keep/index.yaml index 923ffd6e..d47c626f 100644 --- a/src/projects/keep/index.yaml +++ b/src/projects/keep/index.yaml @@ -1,10 +1,2 @@ -name: Keep usecase: - - infrastructure -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 +- infrastructure diff --git a/src/projects/kelvpn/index.yaml b/src/projects/kelvpn/index.yaml index 3be72916..f0897aef 100644 --- a/src/projects/kelvpn/index.yaml +++ b/src/projects/kelvpn/index.yaml @@ -1,21 +1,2 @@ -name: KelVPN usecase: - - vpn -description: The first ever deanon-proof VPN is now available. -ecosystem: multichain -links: - web: https://kelvpn.com - github: https://gitlab.demlabs.net/cellframe/cellframe-sdk - whitepaper: https://kelvpn.com/KelVPN-Light-paper.pdf - twitter: https://twitter.com/KelvpnNetwork - blog: https://kelvpn-network.medium.com/ - telegram: https://t.me/kelvpndev -team: - anonymous: true -have_token: true -token_link: https://coinmarketcap.com/currencies/kelvpn/ -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- vpn diff --git a/src/projects/kilt/index.yaml b/src/projects/kilt/index.yaml index 944a3226..304e1715 100644 --- a/src/projects/kilt/index.yaml +++ b/src/projects/kilt/index.yaml @@ -1,21 +1,2 @@ -name: KILT usecase: - - did -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 - block_explorer: https://spiritnet.subscan.io/ - docs: https://docs.kilt.io/#/ - whitepaper: https://www.kilt.io/protocol/whitepaper - - blog: https://kilt-protocol.medium.com/ - twitter: https://x.com/Kiltprotocol - discord: https://discord.com/invite/HztRqvzbhG - telegram: https://t.me/KILTProtocolChat -team: - company: - link: https://www.kilt.io/team -have_token: true -token_link: https://coinmarketcap.com/it/currencies/kiltprotocol/ +- did diff --git a/src/projects/krebit/index.yaml b/src/projects/krebit/index.yaml index 1822e2c0..93fa3a54 100644 --- a/src/projects/krebit/index.yaml +++ b/src/projects/krebit/index.yaml @@ -1,12 +1,2 @@ -name: Krebit usecase: - - dapps -description: Open identity verification protocol for Web3 Verifiable Credentials -links: - web: https://krebit.id - github: https://github.com/KrebitDAO - docs: https://docs.krebit.id/#/ - - blog: https://www.publish0x.com/krebit - twitter: https://x.com/KrebitID - discord: https://discord.com/invite/y7sMYVjxrd +- dapps diff --git a/src/projects/krux/index.yaml b/src/projects/krux/index.yaml index aeea9e64..89eab459 100644 --- a/src/projects/krux/index.yaml +++ b/src/projects/krux/index.yaml @@ -1,17 +1,2 @@ -name: Krux usecase: - - wallets -description: Open-source signing device firmware for Bitcoin -ecosystem: Bitcoin -links: - web: https://selfcustody.github.io/krux/ - github: https://github.com/selfcustody/krux - docs: https://selfcustody.github.io/krux/getting-started/ - twitter: https://twitter.com/selfcustodykrux -team: - anonymous: true -project_status: - live_status: true - version: 24.03.0 - testnet: false - mainnet: false +- wallets diff --git a/src/projects/kyc-not-me/index.yaml b/src/projects/kyc-not-me/index.yaml index d360b6b6..b3ff2432 100644 --- a/src/projects/kyc-not-me/index.yaml +++ b/src/projects/kyc-not-me/index.yaml @@ -1,11 +1,2 @@ -name: KYC not me usecase: - - 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)" -team: - anonymous: true -links: - web: https://kycnot.me/ - github: https://codeberg.org/pluja/kycnot.me - - twitter: https://x.com/kycnot +- kyc diff --git a/src/projects/layerx/index.yaml b/src/projects/layerx/index.yaml index f9c69c69..d47c626f 100644 --- a/src/projects/layerx/index.yaml +++ b/src/projects/layerx/index.yaml @@ -1,7 +1,2 @@ -name: LayerX usecase: - - infrastructure -description: A privacy-preserving blockchain on Substrate -links: - web: https://layerx.co.jp - github: https://github.com/LayerXcom +- infrastructure diff --git a/src/projects/leading-privacy-alliance/index.yaml b/src/projects/leading-privacy-alliance/index.yaml index 2a73d42a..0ba2733a 100644 --- a/src/projects/leading-privacy-alliance/index.yaml +++ b/src/projects/leading-privacy-alliance/index.yaml @@ -1,8 +1,2 @@ -name: Leading Privacy Alliance usecase: - - 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)" -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 +- alliances diff --git a/src/projects/legendao/index.yaml b/src/projects/legendao/index.yaml index b48c86de..0aee9366 100644 --- a/src/projects/legendao/index.yaml +++ b/src/projects/legendao/index.yaml @@ -1,15 +1,2 @@ -name: Legendao usecase: - - 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" -links: - web: https://legendao.io - blog: https://medium.com/legendao - twitter: https://x.com/LegendaoNFT - discord: https://discord.com/invite/ARgf2Qun2y -have_token: true -tokens: - - name: LegendaoToken - symbol: LGND - network: Cosmos -sunset: false +- nft diff --git a/src/projects/leo-wallet/index.yaml b/src/projects/leo-wallet/index.yaml index d4e67a7b..89eab459 100644 --- a/src/projects/leo-wallet/index.yaml +++ b/src/projects/leo-wallet/index.yaml @@ -1,22 +1,2 @@ -name: Leo wallet usecase: - - wallets -description: Safe and easy way to interact with the Aleo blockchain -ecosystem: Aleo -links: - web: https://leo.app/ - github: https://github.com/demox-labs - docs: https://docs.leo.app/ - blog: https://www.leo.app/blog - twitter: https://x.com/theLeoWallet -team: - anonymous: false - teammembers: - - name: Barron Caster - role: CEO - link: https://www.leo.app/about - project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: false +- wallets diff --git a/src/projects/light-protocol/index.yaml b/src/projects/light-protocol/index.yaml index 5caed94c..d47c626f 100644 --- a/src/projects/light-protocol/index.yaml +++ b/src/projects/light-protocol/index.yaml @@ -1,13 +1,2 @@ -name: Light Protocol usecase: - - infrastructure -description: Light is a protocol built on Solana introducing ZK compression, a new primitive that enables the secure scaling of state directly on the L1. -team: - anonymous: true -links: - web: https://www.lightprotocol.com - github: https://github.com/Lightprotocol/light-protocol - docs: https://docs.lightprotocol.com/ -have_token: true -tokens: - - symbol: LIGHT +- infrastructure diff --git a/src/projects/light-shield/index.yaml b/src/projects/light-shield/index.yaml index 8bd9eee6..7eed242a 100644 --- a/src/projects/light-shield/index.yaml +++ b/src/projects/light-shield/index.yaml @@ -1,2 +1,2 @@ -name: Light Shield -usecase: [defi] +usecase: +- defi diff --git a/src/projects/liquidfactory/index.yaml b/src/projects/liquidfactory/index.yaml index d2e2ab56..93fa3a54 100644 --- a/src/projects/liquidfactory/index.yaml +++ b/src/projects/liquidfactory/index.yaml @@ -1,6 +1,2 @@ -name: LiquidFactory usecase: - - dapps -description: Unlocks liquidity to DeFi, GameFi & NFTs. -links: - web: https://liquidfactory.io +- dapps diff --git a/src/projects/lit/index.yaml b/src/projects/lit/index.yaml index 5be1ac7f..d47c626f 100644 --- a/src/projects/lit/index.yaml +++ b/src/projects/lit/index.yaml @@ -1,27 +1,2 @@ -name: Lit usecase: - - 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 -links: - web: https://litprotocol.com - github: https://github.com/LIT-Protocol/ - docs: https://developer.litprotocol.com/ - whitepaper: https://github.com/LIT-Protocol/whitepaper?ref=spark.litprotocol.com - blog: https://spark.litprotocol.com/ - twitter: https://twitter.com/litprotocol -have_token: true -tokens: - - symbol: LIT -project_status: - live_status: true - version: Mainnet (beta v0) - testnet: true - mainnet: true -audits: - - name: 4 Audits from Oct.23 - Jan.24 - link: https://drive.google.com/drive/folders/1Rrht88iUkzpofwl1CvP9gEjqY60BKyFn?usp=drive_link&ref=spark.litprotocol.com +- infrastructure diff --git a/src/projects/litecash/index.yaml b/src/projects/litecash/index.yaml index 1813a387..7306fc76 100644 --- a/src/projects/litecash/index.yaml +++ b/src/projects/litecash/index.yaml @@ -1,15 +1,2 @@ -name: Litecash usecase: - - currency -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 - whitepaper: https://lite-cash.com/LitecashWhitepaper.pdf - - twitter: https://x.com/LitecashPR - discord: https://discord.com/invite/kga9sgg - telegram: https://t.me/litecashgroup -team: - anonymous: true +- currency diff --git a/src/projects/litentry/index.yaml b/src/projects/litentry/index.yaml index e6233bd0..304e1715 100644 --- a/src/projects/litentry/index.yaml +++ b/src/projects/litentry/index.yaml @@ -1,20 +1,2 @@ -name: Litentry usecase: - - did -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 - docs: https://docs.litentry.com/ - - blog: https://litentry.medium.com/ - twitter: https://x.com/litentry - discord: https://discord.com/invite/litentryofficial - telegram: https://t.me/litentry -team: - company: - link: >- - 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/ +- did diff --git a/src/projects/literully/index.yaml b/src/projects/literully/index.yaml index 5e4b696f..93fa3a54 100644 --- a/src/projects/literully/index.yaml +++ b/src/projects/literully/index.yaml @@ -1,8 +1,2 @@ -name: Literully usecase: - - 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" -links: - web: https://literully.com - github: https://docs.literully.com/articles/ - twitter: https://x.com/literully +- dapps diff --git a/src/projects/logion/index.yaml b/src/projects/logion/index.yaml index 668c96c9..d47c626f 100644 --- a/src/projects/logion/index.yaml +++ b/src/projects/logion/index.yaml @@ -1,13 +1,2 @@ -name: Logion usecase: - - 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" -team: - anonymous: false -links: - web: https://logion.network - github: https://github.com/logion-network - docs: https://logion-network.github.io/logion-api/ - whitepaper: https://docs.logion.network/logion-white-paper - twitter: https://twitter.com/logion_network -have_token: true +- infrastructure diff --git a/src/projects/lokinet/index.yaml b/src/projects/lokinet/index.yaml index 4711612e..f0897aef 100644 --- a/src/projects/lokinet/index.yaml +++ b/src/projects/lokinet/index.yaml @@ -1,14 +1,2 @@ -name: Lokinet usecase: - - vpn -description: A VPN tunnel that uses onion routing as the transport (build on Oxen blockchain) -ecosystem: multichain -links: - web: https://lokinet.org - github: https://github.com/oxen-io/lokinet - docs: https://docs.oxen.io/oxen-docs - twitter: https://twitter.com/Lokinet_org -team: - anonymous: true -have_token: true -token_link: https://www.coingecko.com/en/coins/oxen +- vpn diff --git a/src/projects/lunar/index.yaml b/src/projects/lunar/index.yaml index d4ccd69d..89eab459 100644 --- a/src/projects/lunar/index.yaml +++ b/src/projects/lunar/index.yaml @@ -1,18 +1,2 @@ -name: Lunar aka Brume Wallet -usecase: [wallets] -ecosystem: Ethereum -links: - web:: https://bento.me/brume - github:: https://github.com/brumewallet - twitter: https://twitter.com/BrumeWallet -project_status: - live_status: true - version: 0.5.16 - testnet: false - mainnet: false -team: - anonymous: true - teammembers: - - name: Haz Æ 41 - role: Founder - link: https://x.com/hazae41 +usecase: +- wallets diff --git a/src/projects/lunardao/index.yaml b/src/projects/lunardao/index.yaml index c35b8260..cb24a5b1 100644 --- a/src/projects/lunardao/index.yaml +++ b/src/projects/lunardao/index.yaml @@ -1,12 +1,2 @@ -name: LunarDAO usecase: - - dao -description: DAO fostering R&D and investments within Lunarpunk movement -links: - web: https://lunardao.net - github: https://github.com/lunardao - docs: https://wiki.lunardao.net/ - forum: https://forum.lunardao.net/ - blog: https://lunardao.net/blog.html - twitter: https://x.com/lunarpunksquad - telegram: https://t.me/LunarDAO_Official +- dao diff --git a/src/projects/lurch1317/index.yaml b/src/projects/lurch1317/index.yaml index 25cb51e8..f5c47f7d 100644 --- a/src/projects/lurch1317/index.yaml +++ b/src/projects/lurch1317/index.yaml @@ -1,7 +1,2 @@ -name: lurch1317 usecase: - - messaging -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 +- messaging diff --git a/src/projects/maci/index.yaml b/src/projects/maci/index.yaml index e29e8ad9..d47c626f 100644 --- a/src/projects/maci/index.yaml +++ b/src/projects/maci/index.yaml @@ -1,21 +1,2 @@ -name: MACI usecase: - - infrastructure -description: "Minimum Anti-Collusion Infrastructure (MACI) is a base layer for bribery-resistant, secure, and private digital voting" -team: - anonymous: true -links: - web: https://maci.pse.dev/ - github: https://github.com/privacy-scaling-explorations/maci - docs: https://maci.pse.dev/docs/introduction - blog: https://maci.pse.dev/blog - twitter: https://twitter.com/zkMACI -project_status: - live_status: true - version: v1.3 alpha - testnet: false - mainnet: true -audits: - - name: RMACI Security Audit - link: https://maci.pse.dev/assets/files/20240223_PSE_Audit_audit_report-a181b98b05198c102be49113c354b5f2.pdf - time: Feb., 2024 +- infrastructure diff --git a/src/projects/manta-network/index.yaml b/src/projects/manta-network/index.yaml index 879b358d..d47c626f 100644 --- a/src/projects/manta-network/index.yaml +++ b/src/projects/manta-network/index.yaml @@ -1,19 +1,2 @@ -name: Manta Network usecase: - - infrastructure -description: "the multi-modular ecosystem for zero-knowledge (ZK) applications" -team: - anonymous: true -links: - web: https://www.manta.network - github: https://github.com/manta-network - docs: https://docs.manta.network/ - twitter: https://twitter.com/mantanetwork -have_token: true -tokens: - - symbol: MANTA -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/manta-pay/index.yaml b/src/projects/manta-pay/index.yaml index 64f76298..7eed242a 100644 --- a/src/projects/manta-pay/index.yaml +++ b/src/projects/manta-pay/index.yaml @@ -1,17 +1,2 @@ -name: Manta Pay -usecase: [defi] -ecosystem: Polkadot -description: "MantaPay is coming to Calamari as the first privacy payment solution in the Kusama ecosystem." -technology: - type: zk - features: - - modular -links: - web: https://app.manta.network/dolphin/transact - github: https://github.com/Manta-Network - docs: https://docs.manta.network/docs/Introduction -project_status: - live_status: false - testnet: true -team: - anonymous: true +usecase: +- defi diff --git a/src/projects/marlin/index.yaml b/src/projects/marlin/index.yaml index 57086328..c6529dd0 100644 --- a/src/projects/marlin/index.yaml +++ b/src/projects/marlin/index.yaml @@ -1,34 +1,2 @@ -name: Marlin usecase: - - computing-network -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 - mainnet: true -links: - web: https://www.marlin.org/ - docs: https://docs.marlin.org/ - github: https://github.com/marlinprotocol - blog: https://blog.marlin.org/ - twitter: https://twitter.com/MarlinProtocol/ - discord: https://discord.gg/pdQZyyy - telegram: https://t.me/marlinprotocol - facebook: https://www.facebook.com/marlinprotocol/ -team: - anonymous: true -technology: - type: TEE, ZK - features: - - Serverless - - ZK proof marketplace -blockchain_features: - p2p: false -traceability: - kyc: false - sign_in_type_requirments: wallet -default_privacy: true -storage: - decentralized: true +- computing-network diff --git a/src/projects/mask/index.yaml b/src/projects/mask/index.yaml index 5be4d31b..93fa3a54 100644 --- a/src/projects/mask/index.yaml +++ b/src/projects/mask/index.yaml @@ -1,14 +1,2 @@ -name: Mask usecase: - - dapps -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 - forum: https://we.mask.io/ - - blog: https://news.mask.io/ - twitter: https://x.com/realMaskNetwork - discord: https://discord.com/invite/4SVXvj7 - facebook: https://www.facebook.com/masknetwork - telegram: https://t.me/maskbook_group#telegram +- dapps diff --git a/src/projects/masq/index.yaml b/src/projects/masq/index.yaml index 3a208c25..3cb39e08 100644 --- a/src/projects/masq/index.yaml +++ b/src/projects/masq/index.yaml @@ -1,84 +1,4 @@ -name: MASQ usecase: - - infrastructure - - VPN - - Browser - -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" - -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 - -team: - anonymous: true - -links: - web: https://www.masqbrowser.com/ - github: https://github.com/MASQ-Project - docs: https://docs.masq.ai/masq - blog: https://www.masqbrowser.com/blog - twitter: https://twitter.com/MASQ_ai - changelog: https://masq-network.canny.io/changelog - telegram: https://t.me/MASQ_ai - 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 - features: - - private - - encrypted - - incentivized - -blockchain_features: - opensource: true - p2p: true - asset_custody_type: Non-custodial - upgradability: - enabled: false - -project_status: - version: v0.9 - live_status: true - 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 +- infrastructure +- VPN +- Browser diff --git a/src/projects/mbuddy/index.yaml b/src/projects/mbuddy/index.yaml index a7dcfbf8..304e1715 100644 --- a/src/projects/mbuddy/index.yaml +++ b/src/projects/mbuddy/index.yaml @@ -1,15 +1,2 @@ -name: MBuddy usecase: - - did -description: Web 3.0+ identity infrastructure -ecosystem: multichain -links: - web: https://metamirror.space/ - docs: https://docs.metamirror.space/mbuddy/introduction/overview - whitepaper: https://docsend.com/view/hanw3wjgcyqsj6ht - - blog: https://medium.com/metamirror - twitter: https://x.com/Auth3MetaMirror - discord: https://discord.com/invite/jFxBtJCMAJ - telegram: https://t.me/MetaMirror -have_token: true +- did diff --git a/src/projects/meile/index.yaml b/src/projects/meile/index.yaml index ae94c62d..f0897aef 100644 --- a/src/projects/meile/index.yaml +++ b/src/projects/meile/index.yaml @@ -1,19 +1,2 @@ -name: MEILE usecase: - - vpn -description: A decentralized VPN Client utilizing the Sentinel Blockchain -ecosystem: multichain -links: - web: https://mathnodes.com/ - github: https://github.com/MathNodes - blog: https://mathnodes.medium.com/ - twitter: https://x.com/MathNodes -team: - anonymous: true -have_token: true -token_link: https://coinmarketcap.com/currencies/sentinel/ -project_status: - live_status: true - version: v1.8.0 - testnet: false - mainnet: true +- vpn diff --git a/src/projects/mejhool/index.yaml b/src/projects/mejhool/index.yaml index 7e9cf0a8..f5c47f7d 100644 --- a/src/projects/mejhool/index.yaml +++ b/src/projects/mejhool/index.yaml @@ -1,19 +1,2 @@ -name: Mejhool usecase: - - messaging -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 -links: - web: https://hzmcoin.com/mejhool/ - whitepaper: https://hzmcoin.com/wp-content/uploads/whitepaper.pdf - blog: https://hzmcoin.com/blog/ - twitter: https://x.com/Mejhool_app -have_token: true -tokens: - - symbol: HZM +- messaging diff --git a/src/projects/mel/index.yaml b/src/projects/mel/index.yaml index 5d29505c..d47c626f 100644 --- a/src/projects/mel/index.yaml +++ b/src/projects/mel/index.yaml @@ -1,15 +1,2 @@ -name: Mel usecase: - - 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" -team: - - name: Eric Tung - role: Founder CEO & CTO -links: - web: https://melproject.org/en/ - github: https://github.com/mel-project - docs: https://docs.melproject.org - forum: https://forum.melproject.org/ - yellow-paper: https://docs.themelio.org/specifications/yellow/ - Twitter: https://twitter.com/melproject_org -have_token: true +- infrastructure diff --git a/src/projects/mina/index.yaml b/src/projects/mina/index.yaml index 0750f12e..d47c626f 100644 --- a/src/projects/mina/index.yaml +++ b/src/projects/mina/index.yaml @@ -1,20 +1,2 @@ -name: Mina usecase: - - infrastructure -description: "The world’s lightest blockchain, powered by participants. Using zero knowledge technology" -team: - anonymous: true -links: - web: https://minaprotocol.com - github: https://github.com/MinaProtocol/mina - whitepaper: https://minaprotocol.com/wp-content/uploads/technicalWhitepaper.pdf - docs: https://docs.minaprotocol.com/ - twitter: https://twitter.com/minaprotocol -have_token: true -tokens: - - symbol: MINA -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/minado/index.yaml b/src/projects/minado/index.yaml index 44ad146c..6c5eaddd 100644 --- a/src/projects/minado/index.yaml +++ b/src/projects/minado/index.yaml @@ -1,7 +1,2 @@ -name: Minado usecase: - - mixing-service -description: Zk Privacy Solution on Mina Protocol. -product_readiness: sunset -links: - web: https://github.com/Nicolascoding27/Zkapp-mina-ui +- mixing-service diff --git a/src/projects/mind-network/index.yaml b/src/projects/mind-network/index.yaml index 895a86a8..d47c626f 100644 --- a/src/projects/mind-network/index.yaml +++ b/src/projects/mind-network/index.yaml @@ -1,18 +1,2 @@ -name: Mind Network usecase: - - infrastructure -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 -links: - web: https://mindnetwork.xyz - github: https://github.com/mind-network - docs: https://mind-network.gitbook.io/mindnetwork - Twitter: https://twitter.com/mindnetwork_xyz -have_token: true -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/mix-btc/index.yaml b/src/projects/mix-btc/index.yaml index d05e2d33..6c5eaddd 100644 --- a/src/projects/mix-btc/index.yaml +++ b/src/projects/mix-btc/index.yaml @@ -1,14 +1,2 @@ -name: Mix BTC usecase: - - mixing-service -description: Bitcoin mixer. -team: - anonymous: true -links: - web: https://mixbtc.online - twitter: https://x.com/mixbtc_online -project_status: - live_status: true - version: unkown - testnet: false - mainnet: false +- mixing-service diff --git a/src/projects/mobilecoin/index.yaml b/src/projects/mobilecoin/index.yaml index 0d1589b9..7306fc76 100644 --- a/src/projects/mobilecoin/index.yaml +++ b/src/projects/mobilecoin/index.yaml @@ -1,14 +1,2 @@ -name: MobileCoin usecase: - - currency -description: MobileCoin makes global payments inexpensive, secure and fast -ecosystem: mobilecoin -links: - web: https://mobilecoin.com - github: https://github.com/mobilecoinofficial - - blog: https://www.sentz.com/blog - twitter: https://x.com/mobilecoin - facebook: https://www.facebook.com/people/Sentz-App/61550924458469/ -team: - anonymous: false +- currency diff --git a/src/projects/monero-pocketnode/index.yaml b/src/projects/monero-pocketnode/index.yaml index 1916ae0e..abcb9b40 100644 --- a/src/projects/monero-pocketnode/index.yaml +++ b/src/projects/monero-pocketnode/index.yaml @@ -1,7 +1,2 @@ -name: Monero PocketNode usecase: - - node -description: A Monero node for your Android Device. -links: - web: https://github.com/CryptoGrampy/xmr-pocket-node -sunset: true +- node diff --git a/src/projects/monero/index.yaml b/src/projects/monero/index.yaml index 7834fb41..7306fc76 100644 --- a/src/projects/monero/index.yaml +++ b/src/projects/monero/index.yaml @@ -1,20 +1,2 @@ -name: Monero usecase: - - currency -description: "Private, decentralized cryptocurrency that keeps your finances confidential and secure" -ecosystem: Monero -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://www.getmonero.org - github: https://github.com/monero-ecosystem - - blog: https://www.getmonero.org/blog/ - twitter: https://x.com/monero - facebook: https://www.facebook.com/monerocurrency/ - telegram: https://t.me/monero -team: - anonymous: true +- currency diff --git a/src/projects/monerujo/index.yaml b/src/projects/monerujo/index.yaml index 86321783..89eab459 100644 --- a/src/projects/monerujo/index.yaml +++ b/src/projects/monerujo/index.yaml @@ -1,18 +1,2 @@ -name: Monerujo usecase: - - wallets -description: Android wallet for Moneto -links: - web: https://www.monerujo.io - github: https://github.com/m2049r/xmrwallet - whitepaper: https://www.monerujo.io/resources/crazy_secure_passphrase.pdf - docs: https://www.monerujo.io/resources/monerujo_manual.html -project_status: - live_status: true - version: v3.3.11 - testnet: false - mainnet: false -team: - anonymous: false - teammembers: - link: https://www.monerujo.io/team.html +- wallets diff --git a/src/projects/motherbored/index.yaml b/src/projects/motherbored/index.yaml index 22ffc79a..2fa04e73 100644 --- a/src/projects/motherbored/index.yaml +++ b/src/projects/motherbored/index.yaml @@ -1,10 +1,2 @@ -name: Motherbored usecase: - - hardware -description: "#dVPN hardware (node + SM card)" -ecosystem: Solana -links: - web: https://store.motherbored.limited - github: https://github.com/boringprotocol/motherbored -team: - anonymous: true +- hardware diff --git a/src/projects/mullvad-browser/index.yaml b/src/projects/mullvad-browser/index.yaml index d98afc2c..725689aa 100644 --- a/src/projects/mullvad-browser/index.yaml +++ b/src/projects/mullvad-browser/index.yaml @@ -1,9 +1,2 @@ -name: Mullvad Browser usecase: - - browser -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 +- browser diff --git a/src/projects/mullvad-vpn/index.yaml b/src/projects/mullvad-vpn/index.yaml index 1605d7d9..f0897aef 100644 --- a/src/projects/mullvad-vpn/index.yaml +++ b/src/projects/mullvad-vpn/index.yaml @@ -1,19 +1,2 @@ -name: Mullvad VPN usecase: - - vpn -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 - blog: https://mullvad.net/en/blog - twitter: https://www.x.com/mullvadnet -team: - anonymous: false - company: - link: https://mullvad.net/en/about -project_status: - live_status: true - version: 2024.3 - testnet: false - mainnet: false +- vpn diff --git a/src/projects/mymonero/index.yaml b/src/projects/mymonero/index.yaml index acf5e2d3..89eab459 100644 --- a/src/projects/mymonero/index.yaml +++ b/src/projects/mymonero/index.yaml @@ -1,10 +1,2 @@ -name: MyMonero usecase: - - 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 -links: - web: https://mymonero.com/ - github: https://github.com/mymonero -team: - anonymous: true +- wallets diff --git a/src/projects/mynawallet/index.yaml b/src/projects/mynawallet/index.yaml index fd1c0853..89eab459 100644 --- a/src/projects/mynawallet/index.yaml +++ b/src/projects/mynawallet/index.yaml @@ -1,18 +1,2 @@ -name: MynaWallet usecase: - - wallets -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 -links: - web: https://ethglobal.com/showcase/myna-uxzdd - github: https://github.com/MynaWallet/monorepo -team: - anonymous: true -technology: - type: ZK - features: - - ZK-identity -project_status: - live_status: false - testnet: false - mainnet: false +- wallets diff --git a/src/projects/mynode/index.yaml b/src/projects/mynode/index.yaml index 87f28d2f..abcb9b40 100644 --- a/src/projects/mynode/index.yaml +++ b/src/projects/mynode/index.yaml @@ -1,19 +1,2 @@ -name: myNode usecase: - - node -description: The easiest, most powerful way to run a Bitcoin and Lightning node. -team: - anonymous: true -links: - web: https://mynodebtc.com - github: https://github.com/mynodebtc/mynode - docs: https://mynodebtc.github.io/intro/introduction.html - twitter: https://twitter.com/mynodebtc - telegram: https://t.me/mynode_btc -project_status: - live_status: true - version: v0.3.28 - testnet: false - mainnet: true -have_token: false -sunset: false +- node diff --git a/src/projects/mysterium-vpn/index.yaml b/src/projects/mysterium-vpn/index.yaml index e9728a7e..f0897aef 100644 --- a/src/projects/mysterium-vpn/index.yaml +++ b/src/projects/mysterium-vpn/index.yaml @@ -1,16 +1,2 @@ -name: Mysterium VPN usecase: - - vpn -description: A global, distributed network powered by everyday people. -ecosystem: multichain -links: - web: https://www.mysterium.network/mysteriumvpn - github: https://github.com/mysteriumnetwork/node - docs: https://docs.mysterium.network/ - blog: https://www.mysterium.network/blog -team: - anonymous: false - company: - link: https://www.mysterium.network/team -have_token: true -token_link: https://coinmarketcap.com/currencies/mysterium/ +- vpn diff --git a/src/projects/mysterium/index.yaml b/src/projects/mysterium/index.yaml index e7506b14..d47c626f 100644 --- a/src/projects/mysterium/index.yaml +++ b/src/projects/mysterium/index.yaml @@ -1,18 +1,2 @@ -name: Mysterium usecase: - - 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 -links: - web: https://www.mysterium.network - github: https://github.com/MysteriumNetwork - docs: https://docs.mysterium.network/ - blog: https://www.mysterium.network/blog - twitter: https://twitter.com/MysteriumNet -have_token: true -tokens: - - symbol: MYST +- infrastructure diff --git a/src/projects/mystiko-network/index.yaml b/src/projects/mystiko-network/index.yaml index a781b6a8..d47c626f 100644 --- a/src/projects/mystiko-network/index.yaml +++ b/src/projects/mystiko-network/index.yaml @@ -1,17 +1,2 @@ -name: Mystiko.Network usecase: - - infrastructure -description: The Universal Web3 Zero-Knowledge Connectivity And Privacy Base Layer -team: - anonymous: true -links: - web: https://mystiko.network - github: https://github.com/mystikonetwork - docs: https://docs.mystiko.network/ - whitepaper: https://mystiko.network/whitepaper.pdf - twitter: https://twitter.com/MystikoNetwork -project_status: - live_status: true - version: Mainnet V1 - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/namada/index.yaml b/src/projects/namada/index.yaml index ae364d80..d47c626f 100644 --- a/src/projects/namada/index.yaml +++ b/src/projects/namada/index.yaml @@ -1,18 +1,2 @@ -name: Namada usecase: - - infrastructure -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 - docs: https://docs.namada.net/ - blog: https://namada.net/blog - twitter: https://twitter.com/namada -project_status: - live_status: true - version: Testnet v.034.0 - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/natix-network/index.yaml b/src/projects/natix-network/index.yaml index 3b4d446e..a9a8ac96 100644 --- a/src/projects/natix-network/index.yaml +++ b/src/projects/natix-network/index.yaml @@ -1,11 +1,2 @@ -name: NATIX Network usecase: - - data-management -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 - twitter: https://x.com/NATIXNetwork - discord: https://discord.com/invite/natixnetwork - facebook: https://www.facebook.com/NATIX.Network - telegram: https://t.me/NATIXNetwork +- data-management diff --git a/src/projects/navcoin/index.yaml b/src/projects/navcoin/index.yaml index d20ddf9b..7306fc76 100644 --- a/src/projects/navcoin/index.yaml +++ b/src/projects/navcoin/index.yaml @@ -1,22 +1,2 @@ -name: Navcoin usecase: - - currency -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 - mainnet: true -links: - web: https://navcoin.org - github: https://github.com/navcoin - block_explorer: https://explorer.navcoin.org/ - - blog: https://medium.com/nav-coin - twitter: https://x.com/navcoin - discord: https://discord.com/invite/y4Vu9jw - facebook: https://www.facebook.com/Navcoin/ - telegram: https://t.me/navcoin -team: - anonymous: true +- currency diff --git a/src/projects/nerva/index.yaml b/src/projects/nerva/index.yaml index 04009604..7306fc76 100644 --- a/src/projects/nerva/index.yaml +++ b/src/projects/nerva/index.yaml @@ -1,40 +1,2 @@ -name: Nerva usecase: - - currency -description: "Private and secure cryptocurrency" -ecosystem: Nerva -links: - web: https://nerva.one/ - docs: https://docs.nerva.one/ - github: https://github.com/nerva-project/nerva - block_explorer: https://explorer.nerva.one/ - blog: https://nerva.one/#blog - twitter: https://twitter.com/NervaCurrency - discord: https://discord.gg/ufysfvcFwe - telegram: https://t.me/NervaCrypto -team: - anonymous: true -technology: - type: Monero - features: - - Bulletproofs - - Ring signatures -blockchain_features: - p2p: true - encryption: Cryptonight - data_masking: Ring signature - viewing_key: true - dissapearing_tx: true - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false -default_privacy: true -storage: - decentralized: true -tracebility: - kyc: false -project_status: - live_status: true - testnet: false - mainnet: true +- currency diff --git a/src/projects/next-id/index.yaml b/src/projects/next-id/index.yaml index a60cc4be..304e1715 100644 --- a/src/projects/next-id/index.yaml +++ b/src/projects/next-id/index.yaml @@ -1,13 +1,2 @@ -name: Next.ID usecase: - - did -description: An open-sourced protocol that synergises your Web2 and Web3 profiles. -links: - web: https://next.id - github: https://github.com/nextdotid - docs: https://docs.next.id/ - - blog: https://medium.com/@Next.ID - twitter: https://x.com/NextDotID - telegram: https://t.me/NextDotIDofficial -have_token: true +- did diff --git a/src/projects/nft-fair/index.yaml b/src/projects/nft-fair/index.yaml index a95e2247..0aee9366 100644 --- a/src/projects/nft-fair/index.yaml +++ b/src/projects/nft-fair/index.yaml @@ -1,7 +1,2 @@ -name: NFT Fair usecase: - - nft -description: The do-good NFT launch platform. -links: - web: https://www.nftfair.app -sunset: true +- nft diff --git a/src/projects/nicenode/index.yaml b/src/projects/nicenode/index.yaml index ee96a9ab..abcb9b40 100644 --- a/src/projects/nicenode/index.yaml +++ b/src/projects/nicenode/index.yaml @@ -1,15 +1,2 @@ -name: NiceNode usecase: - - node -description: "Launcher with a simple user experience to run an Ethereum node on your computer" -team: - anonymous: true -links: - web: https://nicenode.xyz - github: https://github.com/NiceNode/nice-node - twitter: https://twitter.com/nicenodeapp -project_status: - live_status: true - version: v6.0.5.-alpha - testnet: false - mainnet: true +- node diff --git a/src/projects/nighthawk-wallet/index.yaml b/src/projects/nighthawk-wallet/index.yaml index 98ee6bbe..89eab459 100644 --- a/src/projects/nighthawk-wallet/index.yaml +++ b/src/projects/nighthawk-wallet/index.yaml @@ -1,16 +1,2 @@ -name: Nighthawk Wallet usecase: - - wallets -description: Private Money in your pocket. -ecosystem: Zcash -links: - web: https://nighthawkwallet.com/ - github: https://github.com/nighthawk-apps - twitter: https://twitter.com/NighthawkWallet -team: - anonymous: true -project_status: - live_status: true - version: v2.2.14 - testnet: false - mainnet: false +- wallets diff --git a/src/projects/nil-foundation/index.yaml b/src/projects/nil-foundation/index.yaml index cc058995..00ad9c6b 100644 --- a/src/projects/nil-foundation/index.yaml +++ b/src/projects/nil-foundation/index.yaml @@ -1,12 +1,2 @@ -name: "=nil; Foundation" usecase: - - rd -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 - docs: https://docs.nil.foundation/ - blog: https://nil.foundation/blog - twitter: https://x.com/nil_foundation - discord: https://discord.com/invite/KmTAEjbmM3 - telegram: https://t.me/nilfoundation +- rd diff --git a/src/projects/nillion/index.yaml b/src/projects/nillion/index.yaml index 22b62458..c6529dd0 100644 --- a/src/projects/nillion/index.yaml +++ b/src/projects/nillion/index.yaml @@ -1,16 +1,2 @@ -name: Nillion usecase: - - computing-network -description: "The Secure Processing Layer of Web3" -ecosystem: multichain -links: - web: https://www.nillion.com - github: https://github.com/NillionNetwork - docs: https://docs.nillion.com/ - twitter: https://x.com/nillionnetwork - discord: https://discord.com/invite/nillionnetwork - telegram: https://t.me/nillionnetwork -team: - anonymous: false - company: - link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU +- computing-network diff --git a/src/projects/nix-bitcoin/index.yaml b/src/projects/nix-bitcoin/index.yaml index 319b4ca8..c03c43b1 100644 --- a/src/projects/nix-bitcoin/index.yaml +++ b/src/projects/nix-bitcoin/index.yaml @@ -1,13 +1,2 @@ -name: nix-bitcoin usecase: - - os -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 - twitter: https://x.com/nixbitcoinorg -project_status: - live_status: true - version: 0.0.108 - testnet: false - mainnet: true +- os diff --git a/src/projects/njalla/index.yaml b/src/projects/njalla/index.yaml index 244f510a..d47c626f 100644 --- a/src/projects/njalla/index.yaml +++ b/src/projects/njalla/index.yaml @@ -1,9 +1,2 @@ -name: Njalla usecase: - - infrastructure -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/ +- infrastructure diff --git a/src/projects/no-trust-verify/index.yaml b/src/projects/no-trust-verify/index.yaml index 123cd526..00ad9c6b 100644 --- a/src/projects/no-trust-verify/index.yaml +++ b/src/projects/no-trust-verify/index.yaml @@ -1,19 +1,2 @@ -name: No Trust Verify usecase: - - rd -description: Take place to the next generation of privacy infrastructure. -team: - anonymous: false - teammembers: - - name: cgi-bin - link: https://github.com/sven-hash/ - - name: Oheka - link: https://github.com/Oheka - - name: Amadeous - link: https://github.com/amadeous -links: - web: https://nym.notrustverify.ch - github: https://github.com/notrustverify - blog: https://blog.notrustverify.ch/ - twitter: https://x.com/notrustverif - telegram: https://t.me/notrustverify +- rd diff --git a/src/projects/nocturne/index.yaml b/src/projects/nocturne/index.yaml index 2e125e45..93fa3a54 100644 --- a/src/projects/nocturne/index.yaml +++ b/src/projects/nocturne/index.yaml @@ -1,12 +1,2 @@ -name: Nocturne usecase: - - dapps -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 +- dapps diff --git a/src/projects/nodl-dojo/index.yaml b/src/projects/nodl-dojo/index.yaml index dcfc4dcd..abcb9b40 100644 --- a/src/projects/nodl-dojo/index.yaml +++ b/src/projects/nodl-dojo/index.yaml @@ -1,13 +1,2 @@ -name: nodl Dojo usecase: - - node -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 +- node diff --git a/src/projects/nodl-one/index.yaml b/src/projects/nodl-one/index.yaml index d80f28ea..abcb9b40 100644 --- a/src/projects/nodl-one/index.yaml +++ b/src/projects/nodl-one/index.yaml @@ -1,6 +1,2 @@ -name: nodl One usecase: - - node -description: A full Bitcoin and Lightning Network node. -links: - web: https://www.nodl.eu/products/nodl-one/ +- node diff --git a/src/projects/nomos/index.yaml b/src/projects/nomos/index.yaml index 197dfef3..d47c626f 100644 --- a/src/projects/nomos/index.yaml +++ b/src/projects/nomos/index.yaml @@ -1,17 +1,2 @@ -name: Nomos usecase: - - infrastructure -description: "Nomos is a novel blockchain project that will address a network states fundamental need for adaptable privacy and sovereignty" -team: - anonymous: true -links: - web: http://nomos.tech - github: https://github.com/logos-co/nomos-node - blog: https://blog.nomos.tech/ - twitter: https://twitter.com/Nomos_tech -have_token: true -project_status: - live_status: false - version: false - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/nonkyc/index.yaml b/src/projects/nonkyc/index.yaml index 27a8469b..7eed242a 100644 --- a/src/projects/nonkyc/index.yaml +++ b/src/projects/nonkyc/index.yaml @@ -1,2 +1,2 @@ -name: NonKYC -usecase: [defi] +usecase: +- defi diff --git a/src/projects/notebook-labs/index.yaml b/src/projects/notebook-labs/index.yaml index a99eba4d..b3ff2432 100644 --- a/src/projects/notebook-labs/index.yaml +++ b/src/projects/notebook-labs/index.yaml @@ -1,11 +1,2 @@ -name: Notebook labs usecase: - - 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" -team: - anonymous: true -links: - web: https://www.notebooklabs.xyz - docs: https://notebook-6.gitbook.io/notebook-docs/guides/for-authentication - blog: https://medium.com/@notebook_labs - twitter: https://twitter.com/ZephyrExchange +- kyc diff --git a/src/projects/nucypher/index.yaml b/src/projects/nucypher/index.yaml index c7e4cb03..d47c626f 100644 --- a/src/projects/nucypher/index.yaml +++ b/src/projects/nucypher/index.yaml @@ -1,32 +1,2 @@ -name: Threshold usecase: - - 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" -team: - anonymous: true -links: - web: https://threshold.network/ - github: https://github.com/threshold-network - docs: https://docs.threshold.network/ - blog: https://blog.threshold.network/ -have_token: true -tokens: - - symbol: T -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true -audits: - - name: Least Authority - Solana Smart Contracts Audit Report - link: https://leastauthority.com/blog/audits/audit-of-keep-network-solana-smart-contracts/ - time: September, 2023 - - name: Least Authority - tBTC Bridge v2 Security Audit Report - link: https://leastauthority.com/blog/audits/audit-of-keep-network-tbtc-bridge-v2/ - time: October, 2022 - - name: CertiK - Vending Machine Security Audit Report - link: https://skynet.certik.com/projects/threshold-network - time: November, 2021 - - name: ChainSecurity - Staking Contract, T Token, Vending Machine Security Audit Report - link: https://chainsecurity.com/security-audit/threshold-network/ - time: November, 2021 +- infrastructure diff --git a/src/projects/nulink/index.yaml b/src/projects/nulink/index.yaml index 17a78701..d47c626f 100644 --- a/src/projects/nulink/index.yaml +++ b/src/projects/nulink/index.yaml @@ -1,21 +1,2 @@ -name: Nulink usecase: - - infrastructure -description: ZK Provable Data Privacy Solution for Decentralized Applications -team: - anonymous: true -links: - web: https://www.nulink.org - github: https://github.com/NuLink-network - docs: https://www.nulink.org/whitepaper-2-0 - whitepaper: https://www.nulink.org/whitepaper-2-0 - blog: https://www.nulink.org/blog - twitter: https://twitter.com/NuLink_ -have_token: true -tokens: - - symbol: NLINK -project_status: - live_status: true - version: Testnet Horus2.0 - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/nym/index.yaml b/src/projects/nym/index.yaml index 62e557bd..d47c626f 100644 --- a/src/projects/nym/index.yaml +++ b/src/projects/nym/index.yaml @@ -1,29 +1,2 @@ -name: NYM usecase: - - 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 -links: - web: https://nymtech.net - github: https://github.com/nymtech - whitepapers: https://nymtech.net/learn/papers - docs: https://nymtech.net/docs - blog: https://blog.nymtech.net/ -have_token: true -tokens: - - symbol: NYM -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/oasiis-insights/index.yaml b/src/projects/oasiis-insights/index.yaml index 798b5311..a9a8ac96 100644 --- a/src/projects/oasiis-insights/index.yaml +++ b/src/projects/oasiis-insights/index.yaml @@ -1,6 +1,2 @@ -name: Oasiis insights usecase: - - data-management -description: Personalized web3 journeys are finally here. -links: - web: https://www.oasiisinsights.com +- data-management diff --git a/src/projects/oasis-network/index.yaml b/src/projects/oasis-network/index.yaml index 4dc62711..d47c626f 100644 --- a/src/projects/oasis-network/index.yaml +++ b/src/projects/oasis-network/index.yaml @@ -1,60 +1,2 @@ -name: Oasis Network usecase: - - infrastructure - -project_type: Confidential compute -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 - docs: https://docs.oasis.io/ - blog: https://oasisprotocol.org/blog - twitter: https://twitter.com/OasisProtocol - discord: https://discord.com/invite/BQCxwhT5wS - telegram: http://t.me/oasisprotocolcommunity - youtube: https://www.youtube.com/@OasisFoundation - reddit: https://www.reddit.com/r/oasisnetwork/ - whitepaper: https://docsend.com/view/aq86q2pckrut2yvq - forum: https://forum.oasis.io/ - linkedin: https://www.linkedin.com/company/oasisprotocol/ - block_explorer: https://www.oasisscan.com/ - facebook: https://www.facebook.com/oasisprotocol - -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true - -have_token: true -tokens: - - symbol: ROSE - - name: Wrapped ROSE - symbol: wROSE - network: BSC - contract_address: "0xF00600eBC7633462BC4F9C61eA2cE99F5AAEBd4a" - - name: Wrapped ROSE (Wormhole) - 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 - -technology: - type: TEE - features: - - Data Privacy - - Tokenized Data - - Confidential compute -blockchain_features: - encryption: TEE +- infrastructure diff --git a/src/projects/obscuro/index.yaml b/src/projects/obscuro/index.yaml index 854caf06..f8ecdede 100644 --- a/src/projects/obscuro/index.yaml +++ b/src/projects/obscuro/index.yaml @@ -1,22 +1,2 @@ -name: TEN (formerly Obscuro) usecase: - - layer-2 -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 - -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- layer-2 diff --git a/src/projects/octra/index.yaml b/src/projects/octra/index.yaml index 499478b7..04f0fefd 100644 --- a/src/projects/octra/index.yaml +++ b/src/projects/octra/index.yaml @@ -1,10 +1,2 @@ -name: "Octra" -usecase: [FHE] -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/ - twitter: https://x.com/octra - discord: https://discord.com/invite/m724x5Ne2F - telegram: https://t.me/octranetwork +usecase: +- FHE diff --git a/src/projects/offshift/index.yaml b/src/projects/offshift/index.yaml index b6d02b48..7eed242a 100644 --- a/src/projects/offshift/index.yaml +++ b/src/projects/offshift/index.yaml @@ -1,14 +1,2 @@ -name: Offshift -usecase: [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" -links: - web: https://www.offshift.io/ - github: https://open.offshift.io/offshiftXFT - docs: https://docs.elusiv.io/ -project_status: - live_status: true -team: - anonymous: true - company: - link: https://offshift.io/#team +usecase: +- defi diff --git a/src/projects/oksign/index.yaml b/src/projects/oksign/index.yaml index 98cf04d3..93fa3a54 100644 --- a/src/projects/oksign/index.yaml +++ b/src/projects/oksign/index.yaml @@ -1,7 +1,2 @@ -name: okSign usecase: - - dapps -description: Create, Sign, and Save eSignatures with smart contracts and permissioned NFTs. -links: - web: https://www.oksign.app - twitter: https://x.com/okSign_ +- dapps diff --git a/src/projects/ola/index.yaml b/src/projects/ola/index.yaml index d8dd2964..f8ecdede 100644 --- a/src/projects/ola/index.yaml +++ b/src/projects/ola/index.yaml @@ -1,20 +1,2 @@ -name: OLA usecase: - - layer-2 -description: ZK-ZKVM Bringing Programmable Privacy to Blockchains -team: - anonymous: false -links: - web: https://olavm.org/ - github: https://github.com/Sin7Y - blog: https://medium.com/@ola_zkzkvm - docs: https://ola-2.gitbook.io/ola-developer-documents - whitepaper: https://github.com/Sin7Y/olavm-whitepaper-v2/blob/master/Ola%20-%20A%20ZKVM-based%2C%20High-performance%2C%20and%20Privacy-focused%20Layer2%20platform.pdf - twitter: https://twitter.com/ola_zkzkvm - discord: https://discord.com/invite/Bk3dNHWt2n - telegram: https://t.me/sin7y_labs -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- layer-2 diff --git a/src/projects/omnia/index.yaml b/src/projects/omnia/index.yaml index f5701e1c..d47c626f 100644 --- a/src/projects/omnia/index.yaml +++ b/src/projects/omnia/index.yaml @@ -1,26 +1,2 @@ -name: Omnia usecase: - - 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 -links: - web: https://omniatech.io - github: https://github.com/omniaprotocol - docs: https://docs.omniatech.io/ - twitter: https://twitter.com/omnia_protocol -have_token: true -tokens: - - symbol: OMNIA -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -audits: - - 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 +- infrastructure diff --git a/src/projects/onino/index.yaml b/src/projects/onino/index.yaml index 422dee8f..d47c626f 100644 --- a/src/projects/onino/index.yaml +++ b/src/projects/onino/index.yaml @@ -1,9 +1,2 @@ -name: Onino usecase: - - infrastructure -description: A Public Blockchain Delivering Privacy, On-Chain Identity, and Scalability -links: - web: https://www.onino.io -have_token: true -tokens: - - symbol: ONI +- infrastructure diff --git a/src/projects/onion-mixer/index.yaml b/src/projects/onion-mixer/index.yaml index ea4e7c09..6c5eaddd 100644 --- a/src/projects/onion-mixer/index.yaml +++ b/src/projects/onion-mixer/index.yaml @@ -1,7 +1,2 @@ -name: Onion Mixer usecase: - - mixing-service -description: "Onion Mixer is the first decentralized protocol for anonymous cross-chain transactions" -links: - web: https://onionmixer.gitbook.io/onion-mixer/ -sunset: true +- mixing-service diff --git a/src/projects/onionclub/index.yaml b/src/projects/onionclub/index.yaml index 012fb206..f5c47f7d 100644 --- a/src/projects/onionclub/index.yaml +++ b/src/projects/onionclub/index.yaml @@ -1,6 +1,2 @@ -name: Onionclub usecase: - - messaging -description: Blockchain-based, business & social platform. -links: - web: https://onionclub.io +- messaging diff --git a/src/projects/ont-id/index.yaml b/src/projects/ont-id/index.yaml index 504e1c74..304e1715 100644 --- a/src/projects/ont-id/index.yaml +++ b/src/projects/ont-id/index.yaml @@ -1,15 +1,2 @@ -name: ONT ID usecase: - - did -description: Bringing trustless identity to Web3 manage your data with ONT ID -links: - web: https://ont.id - github: https://github.com/ont-id/ - docs: https://docs.ont.io/decentralized-identity-and-data/ontid - - blog: https://medium.com/@theontologyteam - twitter: https://x.com/OntologyNetwork - discord: https://discord.com/invite/4SrrJy2zHe - facebook: https://www.facebook.com/ONTnetwork/ - telegram: https://t.me/OntologyAnnouncements -have_token: true +- did diff --git a/src/projects/oort/index.yaml b/src/projects/oort/index.yaml index 3f034ced..886a0bb7 100644 --- a/src/projects/oort/index.yaml +++ b/src/projects/oort/index.yaml @@ -1,20 +1,2 @@ -name: Oort usecase: - - storage -description: "A decentralized data cloud platform designed to maximize privacy and cost savings by integrating global compute and storage resources" -team: - anonymous: true -links: - web: https://www.oortech.com - github: https://github.com/oort-tech - whitepaper: https://oort-website.standard.us-east-1.oortech.com/OORT_light_paper-122923.pdf - docs: https://docs.oortech.com/oort - blog: https://www.oortech.com/blogs - twitter: https://twitter.com/oortech - discrord: https://discord.com/invite/oort-decentralized-ai - telegram: https://t.me/oortech_announcements -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- storage diff --git a/src/projects/opera-crypto-browser/index.yaml b/src/projects/opera-crypto-browser/index.yaml index 3cd91b55..725689aa 100644 --- a/src/projects/opera-crypto-browser/index.yaml +++ b/src/projects/opera-crypto-browser/index.yaml @@ -1,10 +1,2 @@ -name: Opera Crypto Browser usecase: - - 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" -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/ +- browser diff --git a/src/projects/orbis/index.yaml b/src/projects/orbis/index.yaml index a28af3d7..d47c626f 100644 --- a/src/projects/orbis/index.yaml +++ b/src/projects/orbis/index.yaml @@ -1,10 +1,2 @@ -name: Orbis usecase: - - infrastructure -description: We make it easy to add social features to your application -links: - web: https://orbis.club - github: https://github.com/OrbisWeb3/ -have_token: true -tokens: - - symbol: OBT +- infrastructure diff --git a/src/projects/orchid/index.yaml b/src/projects/orchid/index.yaml index c16a6f0e..f0897aef 100644 --- a/src/projects/orchid/index.yaml +++ b/src/projects/orchid/index.yaml @@ -1,20 +1,2 @@ -name: Orchid usecase: - - vpn -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 - whitepaper: https://www.orchid.com/whitepaper/english.pdf - docs: https://docs.orchid.com/en/latest/ - blog: https://blog.orchid.com/ - twitter: https://x.com/OrchidProtocol - discord: https://discord.com/invite/GDbxmjxX9F - facebook: https://www.facebook.com/OrchidProtocol -team: - anonymous: false - company: - 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/ +- vpn diff --git a/src/projects/outdid/index.yaml b/src/projects/outdid/index.yaml index ed1f7857..b3ff2432 100644 --- a/src/projects/outdid/index.yaml +++ b/src/projects/outdid/index.yaml @@ -1,10 +1,2 @@ -name: OutDID usecase: - - kyc -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 +- kyc diff --git a/src/projects/oxen/index.yaml b/src/projects/oxen/index.yaml index 89c196ab..7306fc76 100644 --- a/src/projects/oxen/index.yaml +++ b/src/projects/oxen/index.yaml @@ -1,21 +1,2 @@ -name: Oxen usecase: - - currency -description: A cryptocurrency powering a new class of interconnected privacy apps -ecosystem: 0xen -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://oxen.io - github: https://github.com/oxen-io - block_explorer: https://oxen.observer/ - docs: https://docs.oxen.io/oxen-docs - - blog: https://oxen.io/blog/1 - twitter: https://x.com/Oxen_io - telegram: https://t.me/Oxen_Community -team: - anonymous: true +- currency diff --git a/src/projects/p0tion/index.yaml b/src/projects/p0tion/index.yaml index 6235fc4d..e5c8586f 100644 --- a/src/projects/p0tion/index.yaml +++ b/src/projects/p0tion/index.yaml @@ -1,10 +1 @@ -name: p0tion usecase: infrastructure -description: "Toolkit for Groth16 Phase 2 Trusted Setup ceremonies." -project_status: - live_status: true -team: - anonymous: true -links: - web: https://ceremony.pse.dev/ - github: https://github.com/privacy-scaling-explorations/p0tion diff --git a/src/projects/p0x-labs/index.yaml b/src/projects/p0x-labs/index.yaml index 9dfccf9a..00ad9c6b 100644 --- a/src/projects/p0x-labs/index.yaml +++ b/src/projects/p0x-labs/index.yaml @@ -1,8 +1,2 @@ -name: P0X labs usecase: - - rd -description: The decentralized laboratory for building cutting-edge privacy technologies. -links: - web: https://p0xeidon.xyz - twitter: https://x.com/p0xlabs -sunset: true +- rd diff --git a/src/projects/panther-protocl/index.yaml b/src/projects/panther-protocl/index.yaml index 55811b5d..7eed242a 100644 --- a/src/projects/panther-protocl/index.yaml +++ b/src/projects/panther-protocl/index.yaml @@ -1,20 +1,2 @@ -name: Panther Protocol -usecase: [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: - - transactions -links: - web: https://www.pantherprotocol.io/ - github: https://github.com/pantherprotocol - docs: https://docs.pantherprotocol.io/docs/start-here/panther-protocol-documentation -project_status: - live_status: true - mainnet: true - testnet: true -team: - anonymous: false - company: - link: https://www.pantherprotocol.io/ +usecase: +- defi diff --git a/src/projects/parallelchain/index.yaml b/src/projects/parallelchain/index.yaml index e23e8dcb..d47c626f 100644 --- a/src/projects/parallelchain/index.yaml +++ b/src/projects/parallelchain/index.yaml @@ -1,25 +1,2 @@ -name: ParallelChain usecase: - - infrastructure -description: "A public + private layer-1 blockchain protocol building an accountable, fair and solid backbone infrastructure for the digital economy" -team: - anonymous: false -links: - web: https://parallelchain.io/technology - github: https://github.com/parallelchain-io - papers: https://legacy.parallelchain.io/learn/papers - docs: https://docs.parallelchain.io/ - twitter: https://twitter.com/ParallelChainLB -have_token: true -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -audits: - - name: ParallelChain Full Node - link: http://wp.hacken.io/wp-content/uploads/2023/09/l1-parallelchain-node-final-report-18092023.pdf - time: September, 2023 - - name: ParallelChain HotStuff Consensus - link: https://wp.hacken.io/wp-content/uploads/2023/07/ParallelChain_Hotstuff_Consensus_L1_FinalReport_30062023.pdf - time: June, 2023 +- infrastructure diff --git a/src/projects/parami/index.yaml b/src/projects/parami/index.yaml index fc86af1e..d47c626f 100644 --- a/src/projects/parami/index.yaml +++ b/src/projects/parami/index.yaml @@ -1,11 +1,2 @@ -name: Parami usecase: - - 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: - live_status: true - version: testnet - testnet: true - mainnet: false -links: - web: https://parami.io +- infrastructure diff --git a/src/projects/paras/index.yaml b/src/projects/paras/index.yaml index af00f27a..0aee9366 100644 --- a/src/projects/paras/index.yaml +++ b/src/projects/paras/index.yaml @@ -1,15 +1,2 @@ -name: Paras usecase: - - nft -description: "A blockchain-agnostic protocol that offers privacy to NFTs" -links: - web: https://paras.id/ - whitepaper: https://eprint.iacr.org/2022/976.pdf - twitter: https://x.com/ParasHQ - telegram: https://t.me/parasannouncement -have_token: true -tokens: - - name: ParasToken - symbol: PARAS - network: Near -sunset: false +- nft diff --git a/src/projects/particl/index.yaml b/src/projects/particl/index.yaml index 6aec69ef..7306fc76 100644 --- a/src/projects/particl/index.yaml +++ b/src/projects/particl/index.yaml @@ -1,21 +1,2 @@ -name: Particl usecase: - - currency -description: A modern digital currency that respects your rights -ecosystem: Particl -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://particl.io/coin - github: https://github.com/particl - 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 +- currency diff --git a/src/projects/partisia-blockchain/index.yaml b/src/projects/partisia-blockchain/index.yaml index 7d495a2d..d47c626f 100644 --- a/src/projects/partisia-blockchain/index.yaml +++ b/src/projects/partisia-blockchain/index.yaml @@ -1,25 +1,2 @@ -name: Partisia Blockchain usecase: - - 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 -links: - web: https://partisiablockchain.com - gitlab: https://gitlab.com/partisiablockchain - docs: https://partisiablockchain.com/develop/documentation/ - whitepaper: https://partisiablockchain.com/develop/documentation/ - yellowpaper: https://drive.google.com/file/d/1OX7ljrLY4IgEA1O3t3fKNH1qSO60_Qbw/view - twitter: https://x.com/partisiampc -have_token: true -tokens: - - symbol: MPC -project_status: - live_status: true - version: Gamma Mainnet Vers 4.0 - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/pastenym/index.yaml b/src/projects/pastenym/index.yaml index 6be5e590..f5c47f7d 100644 --- a/src/projects/pastenym/index.yaml +++ b/src/projects/pastenym/index.yaml @@ -1,7 +1,2 @@ -name: Pastenym usecase: - - messaging -description: Anon text sharing service -links: - web: https://pastenym.ch/#/ - github: https://github.com/notrustverify/pastenym/ +- messaging diff --git a/src/projects/penumbra/index.yaml b/src/projects/penumbra/index.yaml index a5cd26e9..d47c626f 100644 --- a/src/projects/penumbra/index.yaml +++ b/src/projects/penumbra/index.yaml @@ -1,17 +1,2 @@ -name: Penumbra usecase: - - infrastructure -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: - web: https://penumbra.zone - github: https://github.com/penumbra-zone - blog: https://penumbra.zone/blog - docs: https://protocol.penumbra.zone/main/index.html - twitter: https://twitter.com/penumbrazone -project_status: - live_status: true - version: Penumbra Summoning Testnet - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/personae-labs/index.yaml b/src/projects/personae-labs/index.yaml index ce67d3c2..00ad9c6b 100644 --- a/src/projects/personae-labs/index.yaml +++ b/src/projects/personae-labs/index.yaml @@ -1,9 +1,2 @@ -name: Personae Labs usecase: - - rd -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 +- rd diff --git a/src/projects/phala-network/index.yaml b/src/projects/phala-network/index.yaml index ce060aba..c6529dd0 100644 --- a/src/projects/phala-network/index.yaml +++ b/src/projects/phala-network/index.yaml @@ -1,20 +1,2 @@ -name: Phala Network usecase: - - computing-network -description: Privacy-Enhanced Permissionless Computing Protocol. -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 - changelog: https://phala.network/changelog - blog: https://phala.network/blog - twitter: https://x.com/PhalaNetwork - discord: https://discord.com/invite/phala-network - telegram: https://t.me/phalanetwork -team: - anonymous: false - company: - link: https://www.phala.network/en/aboutUs/ +- computing-network diff --git a/src/projects/phoenix-network/index.yaml b/src/projects/phoenix-network/index.yaml index 53d2c90e..c6529dd0 100644 --- a/src/projects/phoenix-network/index.yaml +++ b/src/projects/phoenix-network/index.yaml @@ -1,18 +1,2 @@ -name: Phoenix usecase: - - computing-network -description: blockchain infrastructure empowering intelligence web3 applications. -links: - web: https://phoenix.global - github: https://github.com/phoenixglobal - twitter: https://x.com/Phoenix_Chain - telegram: https://t.me/APEXcommunity - blog: https://phoenixglobal.medium.com/ -ecosystem: multichain -project_status: - live_status: true - version: testnet - testnet: true - mainnet: false -team: - anonymous: true +- computing-network diff --git a/src/projects/phoenix/index.yaml b/src/projects/phoenix/index.yaml index 65066aad..89eab459 100644 --- a/src/projects/phoenix/index.yaml +++ b/src/projects/phoenix/index.yaml @@ -1,16 +1,2 @@ -name: Phoenix usecase: - - wallets -description: Non-custodial wallet on Lightning network -links: - web: https://phoenix.acinq.co - github: https://github.com/ACINQ/phoenix - twitter: https://twitter.com/PhoenixWallet - blog: https://acinq.co/blog -project_status: - live_status: true - version: v.2.2.2 - testnet: false - mainnet: false -team: - anonymous: true +- wallets diff --git a/src/projects/pigeon-communicator/index.yaml b/src/projects/pigeon-communicator/index.yaml index 9e094ddd..f5c47f7d 100644 --- a/src/projects/pigeon-communicator/index.yaml +++ b/src/projects/pigeon-communicator/index.yaml @@ -1,21 +1,2 @@ -name: Pigeon Communicator usecase: - - messaging -description: "Blockchain-based, trustless, censorship-resistant decentralized messaging" -team: - anonymous: true -links: - web: https://pigeoncoin.org - github: https://github.com/Pigeoncoin/pigeoncoin - twitter: https://x.com/pigeoncoin - discord: https://discord.com/invite/SZcf63h - facebook: https://www.facebook.com/groups/1022013661300591 - telegram: https://t.me/Pigeoncoin -have_token: true -tokens: - - symbol: PGN -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- messaging diff --git a/src/projects/pirate-chain/index.yaml b/src/projects/pirate-chain/index.yaml index 5f586391..7306fc76 100644 --- a/src/projects/pirate-chain/index.yaml +++ b/src/projects/pirate-chain/index.yaml @@ -1,18 +1,2 @@ -name: Pirate Chain usecase: - - currency -description: "Anonymous cryptocurrency, a truly private, decentralized blockchain" -ecosystem: Pirate -links: - web: https://pirate.black - github: https://github.com/PirateNetwork - block_explorer: https://explorer.piratechain.com/ - whitepaper: https://piratechain.com/whitepaper/ - - blog: https://piratechain.com/blog/ - twitter: https://x.com/PirateChain - discord: https://discord.com/invite/teHepr757z - telegram: https://t.me/piratechain/ - -team: - anonymous: true +- currency diff --git a/src/projects/pivx/index.yaml b/src/projects/pivx/index.yaml index b35524fe..7306fc76 100644 --- a/src/projects/pivx/index.yaml +++ b/src/projects/pivx/index.yaml @@ -1,19 +1,2 @@ -name: PivX usecase: - - 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 -links: - web: https://pivx.org - github: https://github.com/PIVX-Project/PIVX/ - block_explorer: https://pivx.org/block-explorer - whitepaper: https://pivx.org/whitepaper - forum: https://forum.pivx.org/ - - blog: https://pivx.org/news - twitter: https://x.com/_PIVX - discord: https://discord.com/invite/jzqVsJd - facebook: https://www.facebook.com/PIVXCrypto/ - telegram: https://t.me/pivxchat -team: - anonymous: false +- currency diff --git a/src/projects/platon-network/index.yaml b/src/projects/platon-network/index.yaml index 891ad172..c6529dd0 100644 --- a/src/projects/platon-network/index.yaml +++ b/src/projects/platon-network/index.yaml @@ -1,20 +1,2 @@ -name: PlatOn Network usecase: - - 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 -links: - web: https://www.platon.network/en - github: https://github.com/PlatONnetwork - docs: https://devdocs.platon.network/docs/en/ - forum: https://forum.latticex.foundation/ - whitepaper: https://www.platon.network/pdf/en/PlatON_A_High-Efficiency_Trustless_Computing_Network_Whitepaper_EN_2.pdf - blog: https://medium.com/platon-network - twitter: https://x.com/PlatON_Network - discord: https://discord.com/invite/jAjFzJ3Cff - facebook: https://www.facebook.com/PlatONNetwork/ - telegram: https://t.me/PlatONNetwork -team: - anonymous: false - company: - link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz +- computing-network diff --git a/src/projects/plebble/index.yaml b/src/projects/plebble/index.yaml index 1282ea6c..f8ecdede 100644 --- a/src/projects/plebble/index.yaml +++ b/src/projects/plebble/index.yaml @@ -1,17 +1,2 @@ -name: Plebble usecase: - - layer-2 -description: P2P Network of computers running the Plebble software (L1 & L2) -ecosystem: TBD -links: - web: https://plebble.net - github: https://github.com/root1m3/plebble - whitepaper: https://plebble.net/plebble_white_paper.pdf - twitter: https://twitter.com/KatlasC -team: - anonymous: true -project_status: - live_status: true - version: plebble-alpha-55.1_10-392024 2023-08-04_23-42-16 - testnet: true - mainnet: false +- layer-2 diff --git a/src/projects/plugin-io/index.yaml b/src/projects/plugin-io/index.yaml index dcd32e3a..93fa3a54 100644 --- a/src/projects/plugin-io/index.yaml +++ b/src/projects/plugin-io/index.yaml @@ -1,10 +1,2 @@ -name: Plugin.io usecase: - - dapps -description: Privacy-focused, ad-free social media & digital marketplace. -links: - web: https://plugin.io/ - github: https://github.com/pluginio - - twitter: https://x.com/pluginio - facebook: https://www.facebook.com/pluginio/ +- dapps diff --git a/src/projects/pollen-mobile/index.yaml b/src/projects/pollen-mobile/index.yaml index 49373877..d47c626f 100644 --- a/src/projects/pollen-mobile/index.yaml +++ b/src/projects/pollen-mobile/index.yaml @@ -1,10 +1,2 @@ -name: Pollen Mobile usecase: - - infrastructure -description: 'The worlds first decentralized, user-owned and operated mobile network. "Your information is yours and yours alone' -links: - web: https://www.pollenmobile.io - github: https://docs.pollenmobile.io/pollen-mobile-docs/ -have_token: true -tokens: - - symbol: PCN +- infrastructure diff --git a/src/projects/polybase/index.yaml b/src/projects/polybase/index.yaml index 7510f128..f8ecdede 100644 --- a/src/projects/polybase/index.yaml +++ b/src/projects/polybase/index.yaml @@ -1,20 +1,2 @@ -name: Polybase usecase: - - layer-2 -description: "a public L2 blockchain with private transactions and MEV-resistance powered by zero-knowledge proofs" -product_version: testnet -team: - - name: Sid Gandhi - role: Co-Founder & CEO - - name: Calum Moore - role: Co-Founder & CTO -links: - web: https://polybase.xyz - docs: https://payy.network/docs - blog: https://polybaselabs.com/blog - twitter: https://twitter.com/polybase_xyz -project_status: - live_status: true - version: Testnet (App Payy - beta/testing) - testnet: false - mainnet: true +- layer-2 diff --git a/src/projects/polygon-id/index.yaml b/src/projects/polygon-id/index.yaml index f9d04503..304e1715 100644 --- a/src/projects/polygon-id/index.yaml +++ b/src/projects/polygon-id/index.yaml @@ -1,16 +1,2 @@ -name: Polygon ID usecase: - - 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 -links: - web: https://polygon.technology/polygon-id/ - github: https://github.com/0xPolygonID - docs: https://devs.polygonid.com/docs/quick-start-demo/ - - blog: https://www.polygonid.com/blog - twitter: https://x.com/0xPolygonID -team: - company: - link: https://github.com/orgs/0xPolygonID/people -have_token: true +- did diff --git a/src/projects/polygon-nightfall/index.yaml b/src/projects/polygon-nightfall/index.yaml index 951a1eef..f8ecdede 100644 --- a/src/projects/polygon-nightfall/index.yaml +++ b/src/projects/polygon-nightfall/index.yaml @@ -1,18 +1,2 @@ -name: Polygon Miden usecase: - - layer-2 -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 - github: https://github.com/0xPolygonMiden - blog: https://polygon.technology/blog-tags/polygon-miden - twitter: https://twitter.com/0xPolygon -team: - anonymous: false -project_status: - live_status: true - version: testnet - testnet: true - mainnet: false +- layer-2 diff --git a/src/projects/polyhedra-zk-nft-container/index.yaml b/src/projects/polyhedra-zk-nft-container/index.yaml index d3cef2ab..0aee9366 100644 --- a/src/projects/polyhedra-zk-nft-container/index.yaml +++ b/src/projects/polyhedra-zk-nft-container/index.yaml @@ -1,12 +1,2 @@ -name: Polyhedra ZK-NFT Container usecase: - - nft -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 - docs: https://docs.zkbridge.com/ - blog: https://polyhedra.medium.com/ - twitter: https://x.com/PolyhedraZK - discord: https://discord.com/invite/polyhedra-network -sunset: false +- nft diff --git a/src/projects/pomp/index.yaml b/src/projects/pomp/index.yaml index 6c168eef..93fa3a54 100644 --- a/src/projects/pomp/index.yaml +++ b/src/projects/pomp/index.yaml @@ -1,11 +1,2 @@ -name: POMP usecase: - - dapps -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 +- dapps diff --git a/src/projects/privacy-infrastructure-solutions/index.yaml b/src/projects/privacy-infrastructure-solutions/index.yaml index e25ebc10..2fa04e73 100644 --- a/src/projects/privacy-infrastructure-solutions/index.yaml +++ b/src/projects/privacy-infrastructure-solutions/index.yaml @@ -1,14 +1,2 @@ -name: Privacy Infrastructure Solutions usecase: - - hardware -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/ - blog: https://chain-reaction.io/news-media/ - twitter: https://x.com/chainreactioni0 -team: - anonymous: false - company: - link: https://www.chain-reaction.io/about/ +- hardware diff --git a/src/projects/privacy-pools/index.yaml b/src/projects/privacy-pools/index.yaml index 1f661f8b..93fa3a54 100644 --- a/src/projects/privacy-pools/index.yaml +++ b/src/projects/privacy-pools/index.yaml @@ -1,10 +1,2 @@ -name: Privacy Pools usecase: - - 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" -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 +- dapps diff --git a/src/projects/privacy-security-explorations/index.yaml b/src/projects/privacy-security-explorations/index.yaml index fb04b094..00ad9c6b 100644 --- a/src/projects/privacy-security-explorations/index.yaml +++ b/src/projects/privacy-security-explorations/index.yaml @@ -1,19 +1,2 @@ -name: Privacy & Security explorations usecase: - - rd -description: "We explore new use cases for zero-knowledge proofs and other cryptographic primitives through research and proof-of-concepts" -team: - anonymous: false - teammembers: - - name: Andy Guzman - link: https://x.com/AndyGuzmanEth - - name: Sam Richards - link: https://x.com/samonchain - - name: Enrico Bottazzi - link: https://x.com/backaes -links: - web: https://appliedzkp.org - github: https://github.com/privacy-scaling-explorations - blog: https://mirror.xyz/privacy-scaling-explorations.eth - twitter: https://x.com/privacyscaling - discord: https://discord.com/invite/sF5CT5rzrR +- rd diff --git a/src/projects/private-finance-syndicate/index.yaml b/src/projects/private-finance-syndicate/index.yaml index 83176724..0ba2733a 100644 --- a/src/projects/private-finance-syndicate/index.yaml +++ b/src/projects/private-finance-syndicate/index.yaml @@ -1,8 +1,2 @@ -name: Private Finance Syndicate usecase: - - alliances -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 +- alliances diff --git a/src/projects/privatixy/index.yaml b/src/projects/privatixy/index.yaml index e5385089..d47c626f 100644 --- a/src/projects/privatixy/index.yaml +++ b/src/projects/privatixy/index.yaml @@ -1,7 +1,2 @@ -name: Privatixy usecase: - - infrastructure -description: "An open-source protocol that offers a wide variety of solutions for privacy preservation for blockchain users" -have_token: true -tokens: - - symbol: PRIVATIXY +- infrastructure diff --git a/src/projects/proof-of-passport/index.yaml b/src/projects/proof-of-passport/index.yaml index 68ac2451..b3ff2432 100644 --- a/src/projects/proof-of-passport/index.yaml +++ b/src/projects/proof-of-passport/index.yaml @@ -1,13 +1,2 @@ -name: Proof of Passport usecase: - - kyc -description: Passport proving protocol using zk-SNARKs -links: - web: https://proofofpassport.com/ - github: https://github.com/zk-passport/proof-of-passport - docs: https://proof-of-passport.gitbook.io/ - twitter: https://x.com/proofofpassport - telegram: https://t.me/proofofpassport -team: - anonymous: false -have_token: false +- kyc diff --git a/src/projects/protonvpn/index.yaml b/src/projects/protonvpn/index.yaml index a2f321b0..f0897aef 100644 --- a/src/projects/protonvpn/index.yaml +++ b/src/projects/protonvpn/index.yaml @@ -1,19 +1,2 @@ -name: ProtonVPN usecase: - - vpn -description: Swiss VPN provider with encrypted email and online storage -ecosystem: no chain -links: - web: https://protonvpn.com/ - github: https://github.com/ProtonVPN - blog: https://protonvpn.com/blog -team: - anonymous: false - company: - link: https://protonvpn.com/about -have_token: false -project_status: - live_status: true - version: stable - testnet: false - mainnet: false +- vpn diff --git a/src/projects/puma-browser/index.yaml b/src/projects/puma-browser/index.yaml index 6872fcb8..725689aa 100644 --- a/src/projects/puma-browser/index.yaml +++ b/src/projects/puma-browser/index.yaml @@ -1,10 +1,2 @@ -name: Puma browser usecase: - - browser -description: Puma is a mobile browser and wallet for the Web3 ecosystem. Private by design. -links: - web: https://www.pumabrowser.com - github: https://github.com/PumaBrowser - blog: https://www.pumabrowser.com/blog - twitter: https://twitter.com/pumabrowser - discord: https://discord.com/invite/4frpm84 +- browser diff --git a/src/projects/quadrata/index.yaml b/src/projects/quadrata/index.yaml index b4e760bf..304e1715 100644 --- a/src/projects/quadrata/index.yaml +++ b/src/projects/quadrata/index.yaml @@ -1,12 +1,2 @@ -name: Quadrata usecase: - - did -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 - - blog: https://medium.com/quadrata-network - twitter: https://x.com/QuadrataNetwork - discord: https://discord.com/invite/67QgzrymHW -have_token: true +- did diff --git a/src/projects/qubes-os/index.yaml b/src/projects/qubes-os/index.yaml index 36296655..c03c43b1 100644 --- a/src/projects/qubes-os/index.yaml +++ b/src/projects/qubes-os/index.yaml @@ -1,22 +1,2 @@ -name: Qubes OS usecase: - - os -description: "a free and open-source, security-oriented operating system for single-user desktop computing" -team: - anonymous: false - teammembers: - - name: Marek Marczykowski-Górecki - role: Project Lead - link: https://github.com/marmarek -links: - web: https://www.qubes-os.org - github: https://github.com/QubesOS - docs: https://www.qubes-os.org/doc/ - twitter: https://twitter.com/QubesOS - forum: https://forum.qubes-os.org/ - facebook: https://www.facebook.com/QubesOS -project_status: - live_status: true - version: 4.2.1 - testnet: false - mainnet: false +- os diff --git a/src/projects/railgun/index.yaml b/src/projects/railgun/index.yaml index 0d3e6b91..7eed242a 100644 --- a/src/projects/railgun/index.yaml +++ b/src/projects/railgun/index.yaml @@ -1,107 +1,2 @@ -name: RAILGUN -usecase: [defi] -tokens: - - name: Railgun - symbol: RAIL - network: Ethereum - contract_address: "0xe76c6c83af64e4c60245d8c7de953df673a7a33d" - - name: Railgun - symbol: RAIL - network: Polygon - contract_address: "0x92A9C92C215092720C731c96D4Ff508c831a714f" -description: "Private transfers and DeFi infra for Ethereum, Polygon, Binance Smart Chain and Arbitrum." -project_type: transaction -technology: - type: zk - features: - - private -links: - web: https://railgun.org/ - twitter: https://twitter.com/railgun_project - telegram: https://t.me/railgun_privacy - discord: https://discord.com/invite/jgUQjkYWzh - blog: https://medium.com/@Railgun_Project - block_explorer: https://etherscan.io/ - whitepaper: https://docs.railgun.org/wiki/learn/overview - github: https://github.com/Railgun-Privacy -blockchain_features: - p2p: true - encryption: zksnark - network: Ethereum - upgradability: - enabled: true - type: perpetual power - opensource: true - viewing_key: true - dissapearing_tx: false - frontend_anonymity: ( Railway frontend dont work on Firefox/Tor ) - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false - reversability_condition: viewing key, hack - data_masking: Contract deposit - asset_custody_type: non-custody -privacy_policy: - defined: false -team: - anonymous: false - teammembers: - - name: Alan Scott - role: researcher - - name: Kieran Mesquita - role: researcher - - name: John Meurer - role: researcher - - name: Dylan Oliver - role: researcher - - name: Hisham Galan - role: researcher - - name: Peter Simpson - role: researcher - - name: Bill Liang - role: researcher - - name: Matias Grote - role: researcher - - name: Jacob Makarsky - role: Software engineer - - name: Edward P. Fricker - role: Legal counsel - - name: Phil Huang - role: Advisor - - name: Emmanuel Goldstein - role: Global economist -storage: - decentralized: true -traceability: - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false -audits: - - name: Railgun audit report - 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: - - name: Railway - link: https://www.railway.xyz/ - - name: TokenShielder - link: https://tokenshielder.com/ -default_privacy: true -funding: - name: DCG - type: Investments - link: https://www.coindesk.com/business/2022/01/26/railgun-aims-for-private-defi-with-10m-backing-from-dcg/ - value: 10.000.000 $ - time: Jan 26, 2022 -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- defi diff --git a/src/projects/railway/index.yaml b/src/projects/railway/index.yaml index b6927c22..89eab459 100644 --- a/src/projects/railway/index.yaml +++ b/src/projects/railway/index.yaml @@ -1,16 +1,2 @@ -name: Railway usecase: - - wallets -description: DeFi privacy wallet -ecosystem: Ethereum, BNB, Polygon -links: - web: https://railway.xyz/ - github: https://github.com/Railway-Wallet/Railway-Wallet/ - twitter: https://twitter.com/Railway_xyz -team: - anonymous: true -project_status: - live_status: true - version: 5.16.8 - testnet: false - mainnet: false +- wallets diff --git a/src/projects/raspiblitz/index.yaml b/src/projects/raspiblitz/index.yaml index 168260af..abcb9b40 100644 --- a/src/projects/raspiblitz/index.yaml +++ b/src/projects/raspiblitz/index.yaml @@ -1,15 +1,2 @@ -name: RaspiBlitz usecase: - - node -description: DIY Bitcoin & Lightning Node on a RaspberryPi. -team: - anonymous: true -links: - web: https://raspiblitz.org - docs: https://docs.raspiblitz.org/docs/setup/intro - github: https://github.com/raspiblitz -project_status: - live_status: true - version: v1.11.0 - testnet: false - mainnet: true +- node diff --git a/src/projects/raze-network/index.yaml b/src/projects/raze-network/index.yaml index 9d2dc8b5..d47c626f 100644 --- a/src/projects/raze-network/index.yaml +++ b/src/projects/raze-network/index.yaml @@ -1,13 +1,2 @@ -name: Raze Network usecase: - - 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. " -links: - web: https://www.raze.network - github: https://github.com/Raze-Net - whitepaper: https://docsend.com/view/nea4rj23f28z5b98 - blog: https://raze-net.medium.com/ - twitter: https://twitter.com/R4ZE_Network -have_token: true -tokens: - - symbol: RAZE +- infrastructure diff --git a/src/projects/realran/index.yaml b/src/projects/realran/index.yaml index 5a9ab946..00ad9c6b 100644 --- a/src/projects/realran/index.yaml +++ b/src/projects/realran/index.yaml @@ -1,12 +1,2 @@ -name: RealRan usecase: - - rd -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 - docs: https://docs.realran.com/Docs/Getting%20Started/Overview - blog: https://medium.com/@realran - twitter: https://x.com/RealRanCrypto/ - discord: https://discord.com/invite/K9J5cCAAUC -sunset: true +- rd diff --git a/src/projects/relayz/index.yaml b/src/projects/relayz/index.yaml index f22284d5..f5c47f7d 100644 --- a/src/projects/relayz/index.yaml +++ b/src/projects/relayz/index.yaml @@ -1,10 +1,2 @@ -name: Relayz usecase: - - messaging -description: Hyper-secure, private communications protocol for Web3 -links: - web: https://relayz.io - blog: https://relayz.medium.com/ - twitter: https://x.com/RelayzOfficial - discord: https://discord.com/invite/sMbZ2kxZKk - telegram: https://t.me/RelayzOfficial +- messaging diff --git a/src/projects/rln-anonymous-chat/index.yaml b/src/projects/rln-anonymous-chat/index.yaml index d672abee..f5c47f7d 100644 --- a/src/projects/rln-anonymous-chat/index.yaml +++ b/src/projects/rln-anonymous-chat/index.yaml @@ -1,6 +1,2 @@ -name: RLN Anonymous Chat usecase: - - messaging -description: "A spam-resistant instant messaging application for private and anonymous communication" -links: - web: https://github.com/njofce/zk-chat +- messaging diff --git a/src/projects/ronindojo-tanto/index.yaml b/src/projects/ronindojo-tanto/index.yaml index f5ff8a50..2fa04e73 100644 --- a/src/projects/ronindojo-tanto/index.yaml +++ b/src/projects/ronindojo-tanto/index.yaml @@ -1,13 +1,2 @@ -name: RoninDojo Tanto usecase: - - hardware -description: "Fully validating Bitcoin full node. Served over a Tor hidden service" -ecosystem: Bitcoin -links: - web: https://ronindojo.io/ - docs: https://docs.samourai.io/ - blog: https://blog.ronindojo.io/tag/news/ - twitter: https://x.com/RoninDojoNode - telegram: https://t.me/RoninDojoNode -team: - anonymous: true +- hardware diff --git a/src/projects/rpch/index.yaml b/src/projects/rpch/index.yaml index 7e9fd1bb..f0b20bd4 100644 --- a/src/projects/rpch/index.yaml +++ b/src/projects/rpch/index.yaml @@ -1,10 +1,2 @@ -name: RPCh usecase: - - rpc -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 +- rpc diff --git a/src/projects/ruby/index.yaml b/src/projects/ruby/index.yaml index 18378344..d47c626f 100644 --- a/src/projects/ruby/index.yaml +++ b/src/projects/ruby/index.yaml @@ -1,14 +1,2 @@ -name: RUBY usecase: - - infrastructure -description: The Decentralized Privacy-Centric Protocol for Web3 -team: - anonymous: true -links: - web: https://www.ruby.xyz - github: https://github.com/Ruby-Protocol - docs: https://wiki.ruby.xyz/ - Twitter: https://twitter.com/RubyProtocol -have_token: true -tokens: - - symbol: RUBY +- infrastructure diff --git a/src/projects/sacred/index.yaml b/src/projects/sacred/index.yaml index 8179e84a..7eed242a 100644 --- a/src/projects/sacred/index.yaml +++ b/src/projects/sacred/index.yaml @@ -1,2 +1,2 @@ -name: Sacred -usecase: [defi] +usecase: +- defi diff --git a/src/projects/sahara/index.yaml b/src/projects/sahara/index.yaml index fc8ee07f..7eed242a 100644 --- a/src/projects/sahara/index.yaml +++ b/src/projects/sahara/index.yaml @@ -1,2 +1,2 @@ -name: Sahara -usecase: [defi] +usecase: +- defi diff --git a/src/projects/samourai-wallet/index.yaml b/src/projects/samourai-wallet/index.yaml index dbab093f..89eab459 100644 --- a/src/projects/samourai-wallet/index.yaml +++ b/src/projects/samourai-wallet/index.yaml @@ -1,11 +1,2 @@ -name: Samourai Wallet usecase: - - wallets -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 +- wallets diff --git a/src/projects/scala/index.yaml b/src/projects/scala/index.yaml index db64a1a6..d47c626f 100644 --- a/src/projects/scala/index.yaml +++ b/src/projects/scala/index.yaml @@ -1,21 +1,2 @@ -name: Scala usecase: - - infrastructure -description: "A secure, anonymous and mobile-friendly cryptocurrency offering easy-to-use solutions to ensure financial privacy" -team: - - name: Hayzam - role: Founder, Lead Developer -links: - web: https://scalaproject.io - github: https://github.com/scala-network/ - docs: https://wiki.scalaproject.io/ - blog: https://scala.network/blog/ - twitter: https://twitter.com/scalahq -have_token: true -tokens: - - symbol: XLA -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +- infrastructure diff --git a/src/projects/secret-network/index.yaml b/src/projects/secret-network/index.yaml index 4ed80434..d47c626f 100644 --- a/src/projects/secret-network/index.yaml +++ b/src/projects/secret-network/index.yaml @@ -1,90 +1,2 @@ -name: Secret Network usecase: - - infrastructure -tokens: - - name: Secret - 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" -project_type: Infrastructure -product_launch_day: "2020-02-13" -technology: - type: TEE - name: Trusted execution environment - features: - - privacy - - DeFi - - NFTs - - PaaS -links: - web: https://scrt.network - twitter: https://twitter.com/SecretNetwork - telegram: https://t.me/scrtCommunity - discord: https://discord.com/invite/secret-network-360051864110235648 - blog: https://scrt.network/blog - block_explorer: https://www.mintscan.io/secret - whitepaper: https://scrt.network/graypaper/ - github: https://github.com/scrtlabs/SecretNetwork - docs: https://docs.scrt.network/secret-network-documentation/ - forum: https://forum.scrt.network/ -blockchain_features: - p2p: false - encryption: TEE - upgradability: - enabled: true - type: governance/fork - opensource: true - viewing_key: true - dissapearing_tx: false - connected_tx: true - reversability_condition: viewing key, hack - data_masking: Secret Contracts - asset_custody_type: non-custody -licences: MIT License -privacy_policy: - defined: false -team: - anonymous: false - company: - name: Secret Labs - link: https://www.scrtlabs.com/ - contacts: info@scrtlabs.com - teammembers: - - name: Alex Zaidelson - role: SLabs CEO - link: https://twitter.com/azaidelson -storage: - decentralized: true -traceability: - tracked_data: user SCRT adress - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -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 -client_diversability: - - name: Keplr - link: https://www.keplr.app/ - - name: Starshell - link: https://starshell.net/ -default_privacy: false -funding: - name: Private investors - type: ICO - link: https://icodrops.com/secret-network/ - value: 236.500.000 $ - time: Jul 23, 2020 -project_status: - live_status: true - version: Mainnet v1.12.1 - testnet: true - mainnet: true -have_token: true +- infrastructure diff --git a/src/projects/secure-rpc/index.yaml b/src/projects/secure-rpc/index.yaml index adcba5da..f0b20bd4 100644 --- a/src/projects/secure-rpc/index.yaml +++ b/src/projects/secure-rpc/index.yaml @@ -1,6 +1,2 @@ -name: Secure RPC usecase: - - rpc -description: "a bare-metal, fully conformant JSON-RPC/gRPC Infrastructure plane that aims to perform well" -links: - web: https://securerpc.com +- rpc diff --git a/src/projects/seedsigner/index.yaml b/src/projects/seedsigner/index.yaml index 5fa937c5..89eab459 100644 --- a/src/projects/seedsigner/index.yaml +++ b/src/projects/seedsigner/index.yaml @@ -1,16 +1,2 @@ -name: SeedSigner usecase: - - wallets -description: Air-gapped DIY Bitcoin Signing Device -ecosystem: Bitcoin -links: - web: https://seedsigner.com/ - github: https://github.com/SeedSigner/seedsigner - docs: https://seedsigner.com/faqs/ -team: - anonymous: true -project_status: - live_status: true - version: v0.7.0 - testnet: false - mainnet: false +- wallets diff --git a/src/projects/seer-sdid/index.yaml b/src/projects/seer-sdid/index.yaml index e96077c2..304e1715 100644 --- a/src/projects/seer-sdid/index.yaml +++ b/src/projects/seer-sdid/index.yaml @@ -1,12 +1,2 @@ -name: SEER sdid usecase: - - did -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 +- did diff --git a/src/projects/semaphore/index.yaml b/src/projects/semaphore/index.yaml index 171b5a45..12937271 100644 --- a/src/projects/semaphore/index.yaml +++ b/src/projects/semaphore/index.yaml @@ -1,16 +1,2 @@ -name: semaphore -usecase: [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: - version: V4-beta - live_status: true -team: - anonymous: true -links: - github: https://github.com/semaphore-protocol - web: https://semaphore.pse.dev - discord: https://semaphore.pse.dev/discord - twitter: https://semaphore.pse.dev/twitter - docs: https://docs.semaphore.pse.dev -technology: - type: zk-kit, circom, snarkjs +usecase: +- DID diff --git a/src/projects/seneca/index.yaml b/src/projects/seneca/index.yaml index 2a7b3ed1..d47c626f 100644 --- a/src/projects/seneca/index.yaml +++ b/src/projects/seneca/index.yaml @@ -1,6 +1,2 @@ -name: Seneca usecase: - - infrastructure -description: The first layer 1 designed to build apps on rich, complex yet private data -links: - web: https://www.seneca.tech +- infrastructure diff --git a/src/projects/senging-me/index.yaml b/src/projects/senging-me/index.yaml index c990a528..f5c47f7d 100644 --- a/src/projects/senging-me/index.yaml +++ b/src/projects/senging-me/index.yaml @@ -1,13 +1,2 @@ -name: Senging.me usecase: - - messaging -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 -links: - web: https://sending.me - github: https://github.com/Sending-Network - docs: https://sending-network.gitbook.io/sending.network/overview/getting-started - twitter: https://twitter.com/SendingLabs - discord: https://discord.com/invite/J43HGTNeWP - telegram: https://t.me/SendingNetworkOfficial +- messaging diff --git a/src/projects/sentinel/index.yaml b/src/projects/sentinel/index.yaml index c73f9419..f0897aef 100644 --- a/src/projects/sentinel/index.yaml +++ b/src/projects/sentinel/index.yaml @@ -1,20 +1,2 @@ -name: Sentinel usecase: - - vpn -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 - whitepaper: https://docs.sentinel.co/getting-started/whitepaper - docs: https://docs.sentinel.co/ - twitter: https://twitter.com/SentinelDVPN -team: - anonymous: true -have_token: true -token_link: https://coinmarketcap.com/currencies/sentinel/ -project_status: - live_status: true - version: stable - testnet: false - mainnet: false +- vpn diff --git a/src/projects/serenityshield/index.yaml b/src/projects/serenityshield/index.yaml index e8bdcc0a..886a0bb7 100644 --- a/src/projects/serenityshield/index.yaml +++ b/src/projects/serenityshield/index.yaml @@ -1,48 +1,2 @@ -name: SerenityShield usecase: - - storage -description: "The Leading Sensitive Data Storage Solution on Blockchain. Security, Privacy and Digital Rights for Everyone" -team: - anonymous: false - teammembers: - - name: VENKET NAGA - role: CEO & Co-Founder - link: https://www.linkedin.com/in/venket-naga-97998b265/ - - name: Boris M. - role: CPO & Co-Founder - - name: Hughes Svay - role: COO - link: https://x.com/SvayHugues - - name: Nikos Koukos - role: Head of Marketing - link: https://www.linkedin.com/in/nikos-koukos-7a3899214/ - - name: Nataliia Shtangrat - role: Business dev - link: https://x.com/Natalie_sht - - name: Justin Mantell - role: Business dev - link: https://x.com/ahabs_ghost - - name: Dan Thompson - role: Copywriter - link: https://x.com/dan_serenity - - name: Juan M.Oviedo - role: Head of security - link: https://x.com/OviedoJuanma - - name: Julio Vilalobos - role: Designer - link: https://x.com/julioskulls - - name: Ranjit Edward - role: Infrastructure Architect - link: https://www.linkedin.com/in/ranjitedward/ -links: - web: https://serenityshield.io - blog: https://www.serenityshield.io/blog - whitepaper: https://assets-global.website-files.com/646e1d2bb86f8833c75bdc7b/65e726c08c83172189fa7217_Whitepaper-Serenity%20Shield%20En.pdf - twitter: https://x.com/serenityshield_ - discord: https://discord.com/invite/SerenityShield - telegram: https://t.me/SerenityShield -project_status: - live_status: June 2024 - version: tbd - testnet: false - mainnet: false +- storage diff --git a/src/projects/session/index.yaml b/src/projects/session/index.yaml index be074e2c..f5c47f7d 100644 --- a/src/projects/session/index.yaml +++ b/src/projects/session/index.yaml @@ -1,17 +1,2 @@ -name: Session usecase: - - 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 -links: - web: https://getsession.org - github: https://github.com/oxen-io - docs: https://docs.oxen.io/oxen-docs/products-built-on-oxen/session - block_explorer: https://oxen.observer/ - whitepaper: https://arxiv.org/pdf/2002.04609 - blog: https://getsession.org/blog - twitter: https://x.com/session_app - facebook: https://www.facebook.com/SessionMessenger/ -team: - company: - link: https://www.linkedin.com/company/sessionmessenger/people/ +- messaging diff --git a/src/projects/seven-seas/index.yaml b/src/projects/seven-seas/index.yaml index c3aad1ba..7eed242a 100644 --- a/src/projects/seven-seas/index.yaml +++ b/src/projects/seven-seas/index.yaml @@ -1,2 +1,2 @@ -name: Seven Seas -usecase: [defi] +usecase: +- defi diff --git a/src/projects/shade-cash/index.yaml b/src/projects/shade-cash/index.yaml index 153e9b2f..7eed242a 100644 --- a/src/projects/shade-cash/index.yaml +++ b/src/projects/shade-cash/index.yaml @@ -1,2 +1,2 @@ -name: Shade Cash -usecase: [defi] +usecase: +- defi diff --git a/src/projects/shade/index.yaml b/src/projects/shade/index.yaml index 22ff6044..7eed242a 100644 --- a/src/projects/shade/index.yaml +++ b/src/projects/shade/index.yaml @@ -1,100 +1,2 @@ -name: Shade Protocol -usecase: [defi] -ecosystem: Secret -tokens: - - name: Shade Protocol - symbol: SHD - network: Secret Network - contract_address: secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm -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 -links: - web: https://shadeprotocol.io/ - twitter: https://twitter.com/Shade_Protocol - telegram: https://t.me/ShadeProtocol - discord: https://discord.com/invite/YMcUrXK476 - blog: https://shadeprotocol.io/blog - block_explorer: https://www.mintscan.io/secret - whitepaper: https://framerusercontent.com/modules/assets/aAMeX7kkaxljkFRXRIN4CElVJbo~pEHSkrNceWvWuHWRiNuOD_CQEuYf_tS-dLtgATuz0QY.pdf - github: https://github.com/securesecrets/shade - docs: https://docs.shadeprotocol.io/shade-protocol/ - forum: https://forum.shadeprotocol.io/ -blockchain_features: - p2p: false - encryption: TEE - upgradability: - enabled: true - type: multisig - opensource: true - viewing_key: true - dissapearing_tx: false - frontend_anonymity: options - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false - reversability_condition: viewing key, hack - data_masking: SNIP-20 token - asset_custody_type: non-custody -licences: General Public License -privacy_policy: - defined: true - link: https://app.shadeprotocol.io/use-terms - data_usage: tools you are making TXs on -team: - anonymous: false - company: - name: Secure Secrets - link: https://www.securesecrets.org/ - contacts: https://twitter.com/securesecrets - teammembers: - - name: Carter L. Woetzel - role: researcher - link: https://twitter.com/l_woetzel -storage: - decentralized: true -traceability: - tracked_data: user SCRT adress - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false -audits: - - name: stkd-SCRT - link: https://docs.shadeprotocol.io/shade-protocol/research/audit-log - time: March 29th, 2022 - - name: Bonds - link: https://docs.shadeprotocol.io/shade-protocol/research/audit-log - time: August 2nd, 2022 -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: - - name: Keplr - link: https://www.keplr.app/ - - name: Starshell - link: https://starshell.net/ -default_privacy: true -funding: - name: Private investors - type: ICO - link: https://shadeprotocol.io/blog/shade-protocol-raises-5m-20-key-partners-invested - value: 5.000.000 $ - time: Feb 17, 2022 -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- defi diff --git a/src/projects/shinobi/index.yaml b/src/projects/shinobi/index.yaml index eff42c8c..fa22259b 100644 --- a/src/projects/shinobi/index.yaml +++ b/src/projects/shinobi/index.yaml @@ -1,11 +1,2 @@ -name: Shinobi -usecase: [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 +usecase: +- bridge diff --git a/src/projects/sia/index.yaml b/src/projects/sia/index.yaml index 57bfc693..886a0bb7 100644 --- a/src/projects/sia/index.yaml +++ b/src/projects/sia/index.yaml @@ -1,49 +1,2 @@ -name: Sia usecase: - - storage -description: Decentralized data storage -team: - anonymous: false - teammembers: - - name: Nate - role: President - link: https://twitter.com/n8maninger - - name: Chris - role: Director of Engineering - link: https://github.com/ChrisSchinnerl - - name: Frances - role: Director Operation - link: https://www.linkedin.com/in/frances-lu-066762123/ - - name: Steve - role: Director People & Support - link: https://github.com/stevefunk - - name: Luke - role: Founder & Researcher - link: https://x.com/lukechampine - - name: Alex - role: Product Engineer - link: https://x.com/alexfreska - - name: PJ - role: dev - link: https://github.com/peterjan - - name: Christopher - role: dev - link: https://github.com/chris124567 - - name: Kino - role: Community Manager - link: https://github.com/kinomora -links: - web: https://sia.tech - github: https://github.com/SiaFoundation - docs: https://docs.sia.tech/ - whitepaper: https://sia.tech/sia.pdf - block_explorer: https://siascan.com/ - forum: https://forum.sia.tech/ - blog: https://blog.sia.tech - twitter: https://x.com/sia__foundation - discord: https://discord.com/invite/sia -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- storage diff --git a/src/projects/sienna/index.yaml b/src/projects/sienna/index.yaml index ba7de51e..7eed242a 100644 --- a/src/projects/sienna/index.yaml +++ b/src/projects/sienna/index.yaml @@ -1,88 +1,2 @@ -name: Sienna Network -usecase: [defi] -ecosystem: Secret -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." -project_type: DeFi -product_launch_day: "2022-04-27" -technology: - type: TEE - name: Trusted execution environment - features: - - private - - DeFi -links: - web: https://sienna.network/ - twitter: https://twitter.com/sienna_network - telegram: https://t.me/GoSiennaNetwork - discord: https://discord.com/invite/jZk8ggm7XP - blog: https://medium.com/@cm_77528 - block_explorer: https://www.mintscan.io/secret - whitepaper: https://sienna.network/whitepaper/ - github: https://github.com/SiennaNetwork - docs: https://docs.sienna.network/main/ - changelog: https://medium.com/@cm_77528 - forum: https://commonwealth.im/siennanetwork/discussions -blockchain_features: - p2p: false - encryption: TEE - upgradability: - enabled: true - type: DAO - opensource: true - viewing_key: true - dissapearing_tx: false - frontend_anonymity: options - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false - reversability_condition: viewing key, hack - data_masking: SNIP-20 token - asset_custody_type: non-custody -licences: General Public License -privacy_policy: - defined: false -team: - anonymous: true -storage: - decentralized: true -traceability: - tracked_data: user SCRT adress - kyc: false - sign_in_type_requirments: wallet -third_party_dependency: false -compliance: false -audits: - - name: Halborn and Certik - link: https://sienna.network/audits/ - time: "2021-04-18" -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: - - name: Keplr - link: https://www.keplr.app/ - - name: Starshell - link: https://starshell.net/ -default_privacy: true -funding: - name: Public presale - type: ICO - link: https://icodrops.com/sienna-network/ - value: 11.200.000 - time: May 5, 2021 -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- defi diff --git a/src/projects/sigle/index.yaml b/src/projects/sigle/index.yaml index 0ab9acb0..93fa3a54 100644 --- a/src/projects/sigle/index.yaml +++ b/src/projects/sigle/index.yaml @@ -1,13 +1,2 @@ -name: Sigle usecase: - - dapps -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 - docs: https://docs.sigle.io/ - changelog: https://docs.sigle.io/changelog - - blog: https://blog.sigle.io/ - twitter: https://x.com/sigleapp - discord: https://discord.com/invite/X2Dbz3xbrs +- dapps diff --git a/src/projects/silent-data/index.yaml b/src/projects/silent-data/index.yaml index f16d3cca..93fa3a54 100644 --- a/src/projects/silent-data/index.yaml +++ b/src/projects/silent-data/index.yaml @@ -1,11 +1,2 @@ -name: Silent Data usecase: - - dapps -description: Verify web2 Data in web3 Applications. -links: - web: https://silentdata.com - docs: https://docs.silentdata.com/docs - - blog: https://www.silentdata.com/oracle/blog/ - twitter: https://x.com/SilentDataApp - discord: https://discord.com/invite/5Dg57zStXG +- dapps diff --git a/src/projects/silent-protocol/index.yaml b/src/projects/silent-protocol/index.yaml index 562a3191..7eed242a 100644 --- a/src/projects/silent-protocol/index.yaml +++ b/src/projects/silent-protocol/index.yaml @@ -1,8 +1,2 @@ -name: Silent protocol -usecase: [defi] -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 +usecase: +- defi diff --git a/src/projects/silk/index.yaml b/src/projects/silk/index.yaml index 9bd9f072..7306fc76 100644 --- a/src/projects/silk/index.yaml +++ b/src/projects/silk/index.yaml @@ -1,46 +1,2 @@ -name: SILK usecase: - - currency -description: Private Over-Collateralized Anti-inflationary Stable Coin -technology: - 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 - connected_tx: false - reversability_condition: viewing key, hack - data_masking: Secret contracts - asset_custody_type: non-custody - revealed_recipient: false - revealed_sender: false - revealed_ammount: false -default_privacy: true -storage: - decentralized: true -traceability: - kyc: false - sign_in_type_requirments: wallet -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 -links: - web: https://app.shadeprotocol.io/silk - github: https://github.com/securesecrets/shade - - twitter: https://x.com/Silk_Stable +- currency diff --git a/src/projects/sirius-sync/index.yaml b/src/projects/sirius-sync/index.yaml index f8936a86..93fa3a54 100644 --- a/src/projects/sirius-sync/index.yaml +++ b/src/projects/sirius-sync/index.yaml @@ -1,11 +1,2 @@ -name: Sirius Sync usecase: - - dapps -description: Web3 Social Ecosystem -links: - web: https://siriussync.io - docs: https://docs.siriussync.io/wiki - - blog: https://medium.com/@siriussyncrealm - twitter: https://x.com/siriussyncrealm - telegram: https://t.me/siriussynccommunity +- dapps diff --git a/src/projects/sismo/index.yaml b/src/projects/sismo/index.yaml index db89e08d..304e1715 100644 --- a/src/projects/sismo/index.yaml +++ b/src/projects/sismo/index.yaml @@ -1,13 +1,2 @@ -name: Sismo usecase: - - did -description: "a modular protocol issuing ZK Badges for reputation portability and aggregation" -links: - web: https://www.sismo.io/ - github: https://github.com/sismo-core - docs: https://docs.sismo.io/sismo-docs - - blog: https://sismo.mirror.xyz/ - twitter: https://x.com/sismo_eth - discord: https://discord.com/invite/xKTMeRUX6u -have_token: true +- did diff --git a/src/projects/skiff-drive/index.yaml b/src/projects/skiff-drive/index.yaml index 10db30eb..886a0bb7 100644 --- a/src/projects/skiff-drive/index.yaml +++ b/src/projects/skiff-drive/index.yaml @@ -1,8 +1,2 @@ -name: Skiff Drive usecase: - - storage -description: Secure file storage -links: - web: https://skiff.com/drive - github: https://github.com/skiff-org -sunset: true +- storage diff --git a/src/projects/skiff-pages/index.yaml b/src/projects/skiff-pages/index.yaml index e5935ec7..93fa3a54 100644 --- a/src/projects/skiff-pages/index.yaml +++ b/src/projects/skiff-pages/index.yaml @@ -1,7 +1,2 @@ -name: Skiff Pages usecase: - - dapps -description: Private, End-to-End Encrypted Notes -links: - web: https://skiff.com/pages - github: https://github.com/skiff-org +- dapps diff --git a/src/projects/skiff/index.yaml b/src/projects/skiff/index.yaml index 23c43161..93fa3a54 100644 --- a/src/projects/skiff/index.yaml +++ b/src/projects/skiff/index.yaml @@ -1,11 +1,2 @@ -name: Skiff usecase: - - dapps -description: Web3 email, drive, and docs -links: - web: https://skiff.com/crypto - github: https://github.com/skiff-org/skiff-mail - whitepaper: https://skiff-org.github.io/whitepaper/Skiff_Whitepaper_2023.pdf - docs: https://skiff.com/skiff-crypto/ - - twitter: https://x.com/skiffprivacy +- dapps diff --git a/src/projects/skynet/index.yaml b/src/projects/skynet/index.yaml index e12cb3e6..886a0bb7 100644 --- a/src/projects/skynet/index.yaml +++ b/src/projects/skynet/index.yaml @@ -1,8 +1,2 @@ -name: SkyNet usecase: - - storage -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 +- storage diff --git a/src/projects/slashags/index.yaml b/src/projects/slashags/index.yaml index 09565dec..304e1715 100644 --- a/src/projects/slashags/index.yaml +++ b/src/projects/slashags/index.yaml @@ -1,13 +1,2 @@ -name: Slashags usecase: - - 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" -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 +- did diff --git a/src/projects/socialkyc/index.yaml b/src/projects/socialkyc/index.yaml index 53e6617e..b3ff2432 100644 --- a/src/projects/socialkyc/index.yaml +++ b/src/projects/socialkyc/index.yaml @@ -1,12 +1,2 @@ -name: socialKYC usecase: - - kyc -description: Your decentralized social credentials -team: - anonymous: true -links: - web: https://socialkyc.io - github: https://github.com/BTE-Trusted-Entity/socialkyc.io/ - - blog: https://medium.com/kilt-protocol/announcing-socialkyc-built-on-kilt-65a29a974d07 - twitter: https://x.com/social_kyc +- kyc diff --git a/src/projects/sociogram/index.yaml b/src/projects/sociogram/index.yaml index 3b595272..93fa3a54 100644 --- a/src/projects/sociogram/index.yaml +++ b/src/projects/sociogram/index.yaml @@ -1,12 +1,2 @@ -name: Sociogram usecase: - - dapps -description: Web3Social Media focused on privacy. -links: - web: https://sociogram.org - docs: https://socio.gitbook.io/sociogram.org - - blog: https://sociogram.medium.com/ - twitter: https://x.com/SociogramSocFi - discord: https://discord.com/invite/kufW7ZfjeD - telegram: https://t.me/sociogram_channel +- dapps diff --git a/src/projects/solar-labs/index.yaml b/src/projects/solar-labs/index.yaml index 595e9359..f0897aef 100644 --- a/src/projects/solar-labs/index.yaml +++ b/src/projects/solar-labs/index.yaml @@ -1,8 +1,2 @@ -name: Solar labs usecase: - - vpn -description: World’s first truly decentralized blockchain-based VPN service. -links: - web: https://solarlabs.ee - twitter: https://twitter.com/solardvpn -have_token: true +- vpn diff --git a/src/projects/sons-of-crypto/index.yaml b/src/projects/sons-of-crypto/index.yaml index d6675ba0..89eab459 100644 --- a/src/projects/sons-of-crypto/index.yaml +++ b/src/projects/sons-of-crypto/index.yaml @@ -1,18 +1,2 @@ -name: Sons of Crypto usecase: - - wallets -description: Web3 wallet by degens for degens -ecosystem: multichain -links: - web: https://sonsofcrypto.com/ - github: https://github.com/sonsofcrypto - whitepaper: https://sonsofcrypto.com/web3wallet_whitepaper.pdf - twitter: https://twitter.com/sonsofcryptolab - blog: https://medium.com/@sonsofcrypto -team: - anonymous: true -project_status: - live_status: true - version: - testnet: false - mainnet: false +- wallets diff --git a/src/projects/sparrow/index.yaml b/src/projects/sparrow/index.yaml index bc21f81e..89eab459 100644 --- a/src/projects/sparrow/index.yaml +++ b/src/projects/sparrow/index.yaml @@ -1,21 +1,2 @@ -name: Sparrow usecase: - - wallets -description: A Bitcoin wallet for those who value financial self-sovereignty -ecosystem: Bitcoin -links: - web: https://sparrowwallet.com/ - github: https://github.com/sparrowwallet/sparrow - docs: https://sparrowwallet.com/docs/ - twitter: https://twitter.com/SparrowWallet -team: - anonymous: false - teammembers: - - name: craigraw - role: Project Lead - link: http://twitter.com/craigraw -project_status: - live_status: true - version: - testnet: false - mainnet: false +- wallets diff --git a/src/projects/speak-app/index.yaml b/src/projects/speak-app/index.yaml index aa9920fd..f5c47f7d 100644 --- a/src/projects/speak-app/index.yaml +++ b/src/projects/speak-app/index.yaml @@ -1,10 +1,2 @@ -name: Speak app usecase: - - messaging -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 +- messaging diff --git a/src/projects/speakeasy/index.yaml b/src/projects/speakeasy/index.yaml index 332af998..f5c47f7d 100644 --- a/src/projects/speakeasy/index.yaml +++ b/src/projects/speakeasy/index.yaml @@ -1,7 +1,2 @@ -name: Speakeasy usecase: - - messaging -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 +- messaging diff --git a/src/projects/specter-diy/index.yaml b/src/projects/specter-diy/index.yaml index aebe6c28..89eab459 100644 --- a/src/projects/specter-diy/index.yaml +++ b/src/projects/specter-diy/index.yaml @@ -1,10 +1,2 @@ -name: Specter-DIY usecase: - - wallets -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 +- wallets diff --git a/src/projects/sphereon-wallet/index.yaml b/src/projects/sphereon-wallet/index.yaml index 15431dfb..89eab459 100644 --- a/src/projects/sphereon-wallet/index.yaml +++ b/src/projects/sphereon-wallet/index.yaml @@ -1,9 +1,2 @@ -name: Sphereon Wallet usecase: - - 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" -links: - web: https://github.com/Sphereon-Opensource/ssi-mobile-wallet - github: https://github.com/Sphereon-Opensource/ssi-mobile-wallet -team: - anonymous: true +- wallets diff --git a/src/projects/sphereon/index.yaml b/src/projects/sphereon/index.yaml index 0eae878d..89eab459 100644 --- a/src/projects/sphereon/index.yaml +++ b/src/projects/sphereon/index.yaml @@ -1,8 +1,2 @@ -name: Sphereon usecase: - - 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" -links: - github: https://github.com/Sphereon-Opensource/ssi-mobile-wallet -team: - anonymous: true +- wallets diff --git a/src/projects/spillways/index.yaml b/src/projects/spillways/index.yaml index ad7b8cfb..cb38a970 100644 --- a/src/projects/spillways/index.yaml +++ b/src/projects/spillways/index.yaml @@ -1,23 +1 @@ -name: Spillways usecase: mixing-service -description: "Mixer enables fast, secure, and private transactions in crypto by obscuring the source and destination of funds" -team: - anonymous: false -links: - web: https://spillways.finance - docs: https://spillways.gitbook.io/documentation - block_explorer: https://spillways.finance/explorer - blog: https://spillways.medium.com/ - twitter: https://twitter.com/spillways10 - telegram: https://t.me/SpillWaysJoin -token_link: https://etherscan.io/address/0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47 -tokens: - - name: Spillways - symbol: SAMPLE - network: Ethereum - contract_address: "0x8790f2fc7Ca2e7Db841307FB3f4e72a03Baf7b47" -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true diff --git a/src/projects/spiral-finance/index.yaml b/src/projects/spiral-finance/index.yaml index 3a17fe54..7eed242a 100644 --- a/src/projects/spiral-finance/index.yaml +++ b/src/projects/spiral-finance/index.yaml @@ -1,2 +1,2 @@ -name: Spiral Finance -usecase: [defi] +usecase: +- defi diff --git a/src/projects/spkz/index.yaml b/src/projects/spkz/index.yaml index 553af60f..93fa3a54 100644 --- a/src/projects/spkz/index.yaml +++ b/src/projects/spkz/index.yaml @@ -1,11 +1,2 @@ -name: SPKZ usecase: - - dapps -description: The first fully decentralized web3 community/chat platform. -links: - web: https://spkz.io - github: https://github.com/Arianee/spkz-sdk - whitepaper: https://f.hubspotusercontent10.net/hubfs/9335516/SPKZ%20%5BLIGHT%20PAPER%5D%20-%20November%202021.pdf?utm_campaign=SPKZ&utm_source=Light%20Paper%20SPKZ - - blog: https://medium.com/arianee/why-we-are-building-spkz-c856e251c899 - twitter: https://x.com/SPKZ_io +- dapps diff --git a/src/projects/spoc/index.yaml b/src/projects/spoc/index.yaml index f85e3858..a9a8ac96 100644 --- a/src/projects/spoc/index.yaml +++ b/src/projects/spoc/index.yaml @@ -1,7 +1,2 @@ -name: Spoc usecase: - - data-management -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 +- data-management diff --git a/src/projects/spook/index.yaml b/src/projects/spook/index.yaml index cafcb6a6..f0b20bd4 100644 --- a/src/projects/spook/index.yaml +++ b/src/projects/spook/index.yaml @@ -1,6 +1,2 @@ -name: Spook usecase: - - rpc -description: Mixing service using the Nym network to anonymize Ethereum RPC calls. -links: - web: https://github.com/EdenBlockVC/spook +- rpc diff --git a/src/projects/sporran/index.yaml b/src/projects/sporran/index.yaml index 2ec56641..89eab459 100644 --- a/src/projects/sporran/index.yaml +++ b/src/projects/sporran/index.yaml @@ -1,9 +1,2 @@ -name: Sporran usecase: - - wallets -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 +- wallets diff --git a/src/projects/spruce/index.yaml b/src/projects/spruce/index.yaml index 535acedd..304e1715 100644 --- a/src/projects/spruce/index.yaml +++ b/src/projects/spruce/index.yaml @@ -1,13 +1,2 @@ -name: Spruce usecase: - - did -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 - docs: https://www.spruceid.dev/ - - blog: https://blog.spruceid.com/ - twitter: https://x.com/SpruceID - discord: https://discord.com/invite/KmQeRhQPYh -have_token: true +- did diff --git a/src/projects/starkex/index.yaml b/src/projects/starkex/index.yaml index 25ef3b15..f8ecdede 100644 --- a/src/projects/starkex/index.yaml +++ b/src/projects/starkex/index.yaml @@ -1,16 +1,2 @@ -name: StarkEX usecase: - - layer-2 -description: A Layer-2 scalability engine, live on Ethereum Mainnet ✨️ZK -ecosystem: Ethereum -links: - web: https://starkware.co/starkex/ - github: https://github.com/starkware-libs/starkex-resources - docs: https://docs.starkware.co/starkex/index.html - - blog: https://medium.com/starkware - twitter: https://x.com/StarkWareLtd -team: - anonymous: false - company: - link: https://starkware.co/about-us/ +- layer-2 diff --git a/src/projects/starshell/index.yaml b/src/projects/starshell/index.yaml index f84db2be..89eab459 100644 --- a/src/projects/starshell/index.yaml +++ b/src/projects/starshell/index.yaml @@ -1,10 +1,2 @@ -name: Starshell usecase: - - wallets -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 +- wallets diff --git a/src/projects/start9/index.yaml b/src/projects/start9/index.yaml index 6133ea6c..abcb9b40 100644 --- a/src/projects/start9/index.yaml +++ b/src/projects/start9/index.yaml @@ -1,17 +1,2 @@ -name: Start9 usecase: - - node -description: Sovereign computing for a free future. -team: - anonymous: true -links: - web: https://start9.com - github: https://github.com/Start9Labs - docs: https://docs.start9.com/0.3.5.x/ - blog: https://blog.start9.com/ - twitter: https://twitter.com/start9labs -project_status: - live_status: true - version: v0.3.5.1 - testnet: false - mainnet: true +- node diff --git a/src/projects/stashh/index.yaml b/src/projects/stashh/index.yaml index 820f790d..0aee9366 100644 --- a/src/projects/stashh/index.yaml +++ b/src/projects/stashh/index.yaml @@ -1,18 +1,2 @@ -name: Stashh usecase: - - nft -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 - blog: https://blog.stashh.io/ - twitter: https://x.com/StashhApp - discord: https://discord.com/invite/stashh-855087853662502983 - telegram: https://t.me/stashhio -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true -have_token: false -sunset: false +- nft diff --git a/src/projects/status-web3-browser/index.yaml b/src/projects/status-web3-browser/index.yaml index 4c9d0330..725689aa 100644 --- a/src/projects/status-web3-browser/index.yaml +++ b/src/projects/status-web3-browser/index.yaml @@ -1,10 +1,2 @@ -name: Status Web3 Browser usecase: - - browser -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 +- browser diff --git a/src/projects/status/index.yaml b/src/projects/status/index.yaml index ef23d987..f5c47f7d 100644 --- a/src/projects/status/index.yaml +++ b/src/projects/status/index.yaml @@ -1,12 +1,2 @@ -name: Status usecase: - - messaging -description: "Status is a secure messaging app, crypto wallet, and Web3 browser built with state of the art technology" -team: - anonymous: false -links: - web: https://status.im - github: https://github.com/status-im/ - docs: https://status.app/specs - blog: https://status.app/blog - twitter: https://twitter.com/ethstatus +- messaging diff --git a/src/projects/stealthdrop/index.yaml b/src/projects/stealthdrop/index.yaml index 42cd05b7..93fa3a54 100644 --- a/src/projects/stealthdrop/index.yaml +++ b/src/projects/stealthdrop/index.yaml @@ -1,7 +1,2 @@ -name: Stealthdrop usecase: - - dapps -description: Anonymous Airdrops using ZK-SNARKS ✨️**ZK** -links: - web: https://stealthdrop.xyz - github: https://github.com/stealthdrop/stealthdrop +- dapps diff --git a/src/projects/stealthpay/index.yaml b/src/projects/stealthpay/index.yaml index ca07eb71..7eed242a 100644 --- a/src/projects/stealthpay/index.yaml +++ b/src/projects/stealthpay/index.yaml @@ -1,2 +1,2 @@ -name: StealthPay -usecase: [defi] +usecase: +- defi diff --git a/src/projects/stereum/index.yaml b/src/projects/stereum/index.yaml index 25b4df21..abcb9b40 100644 --- a/src/projects/stereum/index.yaml +++ b/src/projects/stereum/index.yaml @@ -1,16 +1,2 @@ -name: Stereum usecase: - - 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" -team: - anonymous: true -links: - web: https://stereum.net/ethereum-node-setup/ - github: https://github.com/stereum-dev/ethereum-node - docs: https://stereum.net/content/guides - twitter: https://twitter.com/stereumdev -project_status: - live_status: true - version: v2.1.3 - testnet: true - mainnet: true +- node diff --git a/src/projects/storj/index.yaml b/src/projects/storj/index.yaml index f7b1255c..886a0bb7 100644 --- a/src/projects/storj/index.yaml +++ b/src/projects/storj/index.yaml @@ -1,18 +1,2 @@ -name: Storj usecase: - - storage -description: "globally distributed network for data storage with better security, privacy, and durability with CDN-like performance" -team: - anonymous: true -links: - web: https://www.storj.io/ - github: https://github.com/Storj/ - docs: https://docs.storj.io/ - blog: https://www.storj.io/blog - twitter: https://x.com/storj - forum: https://forum.storj.io/ -project_status: - live_status: true - version: Mainnet v1.104.5 - testnet: false - mainnet: true +- storage diff --git a/src/projects/suterusu/index.yaml b/src/projects/suterusu/index.yaml index 2950ff6e..d47c626f 100644 --- a/src/projects/suterusu/index.yaml +++ b/src/projects/suterusu/index.yaml @@ -1,10 +1,2 @@ -name: Suterusu usecase: - - infrastructure -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 +- infrastructure diff --git a/src/projects/swarm/index.yaml b/src/projects/swarm/index.yaml index bdb4f051..886a0bb7 100644 --- a/src/projects/swarm/index.yaml +++ b/src/projects/swarm/index.yaml @@ -1,26 +1,2 @@ -name: Swarm usecase: - - storage -description: "A decentralized data storage and distribution technology. Ready to power the next generation of censorship-resistant, unstoppable, serverless dApps" -team: - anonymous: true -links: - web: https://www.ethswarm.org - github: https://github.com/ethersphere - blog: https://blog.ethswarm.org/ - docs: https://docs.ethswarm.org/ - whitepaper: https://www.ethswarm.org/swarm-whitepaper.pdf - twitter: https://x.com/ethswarm - discord: https://discord.com/invite/hyCr9BMX9U -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -have_token: true -token_link: https://etherscan.io/token/0x19062190b1925b5b6689d7073fdfc8c2976ef8cb -tokens: - - name: BZZToken - symbol: BZZ - network: Ethereum - contract_address: "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb" +- storage diff --git a/src/projects/synx/index.yaml b/src/projects/synx/index.yaml index 2661389f..886a0bb7 100644 --- a/src/projects/synx/index.yaml +++ b/src/projects/synx/index.yaml @@ -1,14 +1,2 @@ -name: Synx usecase: - - storage -description: The Web3 storage platform -team: - anonymous: true -links: - web: https://synx.xyz - twitter: https://x.com/synx_xyz -project_status: - live_status: true - version: Alpha - testnet: false - mainnet: true +- storage diff --git a/src/projects/tails-os/index.yaml b/src/projects/tails-os/index.yaml index b030a4bc..c03c43b1 100644 --- a/src/projects/tails-os/index.yaml +++ b/src/projects/tails-os/index.yaml @@ -1,16 +1,2 @@ -name: TAILS OS usecase: - - os -description: "Tails is a portable operating system that protects your privacy and helps you avoid censorship" -team: - anonymous: true -links: - web: https://tails.boum.org - docs: https://tails.net/doc/index.en.html - github: https://gitlab.tails.boum.org/tails/tails - twitter: https://twitter.com/Tails_live -project_status: - live_status: true - version: 6.3 - testnet: false - mainnet: false +- os diff --git a/src/projects/telebridge/index.yaml b/src/projects/telebridge/index.yaml index e6beb8de..6c5eaddd 100644 --- a/src/projects/telebridge/index.yaml +++ b/src/projects/telebridge/index.yaml @@ -1,10 +1,2 @@ -name: Hype (formerly known as TeleBridge) -usecase: [mixing-service] -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: - web: https://hype-eth.com/ - whitepaper: https://hype-eth.com/whitepaper.pdf - twitter: https://x.com/TelebridgeERC - telegram: https://t.me/TeleBridgingBot +usecase: +- mixing-service diff --git a/src/projects/telios/index.yaml b/src/projects/telios/index.yaml index 2e4ad778..93fa3a54 100644 --- a/src/projects/telios/index.yaml +++ b/src/projects/telios/index.yaml @@ -1,7 +1,2 @@ -name: Telios usecase: - - dapps -description: Secure Communication with Encrypted Data and Email -links: - web: https://www.telios.io - github: https://github.com/Telios-org +- dapps diff --git a/src/projects/the-anon-club/index.yaml b/src/projects/the-anon-club/index.yaml index c19337c2..0aee9366 100644 --- a/src/projects/the-anon-club/index.yaml +++ b/src/projects/the-anon-club/index.yaml @@ -1,8 +1,2 @@ -name: The Anon Club usecase: - - nft -description: World's first privacy-focused digital collectibles. -links: - web: https://theanonclub.com - twitter: https://x.com/theanonclub -sunset: true +- nft diff --git a/src/projects/the-farcaster-project/index.yaml b/src/projects/the-farcaster-project/index.yaml index 81f47387..d47c626f 100644 --- a/src/projects/the-farcaster-project/index.yaml +++ b/src/projects/the-farcaster-project/index.yaml @@ -1,9 +1,2 @@ -name: The Farcaster Project usecase: - - 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" -team: - anonymous: true -links: - web: https://farcaster.dev/ - github: https://github.com/farcaster-project +- infrastructure diff --git a/src/projects/timpi/index.yaml b/src/projects/timpi/index.yaml index 9b4023be..93fa3a54 100644 --- a/src/projects/timpi/index.yaml +++ b/src/projects/timpi/index.yaml @@ -1,12 +1,2 @@ -name: Timpi usecase: - - dapps -description: Decentralized Search Engine & Index -links: - web: https://timpi.io - whitepaper: https://timpi.io/timpi-whitepaper/ - - blog: https://timpi.io/category/blogs/ - twitter: https://x.com/Timpi_TheNewWay - discord: https://discord.com/invite/wGRm9c7JE2 - telegram: https://t.me/TimpiMe +- dapps diff --git a/src/projects/tlsnotary/index.yaml b/src/projects/tlsnotary/index.yaml index 57a413ac..93fa3a54 100644 --- a/src/projects/tlsnotary/index.yaml +++ b/src/projects/tlsnotary/index.yaml @@ -1,12 +1,2 @@ -name: TLSNotary usecase: - - dapps -description: Proof of data authenticity -links: - web: https://tlsnotary.org - github: https://github.com/tlsnotary/tlsn - docs: https://docs.tlsnotary.org/ - - blog: https://mirror.xyz/privacy-scaling-explorations.eth/T4MR2PgBzBmN2I3dhDJpILXkQsqZp1Bp8GSm_Oo3Vnw - twitter: https://x.com/tlsnotary - discord: https://discord.com/invite/9XwESXtcN7 +- dapps diff --git a/src/projects/tomochainp/index.yaml b/src/projects/tomochainp/index.yaml index f647df83..d47c626f 100644 --- a/src/projects/tomochainp/index.yaml +++ b/src/projects/tomochainp/index.yaml @@ -1,10 +1,2 @@ -name: TomoChainP usecase: - - infrastructure -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 +- infrastructure diff --git a/src/projects/tonnel-network/index.yaml b/src/projects/tonnel-network/index.yaml index 06962ff0..d47c626f 100644 --- a/src/projects/tonnel-network/index.yaml +++ b/src/projects/tonnel-network/index.yaml @@ -1,18 +1,2 @@ -name: Tonnel Network usecase: - - infrastructure -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: - web: https://www.tonnel.network - github: https://github.com/Tonnel-Network/core - twitter: https://twitter.com/tonnel_network -have_token: true -tokens: - - symbol: $TONNEL -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/tornadocash/index.yaml b/src/projects/tornadocash/index.yaml index 9c77525d..6c5eaddd 100644 --- a/src/projects/tornadocash/index.yaml +++ b/src/projects/tornadocash/index.yaml @@ -1,18 +1,2 @@ -name: TornadoCash usecase: - - mixing-service -description: "an open source, non-custodial, fully decentralized cryptocurrency tumbler that runs on Ethereum Virtual Machine-compatible networks" -team: - anonymous: true -links: - web: https://tornado.dev/ - docs: https://docs.tornado.dev/ - github: https://github.com/tornadocashdev - blog: https://tornado-cash.medium.com/ - twitter: https://x.com/tornadocash - telegram: https://t.me/TornadoCash -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- mixing-service diff --git a/src/projects/transferchain/index.yaml b/src/projects/transferchain/index.yaml index de02c52f..886a0bb7 100644 --- a/src/projects/transferchain/index.yaml +++ b/src/projects/transferchain/index.yaml @@ -1,17 +1,2 @@ -name: TransferChain usecase: - - storage -description: "Enables users to store, process, and share their data while ensuring its privacy and security" -team: - anonymous: true -links: - web: https://transferchain.io - github: https://github.com/TransferChain - blog: https://blog.transferchain.io/ - docs: https://docs.transferchain.io/ - twitter: https://twitter.com/TransferChain_ -project_status: - live_status: true - version: tbd - testnet: false - mainnet: true +- storage diff --git a/src/projects/treasure-chest/index.yaml b/src/projects/treasure-chest/index.yaml index 9a4e2ec8..89eab459 100644 --- a/src/projects/treasure-chest/index.yaml +++ b/src/projects/treasure-chest/index.yaml @@ -1,10 +1,2 @@ -name: Treasure Chest usecase: - - wallets -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 +- wallets diff --git a/src/projects/trivium/index.yaml b/src/projects/trivium/index.yaml index 1bcb2563..00ad9c6b 100644 --- a/src/projects/trivium/index.yaml +++ b/src/projects/trivium/index.yaml @@ -1,11 +1,2 @@ -name: Trivium usecase: - - rd -description: "Provides validator services to several networks, and develops privacy-preserving dApps" -links: - web: https://trivium.network - github: https://github.com/TriviumNode - block_explorer: https://explorer.trivium.network/ - twitter: https://x.com/TriviumNode - discord: https://discord.com/invite/tZj7ZhhdP5 - telegram: https://t.me/TriviumNode +- rd diff --git a/src/projects/trocador-app/index.yaml b/src/projects/trocador-app/index.yaml index dbb08ded..d47c626f 100644 --- a/src/projects/trocador-app/index.yaml +++ b/src/projects/trocador-app/index.yaml @@ -1,9 +1,2 @@ -name: Trocador App usecase: - - infrastructure -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/ +- infrastructure diff --git a/src/projects/truezk/index.yaml b/src/projects/truezk/index.yaml index 1d510fb8..f8ecdede 100644 --- a/src/projects/truezk/index.yaml +++ b/src/projects/truezk/index.yaml @@ -1,10 +1,2 @@ -name: TrueZK usecase: - - layer-2 -description: Post-Quantum ZK Rollup as a service x private DIDs -links: - web: https://www.truezk.com - docs: https://docs.truezk.com - blog: https://medium.com/truezk - twitter: https://x.com/True_ZK - telegram: https://t.me/truezk +- layer-2 diff --git a/src/projects/tusima/index.yaml b/src/projects/tusima/index.yaml index a0332394..f8ecdede 100644 --- a/src/projects/tusima/index.yaml +++ b/src/projects/tusima/index.yaml @@ -1,12 +1,2 @@ -name: Tusima usecase: - - layer-2 -description: Privacy Financial Infrastructure For Blockchain -links: - web: https://tusima.network - docs: https://tusima.gitbook.io/tusima_en/tusima-introduction/what-is-tusima - github: https://github.com/TusimaNetwork - blog: https://medium.com/@TusimaNetwork - twitter: https://x.com/TusimaNetwork - discord: https://discord.com/invite/tusimanetwork - telegram: https://t.me/tusimaofficial +- layer-2 diff --git a/src/projects/umbra/index.yaml b/src/projects/umbra/index.yaml index ec2b3421..7eed242a 100644 --- a/src/projects/umbra/index.yaml +++ b/src/projects/umbra/index.yaml @@ -1,2 +1,2 @@ -name: Umbra -usecase: [defi] +usecase: +- defi diff --git a/src/projects/unijoin/index.yaml b/src/projects/unijoin/index.yaml index 5715f513..6c5eaddd 100644 --- a/src/projects/unijoin/index.yaml +++ b/src/projects/unijoin/index.yaml @@ -1,7 +1,2 @@ -name: UniJoin usecase: - - mixing-service -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 +- mixing-service diff --git a/src/projects/universal-privacy-alliance/index.yaml b/src/projects/universal-privacy-alliance/index.yaml index 61340b4d..0ba2733a 100644 --- a/src/projects/universal-privacy-alliance/index.yaml +++ b/src/projects/universal-privacy-alliance/index.yaml @@ -1,8 +1,2 @@ -name: Universal Privacy Alliance usecase: - - alliances -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 +- alliances diff --git a/src/projects/universal-reputation/index.yaml b/src/projects/universal-reputation/index.yaml index a5ac4adb..304e1715 100644 --- a/src/projects/universal-reputation/index.yaml +++ b/src/projects/universal-reputation/index.yaml @@ -1,14 +1,2 @@ -name: Universal Reputation usecase: - - did -description: a private and non-repudiable reputation system -links: - web: https://developer.unirep.io - github: https://github.com/unirep - docs: https://developer.unirep.io/docs/welcome - block_explorer: https://explorer.unirep.io/ - - blog: https://developer.unirep.io/blog - twitter: https://x.com/UniRep_protocol - discord: https://discord.com/invite/VzMMDJmYc5 -have_token: true +- did diff --git a/src/projects/unova/index.yaml b/src/projects/unova/index.yaml index 549df68d..d47c626f 100644 --- a/src/projects/unova/index.yaml +++ b/src/projects/unova/index.yaml @@ -1,16 +1,2 @@ -name: Unova usecase: - - 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. -links: - web: https://unova.io - blog: https://unova.io/blog/ - whitepaper: https://unova.io/wp-content/uploads/2022/06/whitepaper-UNOVA-V1.0-1.pdf -have_token: true -tokens: - - symbol: UON -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/utopia/index.yaml b/src/projects/utopia/index.yaml index 4218def0..d47c626f 100644 --- a/src/projects/utopia/index.yaml +++ b/src/projects/utopia/index.yaml @@ -1,7 +1,2 @@ -name: Utopia usecase: - - infrastructure -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 +- infrastructure diff --git a/src/projects/valid-id/index.yaml b/src/projects/valid-id/index.yaml index e7c9d1d8..304e1715 100644 --- a/src/projects/valid-id/index.yaml +++ b/src/projects/valid-id/index.yaml @@ -1,8 +1,2 @@ -name: Valid.id usecase: - - did -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 +- did diff --git a/src/projects/vault1317/index.yaml b/src/projects/vault1317/index.yaml index 2d41fb86..d47c626f 100644 --- a/src/projects/vault1317/index.yaml +++ b/src/projects/vault1317/index.yaml @@ -1,14 +1,2 @@ -name: Vault1317 usecase: - - infrastructure -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 -links: - web: https://hardenedvault.net/blog/2021-06-02-vault1317-thesis/ - github: https://github.com/hardenedvault/vault1317 +- infrastructure diff --git a/src/projects/verida/index.yaml b/src/projects/verida/index.yaml index 438cdaad..d47c626f 100644 --- a/src/projects/verida/index.yaml +++ b/src/projects/verida/index.yaml @@ -1,21 +1,2 @@ -name: Verida usecase: - - 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" -team: - - 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/ - whitepaper: https://docsend.com/view/hqd8d55nbucz83yf - docs: https://developers.verida.network/ - blog: https://news.verida.io - twitter: https://twitter.com/verida_io -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/verusid/index.yaml b/src/projects/verusid/index.yaml index dee98e39..304e1715 100644 --- a/src/projects/verusid/index.yaml +++ b/src/projects/verusid/index.yaml @@ -1,22 +1,2 @@ -name: VerusID usecase: - - did -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 - docs: https://docs.verus.io/ - block_explorer: https://insight.verus.io/ - whitepaper: https://verus.io/papers - - blog: https://medium.com/veruscoin - twitter: https://x.com/veruscoin - discord: https://discord.com/invite/wV8w8cWPCf - facebook: https://www.facebook.com/VerusCoin - telegram: https://t.me/veruscommunity -team: - company: - link: https://verus.io/people -have_token: true -token_link: https://coinmarketcap.com/it/currencies/veruscoin/ +- did diff --git a/src/projects/void-protocol/index.yaml b/src/projects/void-protocol/index.yaml index e8f15d7f..6c5eaddd 100644 --- a/src/projects/void-protocol/index.yaml +++ b/src/projects/void-protocol/index.yaml @@ -1,7 +1,2 @@ -name: Void protocol usecase: - - mixing-service -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 +- mixing-service diff --git a/src/projects/vult/index.yaml b/src/projects/vult/index.yaml index 85129315..886a0bb7 100644 --- a/src/projects/vult/index.yaml +++ b/src/projects/vult/index.yaml @@ -1,16 +1,2 @@ -name: vult usecase: - - storage -description: Your private cloud -team: - anonymous: true -links: - web: https://vult.network/ - github: https://github.com/0chain - docs: https://docs.zus.network/ - whitepaper: https://zus.network/whitepapers/ -project_status: - live_status: true - version: v1.14.10 - testnet: false - mainnet: true +- storage diff --git a/src/projects/vup/index.yaml b/src/projects/vup/index.yaml index 75268628..886a0bb7 100644 --- a/src/projects/vup/index.yaml +++ b/src/projects/vup/index.yaml @@ -1,16 +1,2 @@ -name: VUP usecase: - - storage -description: Private and decentralized cloud storage -team: - anonymous: true -links: - web: https://vup.app - github: https://github.com/vup-app - docs: https://docs.vup.app/ - twitter: https://x.com/VupCloudStorage -project_status: - live_status: true - version: v0.15.0 BETA - testnet: false - mainnet: true +- storage diff --git a/src/projects/waku/index.yaml b/src/projects/waku/index.yaml index 712dd6e8..f5c47f7d 100644 --- a/src/projects/waku/index.yaml +++ b/src/projects/waku/index.yaml @@ -1,30 +1,2 @@ -name: Waku usecase: - - messaging -ecosystem: - - Ethereum -description: "the communication layer for Web3. Decentralized communication that scales" - -team: - anonymous: false - -links: - web: https://waku.org - github: https://github.com/waku-org - docs: https://docs.waku.org - forum: https://forum.vac.dev/ - blog: https://blog.waku.org - twitter: https://x.com/waku_org - discord: https://discord.waku.org - farcaster: "@waku" - -project_status: - live_status: true - version: The Waku Network Gen 0 - testnet: true - mainnet: false - -licenses: Apache 2.0 and MIT - -traceability: - kyc: false +- messaging diff --git a/src/projects/wasabi-wallet/index.yaml b/src/projects/wasabi-wallet/index.yaml index 46c69350..89eab459 100644 --- a/src/projects/wasabi-wallet/index.yaml +++ b/src/projects/wasabi-wallet/index.yaml @@ -1,10 +1,2 @@ -name: Wasabi Wallet usecase: - - wallets -description: Open-source, non-custodial Bitcoin Wallet for desktop -ecosystem: Bitcoin -links: - web: https://wasabiwallet.io/ - github: https://github.com/zkSNACKs/WalletWasabi -team: - anonymous: true +- wallets diff --git a/src/projects/weavemail/index.yaml b/src/projects/weavemail/index.yaml index f14cc855..93fa3a54 100644 --- a/src/projects/weavemail/index.yaml +++ b/src/projects/weavemail/index.yaml @@ -1,6 +1,2 @@ -name: Weavemail usecase: - - dapps -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 +- dapps diff --git a/src/projects/web3id/index.yaml b/src/projects/web3id/index.yaml index cd13019a..304e1715 100644 --- a/src/projects/web3id/index.yaml +++ b/src/projects/web3id/index.yaml @@ -1,20 +1,2 @@ -name: Web3ID usecase: - - did -description: Privacy-preserving user verification for Web3 -ecosystem: multichain -links: - web: https://www.dock.io/web3id - github: https://github.com/docknetwork - docs: https://docs.dock.io/ - block_explorer: https://dock.subscan.io/ - - blog: https://blog.dock.io/ - twitter: https://x.com/docknetwork - discord: https://discord.com/invite/feW8KGf7r3 - telegram: https://t.me/dockio -team: - company: - link: https://www.dock.io/verifiable-credentials-company -have_token: true -token_link: https://coinmarketcap.com/it/currencies/dock/ +- did diff --git a/src/projects/webb/index.yaml b/src/projects/webb/index.yaml index bf4ae4ae..7eed242a 100644 --- a/src/projects/webb/index.yaml +++ b/src/projects/webb/index.yaml @@ -1,17 +1,2 @@ -name: Webb -usecase: [defi] -ecosystem: Tangle -description: "an interoperable private bridge" -technology: - type: zk - features: - - Anchor System -links: - web: https://app.webb.tools/#/tornado - github: https://github.com/webb-tools - docs: https://docs.manta.network/docs/Introduction -project_status: - live_status: false - beta: true -team: - anonymous: true +usecase: +- defi diff --git a/src/projects/whirlpool/index.yaml b/src/projects/whirlpool/index.yaml index 50099cf5..6c5eaddd 100644 --- a/src/projects/whirlpool/index.yaml +++ b/src/projects/whirlpool/index.yaml @@ -1,5 +1,2 @@ -name: Whirlpool usecase: - - mixing-service -description: "Break the link your coins leave behind with built-in CoinJoin available on any platform" -sunset: true +- mixing-service diff --git a/src/projects/whonix/index.yaml b/src/projects/whonix/index.yaml index 774a794a..c03c43b1 100644 --- a/src/projects/whonix/index.yaml +++ b/src/projects/whonix/index.yaml @@ -1,19 +1,2 @@ -name: Whonix usecase: - - 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" -team: - anonymous: true -links: - web: https://www.whonix.org/ - github: https://github.com/Whonix - docs: https://www.whonix.org/wiki/Documentation - twitter: https://twitter.com/Whonix - forum: https://forums.whonix.org/ - facebook: https://www.facebook.com/Whonix - telegram: https://t.me/s/Whonix -project_status: - live_status: true - version: 17.0.4.5 - testnet: false - mainnet: false +- os diff --git a/src/projects/wiremin/index.yaml b/src/projects/wiremin/index.yaml index d0270c22..93fa3a54 100644 --- a/src/projects/wiremin/index.yaml +++ b/src/projects/wiremin/index.yaml @@ -1,10 +1,2 @@ -name: WireMin usecase: - - dapps -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/ +- dapps diff --git a/src/projects/wownero/index.yaml b/src/projects/wownero/index.yaml index 15b1d6d0..7306fc76 100644 --- a/src/projects/wownero/index.yaml +++ b/src/projects/wownero/index.yaml @@ -1,45 +1,2 @@ -name: Wownero usecase: - - currency -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: - - Ring Signatures (21 decoys) - - Ring Confidential Transactions (RingCT) - - Stealth Addresses - - Bulletproofs+ - - Dynamic Block Size -blockchain_features: - p2p: true - network: Dandelion++, RandomX PoW (lite variant) -links: - web: https://wownero.org - github: https://git.wownero.com/wownero/wownero - bloc_explorer: https://muchwow.lol - 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 -team: - anonymous: true -licences: MIT License -traceability: - tracked_data: None - kyc: false -compliance: We will not comply -social_trust: Community -default_privacy: true -funding: - type: Crowdfunding - link: https://funding.wownero.com -project_status: - live_status: true - version: v0.11.1.0 - mainnet: true +- currency diff --git a/src/projects/x-cash/index.yaml b/src/projects/x-cash/index.yaml index c01290c0..7306fc76 100644 --- a/src/projects/x-cash/index.yaml +++ b/src/projects/x-cash/index.yaml @@ -1,17 +1,2 @@ -name: x-cash usecase: - - currency -description: Web3’s Private Public Computing Platform -ecosystem: xcash -project_status: 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 +- currency diff --git a/src/projects/xata/index.yaml b/src/projects/xata/index.yaml index 9a530880..7eed242a 100644 --- a/src/projects/xata/index.yaml +++ b/src/projects/xata/index.yaml @@ -1,9 +1,2 @@ -name: XATA -usecase: [defi] -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 +usecase: +- defi diff --git a/src/projects/xmtp-x-lens/index.yaml b/src/projects/xmtp-x-lens/index.yaml index 53865d52..f5c47f7d 100644 --- a/src/projects/xmtp-x-lens/index.yaml +++ b/src/projects/xmtp-x-lens/index.yaml @@ -1,19 +1,2 @@ -name: XMTP x Lens usecase: - - messaging -description: "Lens Protocol has adopted XMTP to provide a secure and private direct messaging layer for the entire Lens ecosystem" -team: - anonymous: true -links: - web: https://xmtp.org/ - github: https://github.com/xmtp/awesome-xmtp/ - docs: https://xmtp.org/docs/introduction - forum: https://community.xmtp.org/ - blog: https://blog.xmtp.com/careers/ - twitter: https://twitter.com/xmtp_ - discord: https://discord.com/invite/xmtp -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- messaging diff --git a/src/projects/xx-messenger/index.yaml b/src/projects/xx-messenger/index.yaml index 21dded84..f5c47f7d 100644 --- a/src/projects/xx-messenger/index.yaml +++ b/src/projects/xx-messenger/index.yaml @@ -1,20 +1,2 @@ -name: xx messenger usecase: - - messaging -description: "An ultra-private messaging app, powered by the quantum-resistant and decentralized xx network" -team: - anonymous: false -links: - web: https://elixxir.io - github: https://git.xx.network/elixxir/client-android - block_explorer: https://explorer.xx.network/#/explorer - whitepapers: https://xx.network/whitepapers/ - twitter: https://twitter.com/xx_network - forum: https://forum.xx.network/ - discord: https://discord.com/invite/kbS4dSrPCv - telegram: https://t.me/xxnetwork -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- messaging diff --git a/src/projects/xx-network/index.yaml b/src/projects/xx-network/index.yaml index e46ee5fa..d47c626f 100644 --- a/src/projects/xx-network/index.yaml +++ b/src/projects/xx-network/index.yaml @@ -1,18 +1,2 @@ -name: XX network usecase: - - infrastructure -description: The first and only quantum-resistant and privacy-focused blockchain ecosystem -links: - web: https://xx.network - github: https://git.xx.network/explore - whitepaper: https://xx.network/whitepapers/ - docs: https://blockchainapi.xx.network/ - twitter: https://twitter.com/xx_network -have_token: true -tokens: - - symbol: XX -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true +- infrastructure diff --git a/src/projects/yellow-submarine/index.yaml b/src/projects/yellow-submarine/index.yaml index 86697c6d..7eed242a 100644 --- a/src/projects/yellow-submarine/index.yaml +++ b/src/projects/yellow-submarine/index.yaml @@ -1,2 +1,2 @@ -name: Yellow Submarine -usecase: [defi] +usecase: +- defi diff --git a/src/projects/ywallet/index.yaml b/src/projects/ywallet/index.yaml index 2701f1eb..89eab459 100644 --- a/src/projects/ywallet/index.yaml +++ b/src/projects/ywallet/index.yaml @@ -1,9 +1,2 @@ -name: YWallet usecase: - - wallets -description: YWallet is a privacy-oriented wallet and messenger for Ycash and Zcash. -ecosystem: Ycash, Zcash -links: - web: https://ywallet.app/ -team: - anonymous: true +- wallets diff --git a/src/projects/zano/index.yaml b/src/projects/zano/index.yaml index e8f955bf..7306fc76 100644 --- a/src/projects/zano/index.yaml +++ b/src/projects/zano/index.yaml @@ -1,22 +1,2 @@ -name: Zano usecase: - - currency -description: A scalable and secure coin, with confidential assets support -ecosystem: Zano -project_status: - live_status: true - version: Mainnet - testnet: true - mainnet: true -links: - web: https://zano.org - github: https://github.com/hyle-team/zano - block_explorer: https://explorer.zano.org/ - docs: https://docs.zano.org/ - - blog: https://blog.zano.org/ - twitter: https://x.com/zano_project - discord: https://discord.com/invite/wE3rmYY - telegram: https://t.me/zanocoin -team: - anonymous: false +- currency diff --git a/src/projects/zcash/index.yaml b/src/projects/zcash/index.yaml index 627261ab..7306fc76 100644 --- a/src/projects/zcash/index.yaml +++ b/src/projects/zcash/index.yaml @@ -1,90 +1,2 @@ -name: Zcash -usecase: [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." -project_type: transaction -technology: - type: halo2 zk-SNARK - features: - - private - - trustless proof system -links: - web: https://z.cash/ - twitter: https://twitter.com/zcash - telegram: https://t.me/ - discord: https://discord.gg/zcash - blog: https://electriccoin.co/blog - block_explorer: https://zcashblockexplorer.com/ - 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 - frontend_anonymity: ( Nym Mixnet in-development ) - identity_integration: ( ZSA protocol identity in-development ) - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false - reversability_condition: viewing key, 51% attack (rollback limit = 100 blocks), payment disclosure - data_masking: shielded pool deposit - asset_custody_type: non-custody -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: - - name: NCC Group NU5 Review - link: https://research.nccgroup.com/2021/11/02/public-report-zcash-nu5-cryptography-review/ - time: Nov 2, 2021 - - name: NCC Group Zcash FROST Security Assesment - link: https://research.nccgroup.com/2023/10/23/public-report-zcash-frost-security-assessment/ - time: Oct 23, 2023 - - 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: - - 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: -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true +usecase: +- currency diff --git a/src/projects/zcloak/index.yaml b/src/projects/zcloak/index.yaml index d1c35a08..304e1715 100644 --- a/src/projects/zcloak/index.yaml +++ b/src/projects/zcloak/index.yaml @@ -1,13 +1,2 @@ -name: zCloak usecase: - - did -description: Privacy-first DID and verifiable computation infrastructure -links: - web: https://zcloak.network - github: https://github.com/zCloak-Network - docs: https://zcloak-network.notion.site/166923ca03f0410888ad3860c96c0894?v=9aa8a4f5436942d0b224da99ad2a4565 - - blog: https://zcloaknetwork.medium.com/ - twitter: https://x.com/zcloaknetwork - discord: https://discord.com/invite/wcKt6MDRJz -have_token: true +- did diff --git a/src/projects/zeal/index.yaml b/src/projects/zeal/index.yaml index c110e6a8..89eab459 100644 --- a/src/projects/zeal/index.yaml +++ b/src/projects/zeal/index.yaml @@ -1,9 +1,2 @@ -name: Zeal usecase: - - wallets -description: The web3 wallet that defends your crypto and privacy -ecosystem: multichain -links: - web: https://www.zeal.app/ -team: - anonymous: true +- wallets diff --git a/src/projects/zecrey-wallet/index.yaml b/src/projects/zecrey-wallet/index.yaml index e698c07f..89eab459 100644 --- a/src/projects/zecrey-wallet/index.yaml +++ b/src/projects/zecrey-wallet/index.yaml @@ -1,10 +1,2 @@ -name: Zecrey Wallet usecase: - - 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 -links: - web: https://www.zecrey.com/ - github: https://github.com/Zecrey-Labs -team: - anonymous: true +- wallets diff --git a/src/projects/zecrey/index.yaml b/src/projects/zecrey/index.yaml index 9f3f9e40..f8ecdede 100644 --- a/src/projects/zecrey/index.yaml +++ b/src/projects/zecrey/index.yaml @@ -1,15 +1,2 @@ -name: Zecrey usecase: - - layer-2 -description: zkRollup basedLayer 2 protocol featuring privacy and scalability -ecosystem: multichain -links: - web: https://www.zecrey.com - github: https://github.com/Zecrey-Labs - docs: https://docs.zecrey.com/ - blog: https://zecrey.medium.com/ - twitter: https://x.com/ZecreyLabs - discord: https://discord.com/invite/MdajwkVZE4 - -team: - anonymous: true +- layer-2 diff --git a/src/projects/zengo/index.yaml b/src/projects/zengo/index.yaml index 69ffeb07..89eab459 100644 --- a/src/projects/zengo/index.yaml +++ b/src/projects/zengo/index.yaml @@ -1,10 +1,2 @@ -name: ZenGo usecase: - - wallets -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 +- wallets diff --git a/src/projects/zephyr-protocol/index.yaml b/src/projects/zephyr-protocol/index.yaml index fb2145d4..7306fc76 100644 --- a/src/projects/zephyr-protocol/index.yaml +++ b/src/projects/zephyr-protocol/index.yaml @@ -1,44 +1,2 @@ -name: Zephyr Protocol usecase: - - currency -description: "The Untraceable Stablecoin Protocol" -ecosystem: Zephyr -links: - web: https://zephyrprotocol.com/ - github: https://github.com/monero-ecosystem - block_explorer: https://explorer.zephyrprotocol.com/ - whitepaper: https://static1.squarespace.com/static/64707f0b29789a5633c33117/t/6486fe5a300eb9556ff3f54b/1686568545016/Zephyr_Whitepaper_v1.pdf - blog: https://medium.com/@zephyrcurrencyprotocol - twitter: https://twitter.com/zephyr_org - discord: https://discord.gg/y4mzbDYSqQ - telegram: https://t.me/zephyrprotocol -team: - anonymous: true -technology: - type: Monero - features: - - Bulletproofs - - Ring signatures -blockchain_features: - p2p: true - encryption: Cryptonote - data_masking: Ring signature - viewing_key: true - dissapearing_tx: true - connected_tx: false - revealed_recipient: false - revealed_sender: false - revealed_ammount: false -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 +- currency diff --git a/src/projects/zero-knowledge-verifiable-credential/index.yaml b/src/projects/zero-knowledge-verifiable-credential/index.yaml index 4262ab76..304e1715 100644 --- a/src/projects/zero-knowledge-verifiable-credential/index.yaml +++ b/src/projects/zero-knowledge-verifiable-credential/index.yaml @@ -1,7 +1,2 @@ -name: Zero Knowledge Verifiable Credential usecase: - - did -description: "Sketching out verifiable credential selective disclosure presentation on Mina with snarky.js" -links: - web: https://github.com/mono-koto/zkcred -have_token: true +- did diff --git a/src/projects/zero/index.yaml b/src/projects/zero/index.yaml index 93ae1f5b..7306fc76 100644 --- a/src/projects/zero/index.yaml +++ b/src/projects/zero/index.yaml @@ -1,16 +1,2 @@ -name: Zero - usecase: - - currency -description: Private transactions -links: - web: https://zero.directory - github: https://github.com/zerocurrencycoin - block_explorer: https://insight.zeromachine.io/insight/ - - blog: https://zero.directory/news/ - twitter: https://x.com/ZeroCurrencies - discord: https://discord.com/invite/Jq5knn5 - telegram: https://t.me/zerocurrency -team: - anonymous: true +- currency diff --git a/src/projects/zerochain/index.yaml b/src/projects/zerochain/index.yaml index c4959d0e..93fa3a54 100644 --- a/src/projects/zerochain/index.yaml +++ b/src/projects/zerochain/index.yaml @@ -1,6 +1,2 @@ -name: Zerochain usecase: - - dapps -description: Zerochain is a generic, privacy-protecting layer on top of Substrate. -links: - web: https://layerxcom.github.io/zerochain-book/ +- dapps diff --git a/src/projects/zeronet/index.yaml b/src/projects/zeronet/index.yaml index 952e7bf7..d47c626f 100644 --- a/src/projects/zeronet/index.yaml +++ b/src/projects/zeronet/index.yaml @@ -1,7 +1,2 @@ -name: ZeroNet usecase: - - infrastructure -description: "Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network" -links: - web: https://zeronet.io - github: https://github.com/HelloZeroNet/ZeroNet +- infrastructure diff --git a/src/projects/zeropool/index.yaml b/src/projects/zeropool/index.yaml index 6bf8bbcd..d47c626f 100644 --- a/src/projects/zeropool/index.yaml +++ b/src/projects/zeropool/index.yaml @@ -1,17 +1,2 @@ -name: ZeroPool usecase: - - infrastructure -description: "Is fully private multi-blockchain solution. Low transaction fees, atomic swaps and common anonymity set" -team: - anonymous: true -links: - web: https://zeropool.network/#rec246911850 - github: https://github.com/zeropoolnetwork - whitepaper: https://zeropool.network/pdf/WriteupZeroPoolShardedStorage.pdf - blog: https://medium.com/zeropool - twitter: https://twitter.com/ZeroPoolNetwork -project_status: - live_status: true - version: Testnet - testnet: true - mainnet: false +- infrastructure diff --git a/src/projects/zion/index.yaml b/src/projects/zion/index.yaml index 390d53a8..f5c47f7d 100644 --- a/src/projects/zion/index.yaml +++ b/src/projects/zion/index.yaml @@ -1,14 +1,2 @@ -name: Zion usecase: - - messaging -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 -links: - web: https://www.zion.fyi - github: https://github.com/getzion/ - whitepaper: https://github.com/getZION/whitepaper-documents/tree/master/schemas - docs: https://docs.zion.fyi/ - blog: https://medium.com/@zion-fyi - twitter: https://twitter.com/get_Zion - telegram: https://t.me/getZION +- messaging diff --git a/src/projects/zk-kit/index.yaml b/src/projects/zk-kit/index.yaml index 2ba79087..e5c8586f 100644 --- a/src/projects/zk-kit/index.yaml +++ b/src/projects/zk-kit/index.yaml @@ -1,12 +1 @@ -name: zk-kit usecase: infrastructure -description: "A set of reusable libraries for zero-knowledge technologies." -project_status: - live_status: true -team: - anonymous: true -links: - github: https://github.com/privacy-scaling-explorations/zk-kit - web: https://zkkit.pse.dev/ -technology: - type: javascript, circom, solidity, noir diff --git a/src/projects/zkchaos/index.yaml b/src/projects/zkchaos/index.yaml index baae3785..f8ecdede 100644 --- a/src/projects/zkchaos/index.yaml +++ b/src/projects/zkchaos/index.yaml @@ -1,11 +1,2 @@ -name: ZKCHAOS usecase: - - 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 -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 +- layer-2 diff --git a/src/projects/zkcloud/index.yaml b/src/projects/zkcloud/index.yaml index 07f4acc0..c6529dd0 100644 --- a/src/projects/zkcloud/index.yaml +++ b/src/projects/zkcloud/index.yaml @@ -1,11 +1,2 @@ -name: ZkCloud usecase: - - computing-network -description: Decentralized, Private Computing. -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 +- computing-network diff --git a/src/projects/zkmaps/index.yaml b/src/projects/zkmaps/index.yaml index 6d903671..93fa3a54 100644 --- a/src/projects/zkmaps/index.yaml +++ b/src/projects/zkmaps/index.yaml @@ -1,7 +1,2 @@ -name: ZkMaps usecase: - - dapps -description: Protecting users location with ZK proofs -links: - web: https://gitcoin.co/grants/5781/zkmaps-proof-of-location - github: https://github.com/zkMaps +- dapps diff --git a/src/projects/zkmoney/index.yaml b/src/projects/zkmoney/index.yaml index 3efdf537..7eed242a 100644 --- a/src/projects/zkmoney/index.yaml +++ b/src/projects/zkmoney/index.yaml @@ -1,2 +1,2 @@ -name: zk.money -usecase: [defi] +usecase: +- defi diff --git a/src/projects/zkpass/index.yaml b/src/projects/zkpass/index.yaml index c730d6ce..304e1715 100644 --- a/src/projects/zkpass/index.yaml +++ b/src/projects/zkpass/index.yaml @@ -1,14 +1,2 @@ -name: zkPass usecase: - - did -description: Protocol for Private Data based on MPC, ZKP, 3P-TLS -links: - web: https://zkpass.org/home - github: https://github.com/zkPassOfficial - docs: https://zkpass.gitbook.io/zkpass - whitepaper: https://docsend.com/view/5wdg66beu7m95jf3 - - blog: https://medium.com/zkpass - twitter: https://x.com/zkPass - discord: https://discord.com/invite/zkpass -have_token: true +- did diff --git a/src/projects/zkusd/index.yaml b/src/projects/zkusd/index.yaml index 6b8c7a1e..7eed242a 100644 --- a/src/projects/zkusd/index.yaml +++ b/src/projects/zkusd/index.yaml @@ -1,2 +1,2 @@ -name: zkUSD -usecase: [defi] +usecase: +- defi diff --git a/src/projects/zkvalidator/index.yaml b/src/projects/zkvalidator/index.yaml index 87cb5606..7eed242a 100644 --- a/src/projects/zkvalidator/index.yaml +++ b/src/projects/zkvalidator/index.yaml @@ -1,2 +1,2 @@ -name: ZKValidator -usecase: [defi] +usecase: +- defi diff --git a/src/projects/zoci/index.yaml b/src/projects/zoci/index.yaml index 568547f9..f0b20bd4 100644 --- a/src/projects/zoci/index.yaml +++ b/src/projects/zoci/index.yaml @@ -1,18 +1,2 @@ -name: Zoci usecase: - - rpc -description: Private RPC services -links: - web: https://zoci.io - github: https://github.com/zoci-io - blog: https://medium.com/@zoci_io - twitter: https://x.com/Zoci_io - discord: https://discord.com/invite/vv3HXAVmMq - telegram: https://t.me/zoci_io -have_token: true -token_link: https://arbiscan.io/token/0x45d780CfE839b8a8f292C9E26aa5D1805bc536dc -tokens: - - name: ZociToken - symbol: ZOCI - network: Arbitrum - contract_address: "0x45d780cfe839b8a8f292c9e26aa5d1805bc536dc" +- rpc diff --git a/src/projects/zoker/index.yaml b/src/projects/zoker/index.yaml index 175e5642..89eab459 100644 --- a/src/projects/zoker/index.yaml +++ b/src/projects/zoker/index.yaml @@ -1,10 +1,2 @@ -name: Zoker usecase: - - wallets -description: The foremost ZK-based Wallet in Web3 -ecosystem: multichain -links: - web: https://zoker.tech/ - docs: https://zoker.tech/wp.pdf -team: - anonymous: true +- wallets diff --git a/src/projects/zus/index.yaml b/src/projects/zus/index.yaml index ca8b0122..886a0bb7 100644 --- a/src/projects/zus/index.yaml +++ b/src/projects/zus/index.yaml @@ -1,28 +1,2 @@ -name: Züs usecase: - - storage -description: "A high-performance storage network powering limitless applications" -team: - anonymous: true -links: - web: https://zus.network - github: https://github.com/0chain - blog: https://zus.network/blog/ - whitepaper: https://zus.network/whitepapers/ - docs: https://docs.zus.network/ - twitter: https://twitter.com/zus_network - discord: https://discord.com/invite/h3BFjdtCp4 - facebook: https://www.facebook.com/ZusNetwork - telegram: https://t.me/zus_network -project_status: - live_status: true - version: Mainnet - testnet: false - mainnet: true -have_token: true -token_link: https://etherscan.io/token/0xb9ef770b6a5e12e45983c5d80545258aa38f3b78 -tokens: - - name: ZCN Token - symbol: ZCN - network: Ethereum - contract_address: "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78" +- storage