diff --git a/schema/project.yaml b/schema/project.yaml index 212330ee..bfd2a514 100644 --- a/schema/project.yaml +++ b/schema/project.yaml @@ -4,6 +4,9 @@ required: - id - name - categories + - have_token + - third_party_dependency + properties: id: type: string @@ -39,6 +42,7 @@ properties: type: string have_token: type: boolean + token_link: type: string format: uri @@ -64,6 +68,9 @@ properties: type: string team: type: object + required: + - anonymous + properties: anonymous: type: boolean @@ -115,8 +122,12 @@ properties: link: type: string format: uri + sunset: type: boolean + required: + - sunset + # LINKS --------------------------------------------------------------------- links: type: object @@ -201,6 +212,9 @@ properties: - features blockchain_features: type: object + required: + - opensource + - p2p properties: encryption: type: string @@ -224,6 +238,11 @@ properties: type: string upgradability: type: object + required: + - enabled + - viewing_key + - dissapearing_tx + - connected_tx properties: enabled: type: boolean @@ -256,6 +275,8 @@ properties: type: string privacy_policy: type: object + required: + - defined properties: defined: type: boolean @@ -310,6 +331,10 @@ properties: type: boolean project_status: type: object + required: + - live_status + - testnet + - mainnet properties: live_status: type: boolean diff --git a/script.py b/script.py deleted file mode 100644 index 51786e17..00000000 --- a/script.py +++ /dev/null @@ -1,64 +0,0 @@ -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 51e75757..00e4a145 100644 --- a/src/projects/01-labs/index.yaml +++ b/src/projects/01-labs/index.yaml @@ -1,11 +1,14 @@ name: 01 Labs -categories: [applications] -description: "Catalyzing a new generation of applications powered by zero knowledge cryptography." +categories: +- applications +description: Catalyzing a new generation of applications powered by zero knowledge + cryptography. links: web: https://o1labs.org github: https://github.com/o1-labs blog: https://www.o1labs.org/blog twitter: https://x.com/o1_labs - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/0xtip/index.yaml b/src/projects/0xtip/index.yaml index cf79dd51..5b06a902 100644 --- a/src/projects/0xtip/index.yaml +++ b/src/projects/0xtip/index.yaml @@ -1,8 +1,11 @@ name: 0xTIP -categories: [applications] -description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers." +categories: +- applications +description: 0xTIP features mixing, private bridging from Ethereum to BNB chain as + well as off-chain transfers. links: web: https://0xmonero.com/mixer - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/1984/index.yaml b/src/projects/1984/index.yaml index 5905548c..80a7385f 100644 --- a/src/projects/1984/index.yaml +++ b/src/projects/1984/index.yaml @@ -1,11 +1,16 @@ -name: "1984" -categories: [infrastructure] -description: "High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero." +name: '1984' +categories: +- infrastructure +description: High-quality web hosting and VPS service provider based in Iceland that + respects and protects the civil and political rights of customers. And offers a + free DNS service and runs its services with 100% green energy. Does accept Bitcoin + & Monero. team: anonymous: true links: web: https://1984.hosting/ docs: https://kb.1984hosting.com/doku.php?id=start - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/1rpc/index.yaml b/src/projects/1rpc/index.yaml index cf77c31f..b1befdf5 100644 --- a/src/projects/1rpc/index.yaml +++ b/src/projects/1rpc/index.yaml @@ -1,10 +1,12 @@ name: 1RPC -categories: [infrastructure] -description: "The Web3 Private RPC Relay" +categories: +- infrastructure +description: The Web3 Private RPC Relay links: web: https://www.1rpc.io docs: https://docs.ata.network/1rpc/introduction/ twitter: https://x.com/1rpc_ - usecases: - - rpc-provider +- rpc-provider +have_token: false +third_party_dependency: false diff --git a/src/projects/2fa-guru/index.yaml b/src/projects/2fa-guru/index.yaml index a44d5f4f..d61761c8 100644 --- a/src/projects/2fa-guru/index.yaml +++ b/src/projects/2fa-guru/index.yaml @@ -1,9 +1,12 @@ name: 2FA Guru -categories: [applications] -description: "A simple solution to interact with DApps by enforcing an additional signature check before each transaction" +categories: +- applications +description: A simple solution to interact with DApps by enforcing an additional signature + check before each transaction links: web: https://www.2fa.guru github: https://github.com/skiff-org/skiff-mail - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/AIOZ network/index.yaml b/src/projects/AIOZ network/index.yaml index 86295856..e80e03c0 100644 --- a/src/projects/AIOZ network/index.yaml +++ b/src/projects/AIOZ network/index.yaml @@ -1,7 +1,8 @@ id: aioz-network name: Aioz network -categories: [applications] -description: "DePIN for Web3 AI, Storage & Streaming" +categories: +- applications +description: DePIN for Web3 AI, Storage & Streaming links: web: https://aioz.network/ block_explorer: https://t.me/aioznetwork @@ -9,6 +10,7 @@ links: blog: https://aioz.network/blog twitter: https://x.com/AIOZNetwork telegram: https://t.me/aioznetwork - usecases: - - ai +- ai +have_token: false +third_party_dependency: false diff --git a/src/projects/Adamant/index.yaml b/src/projects/Adamant/index.yaml index 6598fcd6..517924bf 100644 --- a/src/projects/Adamant/index.yaml +++ b/src/projects/Adamant/index.yaml @@ -1,11 +1,10 @@ id: adamant name: Adamant -categories: [social-and-communications] -description: "Decentralized anonymous blockchain Messenger & crypto Wallet" - +categories: +- social-and-communications +description: Decentralized anonymous blockchain Messenger & crypto Wallet team: anonymous: true - links: web: https://adamant.im/ github: https://github.com/adamant-im @@ -14,19 +13,17 @@ links: blog: https://news.adamant.im/ twitter: https://x.com/adamant_im telegram: https://t.me/adamant_eng - project_status: live_status: true version: Mainnet testnet: false mainnet: true - -have_token: true +have_token: false token_link: https://www.coingecko.com/en/coins/adamant-messenger tokens: - - name: ADMToken - symbol: $ADM - network: Ethereum - +- name: ADMToken + symbol: $ADM + network: Ethereum usecases: - - messaging +- messaging +third_party_dependency: false diff --git a/src/projects/AnonKlub/index.yaml b/src/projects/AnonKlub/index.yaml index 0e1f7649..ffb8fa67 100644 --- a/src/projects/AnonKlub/index.yaml +++ b/src/projects/AnonKlub/index.yaml @@ -1,7 +1,9 @@ id: anon-club name: AnonKlub -categories: [applications] -description: "AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership." +categories: +- applications +description: AnonKlub is a tool designed for Ethereum developers that allows for anonymous + proof of Ethereum address ownership. project_status: live_status: false version: testnet @@ -15,7 +17,9 @@ links: github: https://github.com/anonklub/anonklub technology: type: circom, snarkjs, halo2 - features: ["zkp"] - + features: + - zkp usecases: - - did +- did +have_token: false +third_party_dependency: false diff --git a/src/projects/Arcium/index.yaml b/src/projects/Arcium/index.yaml index fb2ae84b..21eeacbc 100644 --- a/src/projects/Arcium/index.yaml +++ b/src/projects/Arcium/index.yaml @@ -1,7 +1,8 @@ id: arcium -name: "Arcium" -categories: [infrastructure] -description: "The first parallelized confidential computing network" +name: Arcium +categories: +- infrastructure +description: The first parallelized confidential computing network links: web: https://arcium.com/ github: https://github.com/elusiv-privacy @@ -9,3 +10,5 @@ links: blog: https://blog.arcium.com/ twitter: https://x.com/ArciumHQ discord: https://discord.com/invite/arcium +have_token: false +third_party_dependency: false diff --git a/src/projects/Bandada/index.yaml b/src/projects/Bandada/index.yaml index 7056e5fc..f8aecbb2 100644 --- a/src/projects/Bandada/index.yaml +++ b/src/projects/Bandada/index.yaml @@ -1,9 +1,14 @@ id: bandada name: Bandada -categories: [applications] -description: "An open-source system for managing privacy-preserving groups of anonymous individuals." +categories: +- applications +description: An open-source system for managing privacy-preserving groups of anonymous + individuals. project_status: - version: "testnet" + version: testnet + live_status: true + mainnet: false + testnet: true team: anonymous: true links: @@ -11,6 +16,7 @@ links: docs: https://docs.bandada.pse.dev/ github: https://github.com/bandada-infra/bandada type: semaphore, zk-kit - usecases: - - did +- did +have_token: false +third_party_dependency: false diff --git a/src/projects/BlockBlend/index.yaml b/src/projects/BlockBlend/index.yaml index e893b2a7..70a79a55 100644 --- a/src/projects/BlockBlend/index.yaml +++ b/src/projects/BlockBlend/index.yaml @@ -1,15 +1,19 @@ id: blockblend name: BlockBlend -categories: [applications] -ecosystem: [ethereum, polygon, base, bnb, solana] -description: "Privacy Cross-Chain Decentralized Services" - +categories: +- applications +ecosystem: +- ethereum +- polygon +- base +- bnb +- solana +description: Privacy Cross-Chain Decentralized Services team: anonymous: false teammembers: - - name: Tom - link: https://x.com/TomBlockBlend - + - name: Tom + link: https://x.com/TomBlockBlend links: web: https://blockblend.io/ docs: https://docs.blockblend.io/ @@ -17,20 +21,18 @@ links: 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 +have_token: false token_link: https://etherscan.io/address/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124 tokens: - - name: BBL Tpken - symbol: $BBL - network: Ethereum - contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124" - +- name: BBL Tpken + symbol: $BBL + network: Ethereum + contract_address: '0x0a44a7ccea34a7563ba1d45a5f757d0b02281124' usecases: - - bridge +- bridge +third_party_dependency: false diff --git a/src/projects/Broearn/index.yaml b/src/projects/Broearn/index.yaml index 0a959e72..01683215 100644 --- a/src/projects/Broearn/index.yaml +++ b/src/projects/Broearn/index.yaml @@ -1,25 +1,23 @@ id: broearn name: Broearn -categories: [applications] -description: "Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser" - +categories: +- applications +description: Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 + browser team: anonymous: true - links: web: https://www.broearn.com/ docs: https://docs.broearn.com/ 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 - usecases: - - browser +- browser +third_party_dependency: false diff --git a/src/projects/ChainPort/index.yaml b/src/projects/ChainPort/index.yaml index 7d08a13e..89184085 100644 --- a/src/projects/ChainPort/index.yaml +++ b/src/projects/ChainPort/index.yaml @@ -1,15 +1,22 @@ id: chainport name: ChainPort -categories: [infrastructure] -ecosystem: [ethereum, arbitrum, optimism, base, bnb, fantom, polygon, avalanche] -description: "next-gen custodian secure bridge" - +categories: +- infrastructure +ecosystem: +- ethereum +- arbitrum +- optimism +- base +- bnb +- fantom +- polygon +- avalanche +description: next-gen custodian secure bridge team: anonymous: false teammembers: - - name: DcentraLab - link: https://x.com/DcentraLab - + - name: DcentraLab + link: https://x.com/DcentraLab links: web: https://www.chainport.io/private-bridge github: https://github.com/chainport @@ -17,20 +24,18 @@ links: 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 +have_token: false token_link: https://etherscan.io/token/0x104f3152d8ebfc3f679392977356962ff36566ac tokens: - - name: PORTX Token - symbol: $PORTX - network: Ethereum - contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac" - +- name: PORTX Token + symbol: $PORTX + network: Ethereum + contract_address: '0x104f3152d8ebfc3f679392977356962ff36566ac' usecases: - - bridge +- bridge +third_party_dependency: false diff --git a/src/projects/Chainback/index.yaml b/src/projects/Chainback/index.yaml index 559b9c32..df6fe89d 100644 --- a/src/projects/Chainback/index.yaml +++ b/src/projects/Chainback/index.yaml @@ -1,12 +1,15 @@ id: chainback name: Chainback -categories: [applications] -ecosystem: [ethereum, solana, bsc, polygon] -description: "Ultimate Cloud Computing & File Storage" - +categories: +- applications +ecosystem: +- ethereum +- solana +- bsc +- polygon +description: Ultimate Cloud Computing & File Storage team: anonymous: true - links: web: https://chainback.org/ docs: https://chainback.gitbook.io/chainback-whitepaper @@ -15,38 +18,31 @@ links: blog: https://medium.com/@chainback.archive twitter: https://x.com/ChainbackWeb3 telegram: https://t.me/chainback_archive - sunset: false - tokens: - - name: ARCHIVE Token - symbol: $ARCHIVE - network: Ethereum - contract_address: "0xC7f950271d118A5bdF250dFfc39128DCCED8472C" - token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C - +- 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 - + p2p: 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 - usecases: - - storage +- storage +have_token: false diff --git a/src/projects/Cloak-ai/index.yaml b/src/projects/Cloak-ai/index.yaml index 78672842..41d24672 100644 --- a/src/projects/Cloak-ai/index.yaml +++ b/src/projects/Cloak-ai/index.yaml @@ -1,18 +1,21 @@ id: cloak-ai name: Cloak Ai -categories: [applications] -description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business" +categories: +- applications +description: The purpose-built Web3 GenAI engine for the privacy conscious individual + or business links: web: https://www.cloakai.xyz/ twitter: https://x.com/Cloak_xyz telegram: https://t.me/cloakai -have_token: true +have_token: false token_link: https://etherscan.io/token/0x13f7b4581df403542286563c2f762077b2a368da tokens: - - name: Cloak - symbol: CLOAK - network: Ethereum - contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da" +- name: Cloak + symbol: CLOAK + network: Ethereum + contract_address: '0x13f7B4581dF403542286563C2F762077B2a368Da' sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/Codex/index.yaml b/src/projects/Codex/index.yaml index b01bb3b9..4d8f9ee0 100644 --- a/src/projects/Codex/index.yaml +++ b/src/projects/Codex/index.yaml @@ -1,14 +1,13 @@ id: codex name: Codex categories: - - applications +- applications ecosystem: - - ethereum -description: "Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship." - +- ethereum +description: Codex is a durable, decentralised data storage protocol, created so the + world community can preserve its most important knowledge without risk of censorship. team: anonymous: false - links: web: https://codex.storage github: https://github.com/codex-storage @@ -17,16 +16,15 @@ links: blog: https://blog.codex.storage twitter: https://x.com/codex_storage discord: https://discord.com/invite/codex-storage - farcaster: "https://farcaster/@codexstorage" - + farcaster: https://farcaster/@codexstorage project_status: live_status: true version: Codex Devnet testnet: false mainnet: false - traceability: kyc: false - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/Coti/index.yaml b/src/projects/Coti/index.yaml index 58424f95..18e2a82f 100644 --- a/src/projects/Coti/index.yaml +++ b/src/projects/Coti/index.yaml @@ -1,18 +1,17 @@ id: coti name: Coti -categories: [infrastructure] -description: "EVM L2 solving blockchain privacy with Garbled Circuits" - +categories: +- infrastructure +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 - + - 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 @@ -22,20 +21,18 @@ links: 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 +have_token: false token_link: https://etherscan.io/token/0xddb3422497e61e13543bea06989c0789117555c5 tokens: - - name: CotiToken - symbol: $COTI - network: Ethereum - contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5" - +- name: CotiToken + symbol: $COTI + network: Ethereum + contract_address: '0xDDB3422497E61e13543BeA06989C0789117555c5' usecases: - - eth-layer-2 +- eth-layer-2 +third_party_dependency: false diff --git a/src/projects/Cursive/index.yaml b/src/projects/Cursive/index.yaml index e1a04527..892c331c 100644 --- a/src/projects/Cursive/index.yaml +++ b/src/projects/Cursive/index.yaml @@ -1,10 +1,13 @@ id: cursive -name: "Cursive" -categories: [applications] -description: "A cryptography lab focused on human-first applications of signed data." +name: Cursive +categories: +- applications +description: A cryptography lab focused on human-first applications of signed data. links: web: https://www.cursive.team/ github: https://github.com/cursive-team blog: https://www.cursive.team/blog twitter: https://x.com/cursive_team telegram: https://t.me/+z5REVOBXp_hmNDIx +have_token: false +third_party_dependency: false diff --git a/src/projects/DeChat/index.yaml b/src/projects/DeChat/index.yaml index 0605c901..ffc1dc27 100644 --- a/src/projects/DeChat/index.yaml +++ b/src/projects/DeChat/index.yaml @@ -1,41 +1,39 @@ id: dechat name: DeChat -categories: [social-and-communications] -description: "open and secure web3 communications protocol that powers decentralized user interactions" - +categories: +- social-and-communications +description: open and secure web3 communications protocol that powers decentralized + user interactions team: anonymous: false 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/ - + - 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 +have_token: false token_link: https://bscscan.com/token/0xd69ee2e508363fed57f89917d5ca03e715ee5519 tokens: - - name: DeChat Token - symbol: $DeChat - network: BSC - contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519" - +- name: DeChat Token + symbol: $DeChat + network: BSC + contract_address: '0xD69ee2e508363FEd57f89917D5ca03e715ee5519' usecases: - - messaging +- messaging +third_party_dependency: false diff --git a/src/projects/DeGuard/index.yaml b/src/projects/DeGuard/index.yaml index 6fa4cd03..b709901f 100644 --- a/src/projects/DeGuard/index.yaml +++ b/src/projects/DeGuard/index.yaml @@ -1,14 +1,13 @@ id: deguard name: DeGuard -categories: [applications] -description: "Provide utimate privacy based on web3" - +categories: +- applications +description: Provide utimate privacy based on web3 team: anonymous: false teammembers: - - name: Niktim - link: https://x.com/Crypto_Niktim - + - name: Niktim + link: https://x.com/Crypto_Niktim links: web: https://deguard.io/ github: https://github.com/deguardvpn @@ -16,14 +15,12 @@ links: 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 - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/DeNet/index.yaml b/src/projects/DeNet/index.yaml index 5b5c9245..5557000e 100644 --- a/src/projects/DeNet/index.yaml +++ b/src/projects/DeNet/index.yaml @@ -1,17 +1,17 @@ id: denet name: DeNet -categories: [applications] -ecosystem: [polygon] -description: "Decentralized Storage Protocol for Web3 services " - +categories: +- applications +ecosystem: +- polygon +description: 'Decentralized Storage Protocol for Web3 services ' team: anonymous: false teammembers: - - name: Denis Shelestov - link: https://x.com/djdeniro1 - - name: Daniil Maslov - link: https://x.com/tttcrp - + - 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 @@ -20,32 +20,26 @@ links: twitter: https://x.com/DeNetPro telegram: https://t.me/denetnews discord: https://discord.com/invite/PSnjPCq4x5 - sunset: false - tokens: - - name: DeNet File Token - symbol: $DE - network: Polygon - contract_address: "0x081ec4c0e30159c8259bad8f4887f83010a681dc" - token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc - +- 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 - + p2p: false privacy_policy: defined: false - default_privacy: true - traceability: kyc: false - compliance: false - storage: decentralized: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/Ergo/index.yaml b/src/projects/Ergo/index.yaml index 0045db2c..73b8ae8c 100644 --- a/src/projects/Ergo/index.yaml +++ b/src/projects/Ergo/index.yaml @@ -1,17 +1,19 @@ id: ergo-platform name: Ergo Platform -categories: [infrastructure] -ecosystem: [ergo, btc] -description: "Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools" - +categories: +- infrastructure +ecosystem: +- ergo +- btc +description: Ergo is the next-gen smart contract platform! Bringing economic freedom + to ordinary people through decentralized financial tools team: anonymous: false teammembers: - - name: Alex Chepurnoy - link: https://x.com/chepurnoy - - name: qx - link: https://x.com/qx_ergo - + - 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 @@ -22,34 +24,29 @@ links: twitter: https://x.com/ergo_platform telegram: https://t.me/Ergo_Chats discord: https://discord.com/invite/ergo-platform-668903786361651200 - sunset: false - tokens: - - name: Ergo Token - symbol: $ERG - network: Ergochain - token_link: https://www.coingecko.com/en/coins/ergo - +- name: Ergo Token + symbol: $ERG + network: Ergochain + token_link: https://www.coingecko.com/en/coins/ergo blockchain_features: opensource: true + p2p: false asset_custody_type: non-custody 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 - +- name: Jean-Philipee Aumasson + link: https://www.aumasson.jp/ + time: 2019-12 usecases: - - infrastructure +- infrastructure +have_token: false diff --git a/src/projects/Exabits/index.yaml b/src/projects/Exabits/index.yaml index 7ad5765d..b2e1907d 100644 --- a/src/projects/Exabits/index.yaml +++ b/src/projects/Exabits/index.yaml @@ -1,7 +1,8 @@ id: exabits name: Exabits -categories: [applications] -description: "Simplified Access to the Currency of the Future " +categories: +- applications +description: 'Simplified Access to the Currency of the Future ' team: anonymous: true links: @@ -13,5 +14,6 @@ links: telegram: https://t.me/+D0CulDl9udZjMWIx have_token: false sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/FairMath/index.yaml b/src/projects/FairMath/index.yaml index 9e31eb87..a06ff59b 100644 --- a/src/projects/FairMath/index.yaml +++ b/src/projects/FairMath/index.yaml @@ -1,9 +1,13 @@ id: fairmath -name: "FairMath" -categories: [applications] -description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)" +name: FairMath +categories: +- applications +description: Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption + (FHE) links: web: https://fairmath.xyz/ github: https://github.com/fairmath twitter: https://x.com/FairMath discord: https://discord.com/invite/NfhXwyr9M5 +have_token: false +third_party_dependency: false diff --git a/src/projects/Fhenix/index.yaml b/src/projects/Fhenix/index.yaml index 4c31f8e0..3c13049b 100644 --- a/src/projects/Fhenix/index.yaml +++ b/src/projects/Fhenix/index.yaml @@ -1,7 +1,8 @@ id: fhenix -name: "Fhenix" -categories: [applications] -description: "Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality." +name: Fhenix +categories: +- applications +description: Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality. links: web: https://www.fhenix.io/ github: https://github.com/FhenixProtocol @@ -10,3 +11,5 @@ links: blog: https://medium.com/@Fhenix twitter: https://x.com/FhenixIO discord: https://discord.com/invite/FuVgxrvJMY +have_token: false +third_party_dependency: false diff --git a/src/projects/Humanode/index.yaml b/src/projects/Humanode/index.yaml index 7b97daea..091ad38f 100644 --- a/src/projects/Humanode/index.yaml +++ b/src/projects/Humanode/index.yaml @@ -1,20 +1,22 @@ id: humanode name: Humanode -categories: [applications] -ecosystem: [polkadot] -description: "1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web" +categories: +- applications +ecosystem: +- polkadot +description: 1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for + the web team: anonymous: false teammembers: - - name: Dato Kavazi - link: https://x.com/DatoKavazi - - name: Sasha Shilina - link: https://x.com/sshshln - - name: Andrei Kraciun - link: https://x.com/andreikraciun - - name: Victor - link: https://x.com/tech_mingler - + - 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 @@ -25,33 +27,27 @@ links: twitter: https://x.com/humanode_io telegram: https://t.me/humanode discord: https://discord.com/invite/8my5gbgptx - sunset: false - tokens: - - name: Humanode Token - symbol: $HMND - network: Humanodechain - token_link: https://coinmarketcap.com/currencies/humanode/ - +- name: Humanode Token + symbol: $HMND + network: Humanodechain + token_link: https://coinmarketcap.com/currencies/humanode/ blockchain_features: opensource: true asset_custody_type: non-custody - + p2p: false 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" - +- name: Certik + link: https://skynet.certik.com/projects/humanode + time: '2023-01-30' usecases: - - did +- did +have_token: false diff --git a/src/projects/IVPN/index.yaml b/src/projects/IVPN/index.yaml index bac5722d..61583ec7 100644 --- a/src/projects/IVPN/index.yaml +++ b/src/projects/IVPN/index.yaml @@ -1,46 +1,43 @@ id: ivpn name: IVPN -categories: [applications] -description: "Audited, privacy focused VPN service." - +categories: +- applications +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 - + - 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 - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/Inco/index.yaml b/src/projects/Inco/index.yaml index a0d81dad..3d042708 100644 --- a/src/projects/Inco/index.yaml +++ b/src/projects/Inco/index.yaml @@ -1,7 +1,9 @@ id: inco -name: "Inco" -categories: [infrastructure] -description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains " +name: Inco +categories: +- infrastructure +description: 'Universal confidentiality layer for Web3, enabling the development of + next-generation dApps, providing confidentiality to existing blockchains ' team: anonymous: false links: @@ -13,3 +15,5 @@ links: twitter: https://x.com/inconetwork discord: https://discord.com/invite/fnKZp2qHPQ telgram: https://t.me/inconetwork +have_token: false +third_party_dependency: false diff --git a/src/projects/Intmax/index.yaml b/src/projects/Intmax/index.yaml index 515782f4..b2792bf8 100644 --- a/src/projects/Intmax/index.yaml +++ b/src/projects/Intmax/index.yaml @@ -1,18 +1,18 @@ id: intmax name: Intmax categories: - - infrastructure -ecosystem: [ethereum] +- infrastructure +ecosystem: +- ethereum project_type: Layer2 zk-rollup -description: "A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time." - +description: A zkRollup with a stateless architecture. Achieving hyper-scaling and + privacy at the same time. team: anonymous: false teammembers: - - name: Leona Hioki - role: Co-founder - link: https://x.com/HiokiLeona - + - name: Leona Hioki + role: Co-founder + link: https://x.com/HiokiLeona links: web: https://www.intmax.io/ github: https://github.com/InternetMaximalism @@ -21,14 +21,12 @@ links: 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 - usecases: - - eth-layer-2 +- eth-layer-2 +third_party_dependency: false diff --git a/src/projects/Kinto/index.yaml b/src/projects/Kinto/index.yaml index 13e64ad3..cd2bd11b 100644 --- a/src/projects/Kinto/index.yaml +++ b/src/projects/Kinto/index.yaml @@ -1,15 +1,14 @@ id: kinto name: Kinto -categories: [infrastructure] -description: "The safety-first L2 for Finance" - +categories: +- infrastructure +description: The safety-first L2 for Finance team: anonymous: false teammembers: - - name: Ramon Recuero - role: CEO - link: https://x.com/ramonrecuero - + - name: Ramon Recuero + role: CEO + link: https://x.com/ramonrecuero links: web: https://www.kinto.xyz/ github: https://github.com/kintoxyz @@ -19,20 +18,18 @@ links: 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 +have_token: false token_link: https://kintoscan.io/token/0x010700808D59d2bb92257fCafACfe8e5bFF7aB87?chainid=7887 tokens: - - name: KINTO - symbol: $KINTO - network: Kinto - contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87" - +- name: KINTO + symbol: $KINTO + network: Kinto + contract_address: '0x010700808D59d2bb92257fCafACfe8e5bFF7aB87' usecases: - - eth-layer-2 +- eth-layer-2 +third_party_dependency: false diff --git a/src/projects/Mailchain/index.yaml b/src/projects/Mailchain/index.yaml index 46e6da66..fd3b6bb2 100644 --- a/src/projects/Mailchain/index.yaml +++ b/src/projects/Mailchain/index.yaml @@ -1,35 +1,35 @@ id: mailchain name: Mailchain -categories: [applications] -ecosystem: [ethereum] -description: "Web3 communication layer & web3 email for everyone" - +categories: +- applications +ecosystem: +- ethereum +description: Web3 communication layer & web3 email for everyone 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/ - + - 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 @@ -39,24 +39,20 @@ links: twitter: https://x.com/Mailchain_xyz lens: https://hey.xyz/u/mailchain farcaster: https://warpcast.com/mailchain - sunset: false - blockchain_features: opensource: true asset_custody_type: non-custody - + p2p: 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 - usecases: - - dapps +- dapps +have_token: false diff --git a/src/projects/Media network/index.yaml b/src/projects/Media network/index.yaml index fb5df614..752b5f81 100644 --- a/src/projects/Media network/index.yaml +++ b/src/projects/Media network/index.yaml @@ -1,12 +1,16 @@ id: media-network name: Media Network -categories: [infrastructure] -ecosystem: [ethereum, solana, base, bnb, optimist] -description: "The Web3 replacement for AWS and Google Cloud" - +categories: +- infrastructure +ecosystem: +- ethereum +- solana +- base +- bnb +- optimist +description: The Web3 replacement for AWS and Google Cloud team: anonymous: true - links: web: https://www.media.network/ github: https://github.com/mediafoundation @@ -15,29 +19,24 @@ links: twitter: https://x.com/Media_FDN telegram: https://t.me/Media_FDN discord: https://discord.com/invite/nyCS7ePWzf - sunset: false - tokens: - - name: Media Token - symbol: $MEDIA - network: Ethereum - contract_address: "0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1" - token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1 - +- 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 - + p2p: true privacy_policy: defined: false - default_privacy: true - traceability: kyc: false third_party_dependency: false compliance: false - usecases: - - computing +- computing +have_token: false diff --git a/src/projects/Nata network/index.yaml b/src/projects/Nata network/index.yaml index ce623a1e..4669a011 100644 --- a/src/projects/Nata network/index.yaml +++ b/src/projects/Nata network/index.yaml @@ -1,11 +1,10 @@ id: nata-network name: Nata network -categories: [infrastructure] -description: "Nata Network is your portal to private cross-chain transactions." - +categories: +- infrastructure +description: Nata Network is your portal to private cross-chain transactions. team: anonymous: true - links: web: https://app.natarouter.com/ github: https://github.com/shichiro-nakahara @@ -14,14 +13,12 @@ links: 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 - usecases: - - bridge +- bridge +third_party_dependency: false diff --git a/src/projects/Nuco.cloud/index.yaml b/src/projects/Nuco.cloud/index.yaml index 8ee8d9a0..1b4ae02f 100644 --- a/src/projects/Nuco.cloud/index.yaml +++ b/src/projects/Nuco.cloud/index.yaml @@ -1,7 +1,9 @@ id: nuco-cloud name: Nuco-cloud -categories: [applications] -description: "Enabling tomorrow’s tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction." +categories: +- applications +description: "Enabling tomorrow\u2019s 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 @@ -11,13 +13,14 @@ links: discord: https://discord.com/invite/5fSC5aEhpm facebook: https://www.facebook.com/nuco.cloud.distributedcloudcomputing/ telegram: https://t.me/officialnucocloudgroup -have_token: true +have_token: false token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B tokens: - - name: nuco.cloud - symbol: NCDT - network: Ethereum - contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b" +- name: nuco.cloud + symbol: NCDT + network: Ethereum + contract_address: '0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b' sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/OpSec/index.yaml b/src/projects/OpSec/index.yaml index 7ca99104..e42ad94a 100644 --- a/src/projects/OpSec/index.yaml +++ b/src/projects/OpSec/index.yaml @@ -1,20 +1,22 @@ id: opsec name: OpSec -categories: [applications] -description: " AI-powered decentralized cloud security." +categories: +- applications +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 +have_token: false token_link: https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98 tokens: - - name: Opsec - symbol: OPSEC - network: Ethereum - contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98" +- name: Opsec + symbol: OPSEC + network: Ethereum + contract_address: '0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98' sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/OriginTrail/index.yaml b/src/projects/OriginTrail/index.yaml index fed9e2f9..a41b3910 100644 --- a/src/projects/OriginTrail/index.yaml +++ b/src/projects/OriginTrail/index.yaml @@ -1,7 +1,8 @@ id: origin-trail name: OriginTrail -categories: [applications] -description: "Powering Verifiable Internet for Artificial Intelligence " +categories: +- applications +description: 'Powering Verifiable Internet for Artificial Intelligence ' links: web: https://origintrail.io/ github: https://github.com/OriginTrail @@ -11,5 +12,7 @@ links: twitter: https://x.com/origin_trail discord: https://discord.com/invite/QctFuPCMew telegram: https://t.me/origintrail - -usecases: [ai] +usecases: +- ai +have_token: false +third_party_dependency: false diff --git a/src/projects/OxO/index.yaml b/src/projects/OxO/index.yaml index eedcc1fd..9e192e11 100644 --- a/src/projects/OxO/index.yaml +++ b/src/projects/OxO/index.yaml @@ -1,21 +1,21 @@ id: oxo name: OxO -categories: [applications] -ecosystem: [ethereum] -description: "All-in-One Privacy Exchange" - +categories: +- applications +ecosystem: +- ethereum +description: All-in-One Privacy Exchange 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 - + - 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 @@ -24,29 +24,25 @@ links: twitter: https://x.com/0x0exchange telegram: https://t.me/Portal0x0 discord: https://discord.com/invite/0x0exchange - sunset: false - tokens: - - name: OxO Token - symbol: $OxO - network: Ethereum - contract_address: "0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5" - token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5 - +- 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 - + p2p: false privacy_policy: defined: false - default_privacy: true - traceability: kyc: false sign_in_type_requirments: wallet third_party_dependency: false compliance: false - -usecases: [ai] +usecases: +- ai +have_token: false diff --git a/src/projects/Presearch/index.yaml b/src/projects/Presearch/index.yaml index d12645a4..1970eb72 100644 --- a/src/projects/Presearch/index.yaml +++ b/src/projects/Presearch/index.yaml @@ -1,31 +1,31 @@ id: presearch name: Preserch -categories: [applications] -ecosystem: [ethereum] -description: "The Decentralized Search Engine with more than 4 million members" - +categories: +- applications +ecosystem: +- ethereum +description: The Decentralized Search Engine with more than 4 million members 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/ - + - 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\xEDs Dalmolin" + link: https://www.linkedin.com/in/luisdalmolin/ links: web: https://presearch.com/ github: https://github.com/presearchofficial @@ -36,39 +36,32 @@ links: twitter: https://x.com/presearchnews telegram: https://t.me/presearch discord: https://discord.com/invite/KUpshRZz2n - sunset: false - tokens: - - name: Pre Token - symbol: $PRE - network: Ethereum - contract_address: "0xEC213F83defB583af3A000B1c0ada660b1902A0F" - token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F - +- 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 - + p2p: 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 - +- name: Mantisec Lab + link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf + time: 2023-10 storage: decentralized: true - usecases: - - browser +- browser +have_token: false diff --git a/src/projects/Privasea/index.yaml b/src/projects/Privasea/index.yaml index 3e13a7c1..461a79b7 100644 --- a/src/projects/Privasea/index.yaml +++ b/src/projects/Privasea/index.yaml @@ -1,7 +1,8 @@ id: privasea -name: "Privasea" -categories: [infrastructure] -description: "An AI + DePIN Network enabled through FHEML" +name: Privasea +categories: +- infrastructure +description: An AI + DePIN Network enabled through FHEML links: web: https://www.privasea.ai/ github: https://github.com/Privasea @@ -11,3 +12,5 @@ links: twitter: https://x.com/Privasea_ai discord: https://discord.com/invite/yRtQGvWkvG telegram: https://t.me/Privasea_ai +have_token: false +third_party_dependency: false diff --git a/src/projects/Privy/index.yaml b/src/projects/Privy/index.yaml index 1af88896..1d446ec2 100644 --- a/src/projects/Privy/index.yaml +++ b/src/projects/Privy/index.yaml @@ -1,46 +1,42 @@ id: privy name: Privy -categories: [applications] -ecosystem: [solana] -description: "Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe." - +categories: +- applications +ecosystem: +- solana +description: Privy builds authentication, authorization and data control tooling so + developers can deliver amazing products that keep users safe. team: anonymous: false teammembers: - - name: Colfax - link: https://x.com/colfaxselby - - name: Jainil Sutaria - link: https://x.com/jainilsutaria1 - + - 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 - sunset: false - blockchain_features: opensource: true asset_custody_type: non-custody - + p2p: 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 - +- name: Zellic + link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf + time: 2023-08 usecases: - - wallets +- wallets +have_token: false diff --git a/src/projects/RawBox/index.yaml b/src/projects/RawBox/index.yaml index 5f72b011..56b21953 100644 --- a/src/projects/RawBox/index.yaml +++ b/src/projects/RawBox/index.yaml @@ -1,33 +1,31 @@ id: raw-box name: RawBox -categories: [hardware] -ecosystem: [nym] -description: "Redefined privacy-enabled router." - +categories: +- hardware +ecosystem: +- nym +description: Redefined privacy-enabled router. team: anonymous: false 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 - + - 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 - usecases: - - hardware +- hardware +third_party_dependency: false diff --git a/src/projects/Rido/index.yaml b/src/projects/Rido/index.yaml index 92b123a7..17233468 100644 --- a/src/projects/Rido/index.yaml +++ b/src/projects/Rido/index.yaml @@ -1,7 +1,8 @@ id: rido name: Rido -categories: [applications] -description: "Web3 Personal Data Layer for AI " +categories: +- applications +description: 'Web3 Personal Data Layer for AI ' team: anonymous: true links: @@ -13,5 +14,6 @@ links: telegram: https://t.me/+N6HLxnRL_WE5ZDVl have_token: false sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/Ritual/index.yaml b/src/projects/Ritual/index.yaml index 0f972b4d..e63cff15 100644 --- a/src/projects/Ritual/index.yaml +++ b/src/projects/Ritual/index.yaml @@ -1,30 +1,33 @@ id: ritual name: Ritual -categories: [applications] -ecosystem: [ethereum, solana, polygon] -description: "We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code." -product_launch_day: "2023" - +categories: +- applications +ecosystem: +- ethereum +- solana +- polygon +description: We are building a way for any protocol, application, or smart contract + to integrate AI models with a few lines of code. +product_launch_day: '2023' team: 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/ - + - 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 @@ -32,24 +35,21 @@ links: blog: https://ritual.net/blog twitter: https://x.com/ritualnet discord: https://discord.com/invite/ritual-net - sunset: false - funding: name: archetype link: https://ritual.net/blog/introducing-ritual - blockchain_features: opensource: true asset_custody_type: non-custody + p2p: true privacy_policy: defined: false - default_privacy: true - traceability: kyc: false third_party_dependency: false compliance: false - -usecases: [ai] +usecases: +- ai +have_token: false diff --git a/src/projects/Rotki/index.yaml b/src/projects/Rotki/index.yaml index b014d4f7..4ce2e29f 100644 --- a/src/projects/Rotki/index.yaml +++ b/src/projects/Rotki/index.yaml @@ -1,15 +1,22 @@ id: rotki name: Rotki -categories: [applications] -ecosystem: [ethereum, bitcoin, base, optimist, gnosis, scroll, zksync] -description: "rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy" - +categories: +- applications +ecosystem: +- ethereum +- bitcoin +- base +- optimist +- gnosis +- scroll +- zksync +description: rotki is an open source portfolio tracker, accounting and analytics tool + that protects your privacy team: anonymous: false teammembers: - - name: Lefteris Karapetsas - link: https://x.com/LefterisJP - + - name: Lefteris Karapetsas + link: https://x.com/LefterisJP links: web: https://rotki.com/ github: https://github.com/rotki/rotki @@ -17,24 +24,20 @@ links: blog: https://blog.rotki.com/ twitter: https://x.com/rotkiapp discord: https://discord.rotki.com/ - sunset: false - blockchain_features: opensource: true asset_custody_type: non-custody - + p2p: 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 - usecases: - - dapps +- dapps +have_token: false diff --git a/src/projects/Self/index.yaml b/src/projects/Self/index.yaml index 44824f61..dc2c2b82 100644 --- a/src/projects/Self/index.yaml +++ b/src/projects/Self/index.yaml @@ -1,42 +1,37 @@ id: self name: Self -categories: [applications] -description: "Build identification and personal data management for everything" - +categories: +- applications +description: Build identification and personal data management for everything 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/ - + - 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 - sunset: false - blockchain_features: opensource: true asset_custody_type: non-custody + p2p: false 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 - usecases: - - did +- did +have_token: false diff --git a/src/projects/Sentz/index.yaml b/src/projects/Sentz/index.yaml index 5298897d..dcb96a30 100644 --- a/src/projects/Sentz/index.yaml +++ b/src/projects/Sentz/index.yaml @@ -1,16 +1,15 @@ id: sentz name: Sentz -categories: [applications] -description: "Global payments app for Freelancers & Creators" - +categories: +- applications +description: Global payments app for Freelancers & Creators 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 - + - 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 @@ -19,34 +18,29 @@ links: blog: https://www.sentz.com/blog twitter: https://x.com/sentzapp discord: https://discord.com/invite/mobilecoin - sunset: false - tokens: - - name: Mobile Coin - symbol: $MOB - token_link: https://www.coingecko.com/en/coins/mobilecoin - +- name: Mobile Coin + symbol: $MOB + token_link: https://www.coingecko.com/en/coins/mobilecoin blockchain_features: opensource: true asset_custody_type: non-custody + p2p: false 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] - +- name: Trail of Bits + link: https://www.sentz.com/developers/audits +assets_used: +- EUSD usecases: - - dapps +- dapps +have_token: false diff --git a/src/projects/SightAI/index.yaml b/src/projects/SightAI/index.yaml index a6cc77ad..1d0abb63 100644 --- a/src/projects/SightAI/index.yaml +++ b/src/projects/SightAI/index.yaml @@ -1,7 +1,8 @@ id: sightai name: SightAI -categories: [applications] -description: "Decentralized AI inference with FHE" +categories: +- applications +description: Decentralized AI inference with FHE team: anonymous: true links: @@ -13,5 +14,6 @@ links: telegram: https://t.me/sightai have_token: false sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/Summa/index.yaml b/src/projects/Summa/index.yaml index 2fc8d8f1..8414fd00 100644 --- a/src/projects/Summa/index.yaml +++ b/src/projects/Summa/index.yaml @@ -1,15 +1,22 @@ id: summa name: Summa -categories: [infrastructure] -description: "Protocol enabling centralized exchanges to prove solvency without compromising private information." +categories: +- infrastructure +description: Protocol enabling centralized exchanges to prove solvency without compromising + private information. project_status: live_status: true + testnet: false + mainnet: false team: anonymous: true links: github: https://github.com/summa-dev technology: type: halo2 - features: [""] - -usecases: [infrastructure] + features: + - '' +usecases: +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/Sunscreen/index.yaml b/src/projects/Sunscreen/index.yaml index 87072ba2..d3cdb778 100644 --- a/src/projects/Sunscreen/index.yaml +++ b/src/projects/Sunscreen/index.yaml @@ -1,9 +1,12 @@ id: sunscreen -name: "Sunsscreen" -categories: [applications] -description: "Privacy engine of the new web." +name: Sunsscreen +categories: +- applications +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 +have_token: false +third_party_dependency: false diff --git a/src/projects/Super Protocol/index.yaml b/src/projects/Super Protocol/index.yaml index e361ef67..f565685b 100644 --- a/src/projects/Super Protocol/index.yaml +++ b/src/projects/Super Protocol/index.yaml @@ -1,7 +1,9 @@ id: super-protocol name: SuperProtocol -categories: [applications] -description: "The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts" +categories: +- applications +description: The confidential and self-sovereign AI cloud and marketplace, governed + by smart contracts team: anonymous: true links: @@ -12,5 +14,6 @@ links: telegram: https://t.me/superprotocol have_token: false sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/Synaps/index.yaml b/src/projects/Synaps/index.yaml index f9603998..776b9a71 100644 --- a/src/projects/Synaps/index.yaml +++ b/src/projects/Synaps/index.yaml @@ -1,29 +1,26 @@ id: synaps name: Synaps -categories: [applications] -description: "KYC provider and verifiable credential issuer for DID protocols." - +categories: +- applications +description: KYC provider and verifiable credential issuer for DID protocols. team: anonymous: false teammembers: - - name: Florian Le Goff - role: CEO - link: https://x.com/0xAnimaniac - + - 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 - usecases: - - kyc-solution +- kyc-solution +third_party_dependency: false diff --git a/src/projects/Taceo/index.yaml b/src/projects/Taceo/index.yaml index 4880d7ec..625a9edd 100644 --- a/src/projects/Taceo/index.yaml +++ b/src/projects/Taceo/index.yaml @@ -1,18 +1,17 @@ id: taceo name: Taceo -categories: [infrastructure] -description: "Encrypted Computation Layer; MPC + ZK" - +categories: +- infrastructure +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 - + - 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 @@ -20,11 +19,11 @@ links: blog: https://blog.taceo.io/ twitter: https://x.com/TACEO_IO discord: https://discord.com/invite/gWZW2TANpk - project_status: live_status: true - + mainnet: true + testnet: true have_token: false - usecases: - - computing +- computing +third_party_dependency: false diff --git a/src/projects/The 4th Pillar/index.yaml b/src/projects/The 4th Pillar/index.yaml index dd9ba002..8449fbab 100644 --- a/src/projects/The 4th Pillar/index.yaml +++ b/src/projects/The 4th Pillar/index.yaml @@ -1,11 +1,10 @@ id: the-4th-pillar name: The 4th Pillar -categories: [social-and-communications] -description: "Web3 Aligned Email & Chat Super App" - +categories: +- social-and-communications +description: Web3 Aligned Email & Chat Super App team: anonymous: true - links: web: https://the4thpillar.io/ github: https://github.com/4P-project/ @@ -15,20 +14,18 @@ links: 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 +have_token: false token_link: https://etherscan.io/token/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0 tokens: - - name: The 4th Pillar Token - symbol: $FOUR - network: Ethereum - contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0" - +- name: The 4th Pillar Token + symbol: $FOUR + network: Ethereum + contract_address: '0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0' usecases: - - messaging +- messaging +third_party_dependency: false diff --git a/src/projects/Venice/index.yaml b/src/projects/Venice/index.yaml index f2e8db86..837555a2 100644 --- a/src/projects/Venice/index.yaml +++ b/src/projects/Venice/index.yaml @@ -1,11 +1,14 @@ id: venice name: Venice -categories: [applications] -description: "a generative AI app focused on privacy" +categories: +- applications +description: a generative AI app focused on privacy links: web: https://venice.ai blog: https://venice.ai/blog twitter: https://x.com/askvenice farcaster: https://forecaster.com/venice-ai - -usecases: [ai] +usecases: +- ai +have_token: false +third_party_dependency: false diff --git a/src/projects/Vocdoni/index.yaml b/src/projects/Vocdoni/index.yaml index eccdc1cf..dc477c34 100644 --- a/src/projects/Vocdoni/index.yaml +++ b/src/projects/Vocdoni/index.yaml @@ -1,26 +1,26 @@ id: vocdoni name: Vocdoni -categories: [applications] -ecosystem: [ethereum] -description: "To build open source solutions to facilitate decision making in any organization." - +categories: +- applications +ecosystem: +- ethereum +description: To build open source solutions to facilitate decision making in any organization. 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 - + - 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\xE9ndez" + link: https://github.com/lucasmenendez links: web: https://www.vocdoni.io/ github: https://github.com/vocdoni @@ -29,27 +29,21 @@ links: blog: https://blog.vocdoni.io/ twitter: https://x.com/vocdoni discord: https://discord.com/invite/Qjm7krrFBf - sunset: false - funding: name: Aragon grant 2021/2022 link: https://x.com/AragonProject - blockchain_features: opensource: true asset_custody_type: non-custody - + p2p: false privacy_policy: defined: false - default_privacy: true - third_party_dependency: false compliance: false - storage: decentralized: true - usecases: - - dapps +- dapps +have_token: false diff --git a/src/projects/Zama/index.yaml b/src/projects/Zama/index.yaml index 5b83e45a..8bf4cff2 100644 --- a/src/projects/Zama/index.yaml +++ b/src/projects/Zama/index.yaml @@ -1,9 +1,13 @@ id: zama -name: "Zama" -categories: [infrastructure] -description: "an open source cryptography company building FHE solutions for blockchain and AI." +name: Zama +categories: +- infrastructure +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/ +have_token: false +third_party_dependency: false diff --git a/src/projects/ZkAGI/index.yaml b/src/projects/ZkAGI/index.yaml index 9758152b..72955363 100644 --- a/src/projects/ZkAGI/index.yaml +++ b/src/projects/ZkAGI/index.yaml @@ -1,7 +1,8 @@ id: zkagi name: ZkAGI -categories: [applications] -description: "Pioneering Privacy AI with Decentralized Infrastructure (DePIN)" +categories: +- applications +description: Pioneering Privacy AI with Decentralized Infrastructure (DePIN) links: web: https://www.zkagi.ai/ docs: https://zkagi.gitbook.io/introduction @@ -12,5 +13,6 @@ links: telegram: https://t.me/ZkAGI_AI have_token: false sunset: false - -usecases: [ai] +usecases: +- ai +third_party_dependency: false diff --git a/src/projects/actilist/index.yaml b/src/projects/actilist/index.yaml index b3ccb305..14b5cb33 100644 --- a/src/projects/actilist/index.yaml +++ b/src/projects/actilist/index.yaml @@ -1,6 +1,7 @@ name: Actilist -categories: [applications] -description: "Secret NFT auctions." +categories: +- applications +description: Secret NFT auctions. links: web: https://test.actilist.io github: https://github.com/actilabs @@ -16,6 +17,6 @@ project_status: mainnet: false have_token: false sunset: false - usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/aesirx-web3-id/index.yaml b/src/projects/aesirx-web3-id/index.yaml index abdfa96d..44b731aa 100644 --- a/src/projects/aesirx-web3-id/index.yaml +++ b/src/projects/aesirx-web3-id/index.yaml @@ -1,16 +1,17 @@ name: AesirX WEB3 ID -categories: [applications] -description: "an advanced identity management solution that protects users’ personal data and ensures privacy on the internet." +categories: +- applications +description: "an advanced identity management solution that protects users\u2019 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/alaya/index.yaml b/src/projects/alaya/index.yaml index 3fd3a9e9..18347150 100644 --- a/src/projects/alaya/index.yaml +++ b/src/projects/alaya/index.yaml @@ -1,9 +1,15 @@ name: Alaya -categories: [infrastructure] -description: "Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON." -ecosystem: [ethereum] +categories: +- infrastructure +description: Alaya is a business sandbox and testing field for the next-generation + of financial infrastructure of PlatON. +ecosystem: +- ethereum project_status: version: Mainnet + live_status: true + mainnet: true + testnet: true links: web: https://alaya.network/en github: https://github.com/AlayaNetwork @@ -12,6 +18,7 @@ links: blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e team: anonymous: true - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/aleo/index.yaml b/src/projects/aleo/index.yaml index 042d3629..144915d3 100644 --- a/src/projects/aleo/index.yaml +++ b/src/projects/aleo/index.yaml @@ -1,6 +1,9 @@ name: Aleo -categories: [infrastructure] -description: "An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1." +categories: +- infrastructure +description: An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, + and run your apps in a single place. Build full-stack, private applications with + ZK on layer 1. team: anonymous: true links: @@ -13,28 +16,30 @@ links: docs: https://developer.aleo.org/getting_started/ blog: https://aleo.org/blog/ project_status: - live_status: true version: Testnet + open_source: true testnet: true mainnet: false + live_status: true technology: type: zk-SNARKs features: - - ZK circuit programming - - SNARK validator network + - ZK circuit programming + - SNARK validator network blockchain_features: + opensource: true p2p: true viewing_key: true dissapearing_tx: true connected_tx: true client_diversability: - - name: address - link: https://explorer.aleo.org/validators +- name: address + link: https://explorer.aleo.org/validators default_privacy: true storage: decentralized: true compliance: false third_party_dependency: false - usecases: - - infrastructure +- infrastructure +have_token: false diff --git a/src/projects/aleph-zero/index.yaml b/src/projects/aleph-zero/index.yaml index 9e710a3b..30c7cccc 100644 --- a/src/projects/aleph-zero/index.yaml +++ b/src/projects/aleph-zero/index.yaml @@ -1,7 +1,9 @@ name: Aleph Zero -categories: [infrastructure] -description: "Privacy-enhancing public blockchain with instant finality." -ecosystem: [aleph] +categories: +- infrastructure +description: Privacy-enhancing public blockchain with instant finality. +ecosystem: +- aleph project_status: live_status: true version: Mainnet @@ -20,6 +22,7 @@ team: anonymous: false company: link: https://alephzero.org/the-team - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/alter/index.yaml b/src/projects/alter/index.yaml index a20e0268..51c80889 100644 --- a/src/projects/alter/index.yaml +++ b/src/projects/alter/index.yaml @@ -1,6 +1,8 @@ name: ALTER -categories: [social-and-communications] -description: "Private & Secure Communication App Utilizing Secret Nework secret contract technology." +categories: +- social-and-communications +description: Private & Secure Communication App Utilizing Secret Nework secret contract + technology. team: anonymous: true links: @@ -15,6 +17,7 @@ project_status: version: mainnet testnet: false mainnet: true - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/anagolay/index.yaml b/src/projects/anagolay/index.yaml index e672d483..8d89463e 100644 --- a/src/projects/anagolay/index.yaml +++ b/src/projects/anagolay/index.yaml @@ -1,16 +1,17 @@ name: Anagolay -categories: [applications] -description: "Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P" +categories: +- applications +description: Web3 Framework for Original Creators to claim and verify ownership of + online identities and multimedia content and license creative works P2P links: web: https://anagolay.network github: https://github.com/anagolay 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/anoma/index.yaml b/src/projects/anoma/index.yaml index 1f1f6cca..1c5af692 100644 --- a/src/projects/anoma/index.yaml +++ b/src/projects/anoma/index.yaml @@ -1,17 +1,22 @@ name: Anoma -categories: [infrastructure] -description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement" +categories: +- infrastructure +description: An intent-centric, privacy-preserving protocol for decentralized counterparty + discovery, solving, and multi-chain atomic settlement project_status: - version: "testnet" + version: testnet + testnet: true + mainnet: false + live_status: true team: anonymous: false teammembers: - - name: Christopher Goes - role: CTO - - name: Adrian Brink - role: Co-founder - - name: Awa Sun Yin - role: CEO + - 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 @@ -22,12 +27,13 @@ links: technology: type: ZK, FHE features: - - privacy for content + - privacy for content blockchain_features: p2p: true - + opensource: true storage: decentralized: true - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/anon-aadhaar/index.yaml b/src/projects/anon-aadhaar/index.yaml index a33a5045..e76ed431 100644 --- a/src/projects/anon-aadhaar/index.yaml +++ b/src/projects/anon-aadhaar/index.yaml @@ -1,8 +1,15 @@ name: Anon Aadhaar -categories: [applications] -description: "Anon Aadhaar is a project that allows individuals to prove their citizenship anonymously. The project provides circuits, an SDK, and demo applications that generate and verify proofs of valid Aadhaar cards, integrating with the PCD framework to support a wide range of applications." +categories: +- applications +description: Anon Aadhaar is a project that allows individuals to prove their citizenship + anonymously. The project provides circuits, an SDK, and demo applications that generate + and verify proofs of valid Aadhaar cards, integrating with the PCD framework to + support a wide range of applications. project_status: - version: "testnet" + version: testnet + live_status: false + mainnet: false + testnet: true team: anonymous: true links: @@ -12,7 +19,9 @@ links: github: https://github.com/anon-aadhaar/anon-aadhaar technology: type: zk, circom, rsa - features: [""] - + features: + - '' usecases: - - did +- did +have_token: false +third_party_dependency: false diff --git a/src/projects/anon-nero/index.yaml b/src/projects/anon-nero/index.yaml index b7b71702..62358d19 100644 --- a/src/projects/anon-nero/index.yaml +++ b/src/projects/anon-nero/index.yaml @@ -1,8 +1,10 @@ name: Anon/Nero -categories: [applications] -description: "Private wallet" +categories: +- applications +description: Private wallet links: web: https://t.me/anoneroapks - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/anonybit/index.yaml b/src/projects/anonybit/index.yaml index e6b28495..3df05fb7 100644 --- a/src/projects/anonybit/index.yaml +++ b/src/projects/anonybit/index.yaml @@ -1,13 +1,16 @@ name: Anonybit -categories: [applications] -description: "Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)" -ecosystem: [multichain] +categories: +- applications +description: Anonybit revolutionary, patented solution offers a decentralized framework + that strengthens compliance, protects identity, and secures personal assets (focus + on biometrics) +ecosystem: +- multichain links: web: https://www.anonybit.io/team/ - blog: https://www.anonybit.io/blog/ twitter: https://x.com/Anonybit1 -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/anonzk-incognito/index.yaml b/src/projects/anonzk-incognito/index.yaml index 29448e49..2212ed83 100644 --- a/src/projects/anonzk-incognito/index.yaml +++ b/src/projects/anonzk-incognito/index.yaml @@ -1,8 +1,11 @@ name: AnonZK Incognito -categories: [applications] -description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity." +categories: +- applications +description: A privacy tool known as a mixer, which we developed to utilize zk-SNARKs + technology to increase anonymity. links: web: https://incognito.anonzk.io - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/anydao/index.yaml b/src/projects/anydao/index.yaml index 4a3de226..61f2c728 100644 --- a/src/projects/anydao/index.yaml +++ b/src/projects/anydao/index.yaml @@ -1,12 +1,15 @@ name: AnyDAO -categories: [applications] -description: "Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting" +categories: +- applications +description: Vote aggregation across different blockchain networks with adjustable + privacy settings which controls the visibility of the voting links: web: https://app.anydao.io/bsc/explore docs: https://docs.anydao.io/ blog: https://anydao.medium.com/ twitter: https://x.com/0xAnyDAO telegram: https://t.me/AnyDAO - usecases: - - dao +- dao +have_token: false +third_party_dependency: false diff --git a/src/projects/anytype/index.yaml b/src/projects/anytype/index.yaml index 5a98a68f..d6ad6258 100644 --- a/src/projects/anytype/index.yaml +++ b/src/projects/anytype/index.yaml @@ -1,6 +1,9 @@ name: Anytype -categories: [infrastructure] -description: "local-first, E2E encrypted software designed as a secure place to create and store digital assets. You can use Anytype to create and connect your tasks, notes, ideas, documents, workflows, and more" +categories: +- infrastructure +description: local-first, E2E encrypted software designed as a secure place to create + and store digital assets. You can use Anytype to create and connect your tasks, + notes, ideas, documents, workflows, and more links: web: https://anytype.io/en github: https://github.com/anytypeio @@ -9,6 +12,7 @@ links: twitter: https://twitter.com/anytypelabs telegram: https://t.me/anytype youtube: https://www.youtube.com/c/anytype - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/arcana-s-private-nft/index.yaml b/src/projects/arcana-s-private-nft/index.yaml index 38c95597..eef78a4a 100644 --- a/src/projects/arcana-s-private-nft/index.yaml +++ b/src/projects/arcana-s-private-nft/index.yaml @@ -1,9 +1,11 @@ name: Arcana's Private NFT -categories: [applications] -description: "New supported format by Arcana preserving privacy within NFT minting." +categories: +- applications +description: New supported format by Arcana preserving privacy within NFT minting. links: web: https://arcana.network/blog/launching-private-nfts-on-arcana/ github: https://docs.beta.arcana.network/docs/conceptpvtnft/ - usecases: - - nft-community +- nft-community +have_token: false +third_party_dependency: false diff --git a/src/projects/arcana/index.yaml b/src/projects/arcana/index.yaml index 985c16fc..6b687231 100644 --- a/src/projects/arcana/index.yaml +++ b/src/projects/arcana/index.yaml @@ -1,19 +1,20 @@ name: Arcana -categories: [infrastructure] -description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption" +categories: +- infrastructure +description: Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption team: anonymous: false teammembers: - - name: Mayur Relekar - role: Co-Founder - - name: Aravindh Kumar - role: Co-Founder - - name: Ajay Shetty - role: Chief Operating Officer - - name: Abhishek Chaudhary - role: Chief Technology Officer - - name: Sharan Grandigae - role: Sharan Grandigae + - name: Mayur Relekar + role: Co-Founder + - name: Aravindh Kumar + role: Co-Founder + - name: Ajay Shetty + role: Chief Operating Officer + - name: Abhishek Chaudhary + role: Chief Technology Officer + - name: Sharan Grandigae + role: Sharan Grandigae links: web: https://arcana.network github: https://docs.beta.arcana.network @@ -24,9 +25,9 @@ links: docs: https://docs.arcana.network/ blog: https://arcana.network/blog whitepaper: https://www.notion.so/arcananetwork/Arcana-Technical-Docs-a1d7fd0d2970452586c693e4fee14d08 -have_token: true +have_token: false tokens: - - symbol: XAR - +- symbol: XAR usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/arpa/index.yaml b/src/projects/arpa/index.yaml index 565c5cdc..f5298db4 100644 --- a/src/projects/arpa/index.yaml +++ b/src/projects/arpa/index.yaml @@ -1,7 +1,11 @@ name: ARPA -categories: [infrastructure] -description: "Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc" -ecosystem: [multichain] +categories: +- infrastructure +description: Threshold BLS network can serve as the infrastructure of verifiable random + number generator (RNG), secure wallet, cross-chain bridge, decentralized custody + etc +ecosystem: +- multichain project_status: live_status: true version: Mainnet @@ -18,6 +22,7 @@ links: telegram: https://t.me/arpa_community team: anonymous: true - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/asmatch/index.yaml b/src/projects/asmatch/index.yaml index f955246f..19f2ef80 100644 --- a/src/projects/asmatch/index.yaml +++ b/src/projects/asmatch/index.yaml @@ -1,13 +1,15 @@ name: AsMatch -categories: [applications] -description: "The only Web3 matching app that uses ZKPs to authenticate users’ on-chain credentials" +categories: +- applications +description: "The only Web3 matching app that uses ZKPs to authenticate users\u2019\ + \ 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/asterizm/index.yaml b/src/projects/asterizm/index.yaml index a537c1f2..e3837cc7 100644 --- a/src/projects/asterizm/index.yaml +++ b/src/projects/asterizm/index.yaml @@ -1,13 +1,17 @@ name: Asterizm -categories: [infrastructure] -description: "Plug and play blockchain interoperability solution for enterprises, web3 protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions with their core modules - asset bridge, NFT bridge, native cross-chain token & NFT" +categories: +- infrastructure +description: Plug and play blockchain interoperability solution for enterprises, web3 + protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions + with their core modules - asset bridge, NFT bridge, native cross-chain token & + NFT team: anonymous: false teammembers: - - name: Artem Avdeev - role: CEO - - name: Denis Polulyakhov - role: Co-Founder + - name: Artem Avdeev + role: CEO + - name: Denis Polulyakhov + role: Co-Founder links: web: https://asterizm.io github: https://github.com/Asterizm-Protocol @@ -17,6 +21,7 @@ links: twitter: https://twitter.com/Asterizm_layer discord: https://discord.gg/z5QVerD48C telegram: https://t.me/asterizm_protocol - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/auth3/index.yaml b/src/projects/auth3/index.yaml index c91ac24e..c015458b 100644 --- a/src/projects/auth3/index.yaml +++ b/src/projects/auth3/index.yaml @@ -1,21 +1,20 @@ name: Auth3 -categories: [infrastructure] - -description: "a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data." - +categories: +- 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 - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/automata-network/index.yaml b/src/projects/automata-network/index.yaml index a2863fa3..3a1ce4a6 100644 --- a/src/projects/automata-network/index.yaml +++ b/src/projects/automata-network/index.yaml @@ -1,6 +1,8 @@ name: Automata Network -categories: [infrastructure] -description: "The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA" +categories: +- infrastructure +description: The privacy middleware layer building for a fair Web3. Its core suite + of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA team: anonymous: true links: @@ -8,14 +10,14 @@ links: docs: https://docs.ata.network github: https://github.com/automata-network blog: https://blog.ata.network/ -have_token: true +have_token: false tokens: - - symbol: ATA +- symbol: ATA project_status: live_status: true - version: "" + version: '' testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/avado/index.yaml b/src/projects/avado/index.yaml index 735cd365..5848fb02 100644 --- a/src/projects/avado/index.yaml +++ b/src/projects/avado/index.yaml @@ -1,7 +1,10 @@ name: Avado -categories: [hardware] -description: "A plug-and-play hardware device that connects users to many different kinds of blockchains" -ecosystem: [multichain] +categories: +- hardware +description: A plug-and-play hardware device that connects users to many different + kinds of blockchains +ecosystem: +- multichain links: web: https://ava.do/ github: https://github.com/mysteriumnetwork/AVADO-DNP-Mysterium-Server @@ -14,6 +17,7 @@ team: anonymous: false company: link: https://www.mysterium.network/team - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/axiatel/index.yaml b/src/projects/axiatel/index.yaml index 87e91144..41cb460e 100644 --- a/src/projects/axiatel/index.yaml +++ b/src/projects/axiatel/index.yaml @@ -1,12 +1,15 @@ name: AXIAtel -categories: [hardware] -description: "a privacy first mobile service for everyone" -ecosystem: [multichain] +categories: +- hardware +description: a privacy first mobile service for everyone +ecosystem: +- multichain links: web: https://axiatel.co blog: https://medium.com/@axiatel team: anonymous: true - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/aztec-connect/index.yaml b/src/projects/aztec-connect/index.yaml index a6ec00f8..16ae8942 100644 --- a/src/projects/aztec-connect/index.yaml +++ b/src/projects/aztec-connect/index.yaml @@ -1,11 +1,13 @@ name: Aztec Connect -categories: [applications] +categories: +- applications links: github: https://github.com/AztecProtocol/aztec-connect-bridges docs: https://docs.aztec.network/misc/aztec_connect_sunset blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/ discord: https://discord.com/invite/aztec education: https://twitter.com/aztecnetwork/status/1575662728395358208 - usecases: - - bridge +- bridge +have_token: false +third_party_dependency: false diff --git a/src/projects/basic-attention-token/index.yaml b/src/projects/basic-attention-token/index.yaml index 57fdf469..018930c1 100644 --- a/src/projects/basic-attention-token/index.yaml +++ b/src/projects/basic-attention-token/index.yaml @@ -1,7 +1,10 @@ name: Basic Attention Token -categories: [defi] -description: "Making Crypto and DeFi accessible and usable for everyone (powered by Brave)" -ecosystem: [solana] +categories: +- defi +description: Making Crypto and DeFi accessible and usable for everyone (powered by + Brave) +ecosystem: +- solana links: web: https://basicattentiontoken.org whitepaper: https://basicattentiontoken.org/static-assets/documents/BasicAttentionTokenWhitePaper-4.pdf @@ -10,6 +13,7 @@ links: discord: https://discord.com/invite/BATBrigade team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/basicswap/index.yaml b/src/projects/basicswap/index.yaml index dfa70fba..80b28f9c 100644 --- a/src/projects/basicswap/index.yaml +++ b/src/projects/basicswap/index.yaml @@ -1,15 +1,17 @@ name: Basic Swap -categories: [defi] -ecosystem: [multichain] -description: "A private and cross-chain DEX" +categories: +- defi +ecosystem: +- multichain +description: A private and cross-chain DEX project_type: DeFi -product_launch_day: "2022-12-08" +product_launch_day: '2022-12-08' technology: type: P2P name: peer to peer features: - - private - - swaps + - private + - swaps links: web: https://basicswapdex.com/ twitter: https://twitter.com/basicswapdex @@ -42,14 +44,14 @@ traceability: third_party_dependency: false compliance: none client_diversability: - - name: BasicSwap client - link: https://basicswapdex.com/ +- name: BasicSwap client + link: https://basicswapdex.com/ default_privacy: false project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - defi +- defi +have_token: false diff --git a/src/projects/bcchat/index.yaml b/src/projects/bcchat/index.yaml index be6f865f..33ea826b 100644 --- a/src/projects/bcchat/index.yaml +++ b/src/projects/bcchat/index.yaml @@ -1,6 +1,7 @@ name: BCchat -categories: [social-and-communications] -description: "A decentralized, privacy messenger built over the Beldex blockchain." +categories: +- social-and-communications +description: A decentralized, privacy messenger built over the Beldex blockchain. team: anonymous: true links: @@ -16,6 +17,7 @@ project_status: version: mainnet testnet: false mainnet: true - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/beam-wallet/index.yaml b/src/projects/beam-wallet/index.yaml index 60b4fb46..b1cca91e 100644 --- a/src/projects/beam-wallet/index.yaml +++ b/src/projects/beam-wallet/index.yaml @@ -1,6 +1,7 @@ name: Beam -categories: [applications] -description: "Self-custodial wallet built on eco.org" +categories: +- applications +description: Self-custodial wallet built on eco.org team: anonymous: true links: @@ -9,9 +10,10 @@ links: github: https://github.com/eco-association project_status: live_status: true - version: "" + version: '' testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/beam/index.yaml b/src/projects/beam/index.yaml index 00fe0763..37b51263 100644 --- a/src/projects/beam/index.yaml +++ b/src/projects/beam/index.yaml @@ -1,6 +1,7 @@ name: Beam -categories: [defi] -description: "Best in class privacy coin and confidential DeFi platform" +categories: +- defi +description: Best in class privacy coin and confidential DeFi platform links: web: https://beam.mw github: https://github.com/BeamMW/beam @@ -10,11 +11,16 @@ links: twitter: https://x.com/beamprivacy discord: https://discord.com/invite/BHZvAhg telegram: https://t.me/BeamPrivacy -ecosystem: [beam] +ecosystem: +- beam project_status: - version: "Mainnet" + version: Mainnet + live_status: true + mainnet: true + testnet: false team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/beepo/index.yaml b/src/projects/beepo/index.yaml index a419742f..9d07502e 100644 --- a/src/projects/beepo/index.yaml +++ b/src/projects/beepo/index.yaml @@ -1,13 +1,16 @@ name: Beepo -categories: [social-and-communications] -description: "A social networking application integrated with a multichain chain crypto wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and a sales catalog section for business accounts" +categories: +- social-and-communications +description: A social networking application integrated with a multichain chain crypto + wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and + a sales catalog section for business accounts team: anonymous: false teammembers: - - name: Michael Jimoh - role: Co-Founder & CEO - - name: Clement Hochart - role: Co-Founder + - 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 @@ -15,6 +18,7 @@ links: twitter: https://x.com/beepoapp discord: https://discord.com/invite/DhYJGgAVzR telegram: https://t.me/beepoapp - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/beldex/index.yaml b/src/projects/beldex/index.yaml index b60c584c..f726f529 100644 --- a/src/projects/beldex/index.yaml +++ b/src/projects/beldex/index.yaml @@ -1,7 +1,10 @@ name: Beldex -categories: [defi] -description: "A privacy currency based on Monero, Beldex currently offers incentive-based Master Nodes and in the future Beldex will be using POS instead of POW" -ecosystem: [beldex] +categories: +- defi +description: A privacy currency based on Monero, Beldex currently offers incentive-based + Master Nodes and in the future Beldex will be using POS instead of POW +ecosystem: +- beldex project_status: live_status: true verion: Mainnet @@ -18,6 +21,7 @@ links: telegram: https://t.me/official_beldex team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/bermuda/index.yaml b/src/projects/bermuda/index.yaml index b3141138..712a351b 100644 --- a/src/projects/bermuda/index.yaml +++ b/src/projects/bermuda/index.yaml @@ -1,13 +1,15 @@ name: Bermuda -categories: [applications] -description: "Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens" +categories: +- applications +description: Next-gen private utility dApp for sending legal, anonymous transactions + of multiple ERC-20 tokens links: web: https://www.bmda.io whitepaper: https://www.bmda.io/bermuda-whitepaper-1.2.pdf - blog: https://medium.com/@bmdaadmin twitter: https://x.com/BermudaEth telegram: https://t.me/bermudaportal - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/bidshop/index.yaml b/src/projects/bidshop/index.yaml index 90eceeed..ec9869e4 100644 --- a/src/projects/bidshop/index.yaml +++ b/src/projects/bidshop/index.yaml @@ -1,19 +1,21 @@ name: Bidshop -categories: [applications] -description: "The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs" +categories: +- applications +description: The first and only trustless marketplace with encrypted & secret bidding. + Opening a new world of gamification and liquidity for NFTs links: web: https://www.bidshop.io docs: https://bidshop.gitbook.io/bidshop-platform blog: https://medium.com/@BIDSHOP twitter: https://x.com/BIDSHOP_io telegram: https://t.me/BIDSHOP_TG -have_token: true +have_token: false token_link: https://etherscan.io/token/0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F tokens: - - name: BIDSHOP - symbol: BIDS - network: Ethereum - contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F" - +- name: BIDSHOP + symbol: BIDS + network: Ethereum + contract_address: '0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F' usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/blackbox/index.yaml b/src/projects/blackbox/index.yaml index 0c3bc6b5..d5ce37d7 100644 --- a/src/projects/blackbox/index.yaml +++ b/src/projects/blackbox/index.yaml @@ -1,15 +1,17 @@ name: Blackbox -categories: [defi] -ecosystem: [secret] -description: "Collection of tools allowing you send & receive SCRT anonymously" +categories: +- defi +ecosystem: +- secret +description: Collection of tools allowing you send & receive SCRT anonymously project_type: DeFi -product_launch_day: "2021-15-02" +product_launch_day: '2021-15-02' technology: type: TEE name: Trusted execution environment features: - - Privacy - - Payments + - Privacy + - Payments links: web: https://blackbox.cash/ twitter: https://twitter.com/TriviumNode @@ -19,7 +21,6 @@ links: blockchain_features: p2p: false encryption: TEE - opensource: true viewing_key: true dissapearing_tx: false @@ -41,9 +42,9 @@ team: link: https://trivium.network/ contacts: info@trivium.network teammembers: - - name: Xiphiar - role: rdeveloper - link: https://github.com/Xiphiar + - name: Xiphiar + role: rdeveloper + link: https://github.com/Xiphiar storage: decentralized: true traceability: @@ -54,16 +55,16 @@ 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/ +- 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 - usecases: - - defi +- defi +have_token: false diff --git a/src/projects/blackhat-coin/index.yaml b/src/projects/blackhat-coin/index.yaml index f653b806..4edf3f6d 100644 --- a/src/projects/blackhat-coin/index.yaml +++ b/src/projects/blackhat-coin/index.yaml @@ -1,9 +1,15 @@ name: BlackHat Coin -categories: [defi] -description: "Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol" -ecosystem: [blackhat] +categories: +- defi +description: Privacy-focused decentralized cryptocurrency providing truly anonymous + untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol +ecosystem: +- blackhat project_status: - version: "Mainnet" + version: Mainnet + live_status: true + mainnet: true + testnet: false links: web: https://blackhatco.in github: https://github.com/BlackHatCoin @@ -15,6 +21,7 @@ links: telegram: https://t.me/BlackHatCoin team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/blockstream-green/index.yaml b/src/projects/blockstream-green/index.yaml index bcca1227..c4e3bcb8 100644 --- a/src/projects/blockstream-green/index.yaml +++ b/src/projects/blockstream-green/index.yaml @@ -1,7 +1,9 @@ name: Blockstream Green -categories: [applications] -description: "A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream" -ecosystem: [bitcoin] +categories: +- applications +description: A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream +ecosystem: +- bitcoin links: web: https://blockstream.com/green/ github: https://github.com/Blockstream/green_qt @@ -10,14 +12,15 @@ links: team: anonymous: false teammembers: - - name: Dr. Adam Back - role: CEO - link: https://blockstream.com/about/ + - name: Dr. Adam Back + role: CEO + link: https://blockstream.com/about/ project_status: live_status: true version: 2.0.6 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/blockwallet/index.yaml b/src/projects/blockwallet/index.yaml index b3f6aad7..62797279 100644 --- a/src/projects/blockwallet/index.yaml +++ b/src/projects/blockwallet/index.yaml @@ -1,7 +1,12 @@ name: BlockWallet -categories: [applications] -description: "BlockWallet is the epitome of speed, reliability, security, and privacy in the world of digital assets. As a self-custodial Web3 wallet, it empowers you to truly own your digital currencies while eliminating concerns surrounding asset management." -ecosystem: [ethereum] +categories: +- applications +description: BlockWallet is the epitome of speed, reliability, security, and privacy + in the world of digital assets. As a self-custodial Web3 wallet, it empowers you + to truly own your digital currencies while eliminating concerns surrounding asset + management. +ecosystem: +- ethereum links: web: https://blockwallet.io/ github: https://github.com/block-wallet @@ -14,6 +19,7 @@ project_status: version: v.1.2.9 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/blockyfile/index.yaml b/src/projects/blockyfile/index.yaml index 55afe1c7..afd0a34c 100644 --- a/src/projects/blockyfile/index.yaml +++ b/src/projects/blockyfile/index.yaml @@ -1,8 +1,10 @@ name: Blockyfile -categories: [applications] -description: "The new way to upload files anonymously and without censorship." +categories: +- applications +description: The new way to upload files anonymously and without censorship. links: web: https://blockyfile.org - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/bluum/index.yaml b/src/projects/bluum/index.yaml index 15cc41c3..8aeb6d1b 100644 --- a/src/projects/bluum/index.yaml +++ b/src/projects/bluum/index.yaml @@ -1,9 +1,11 @@ name: Bluum -categories: [applications] -description: "Enable confidentiality of NFT content." +categories: +- applications +description: Enable confidentiality of NFT content. links: web: https://bluumprotocol.com github: https://github.com/BluumProtocol - usecases: - - nft-community +- nft-community +have_token: false +third_party_dependency: false diff --git a/src/projects/bob-protocol/index.yaml b/src/projects/bob-protocol/index.yaml index 2750daff..2dc87c3f 100644 --- a/src/projects/bob-protocol/index.yaml +++ b/src/projects/bob-protocol/index.yaml @@ -1,7 +1,13 @@ name: BOB Protocol -categories: [defi] -description: "A multi-chain, multi-collateral stable token enhanced with optional privacy features" -ecosystem: [polygon, optimism, bnb, ethereum] +categories: +- defi +description: A multi-chain, multi-collateral stable token enhanced with optional privacy + features +ecosystem: +- polygon +- optimism +- bnb +- ethereum links: web: https://zkbob.com/ github: https://github.com/zkBob @@ -13,6 +19,7 @@ links: telegram: https://t.me/zkbobcommunity team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/boltz/index.yaml b/src/projects/boltz/index.yaml index e0c24607..98f5166f 100644 --- a/src/projects/boltz/index.yaml +++ b/src/projects/boltz/index.yaml @@ -1,6 +1,7 @@ name: Boltz -categories: [defi] -description: "Privacy first, account-free crypto exchange" +categories: +- defi +description: Privacy first, account-free crypto exchange links: web: https://boltz.exchange github: https://github.com/BoltzExchange/ @@ -11,6 +12,7 @@ links: telegram: https://t.me/boltzhq team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/boring-protocol/index.yaml b/src/projects/boring-protocol/index.yaml index ac28c428..04d7cfd6 100644 --- a/src/projects/boring-protocol/index.yaml +++ b/src/projects/boring-protocol/index.yaml @@ -1,15 +1,17 @@ name: Boring Protocol -categories: [applications] -description: "A Decentralized VPN on Solana" -ecosystem: [solana] +categories: +- applications +description: A Decentralized VPN on Solana +ecosystem: +- solana links: web: https://boringprotocol.io github: https://docs.boringprotocol.io/bop/information/boring-protocol team: anonymous: true -have_token: true +have_token: false token_link: https://coinmarketcap.com/currencies/boring-protocol/ sunset: true - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/bpsaa/index.yaml b/src/projects/bpsaa/index.yaml index 00112688..e98ea901 100644 --- a/src/projects/bpsaa/index.yaml +++ b/src/projects/bpsaa/index.yaml @@ -1,9 +1,12 @@ name: BPSAA -categories: [social-and-communications] -description: "The Blockchain Privacy, Security & Adoption Alliance educates the public on privacy, security, and decentralization." +categories: +- social-and-communications +description: The Blockchain Privacy, Security & Adoption Alliance educates the public + on privacy, security, and decentralization. links: web: https://bpsaa.vision twitter: https://twitter.com/BPSAA_Official - usecases: - - alliances +- alliances +have_token: false +third_party_dependency: false diff --git a/src/projects/brace/index.yaml b/src/projects/brace/index.yaml index 722f38f1..511cdd28 100644 --- a/src/projects/brace/index.yaml +++ b/src/projects/brace/index.yaml @@ -1,7 +1,8 @@ name: Brace.to categories: - - applications -description: "Save links to everything and visit them later easily, anytime, on any device, with Web3 technology that empowers you to truly own your account and data." +- applications +description: Save links to everything and visit them later easily, anytime, on any + device, with Web3 technology that empowers you to truly own your account and data. links: web: https://brace.to github: https://github.com/stxapps/brace-client @@ -9,6 +10,9 @@ links: twitter: https://x.com/bracedotto project_status: live_status: true - + mainnet: true + testnet: false usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/brave-wallet/index.yaml b/src/projects/brave-wallet/index.yaml index 67211eb4..e3512790 100644 --- a/src/projects/brave-wallet/index.yaml +++ b/src/projects/brave-wallet/index.yaml @@ -1,21 +1,24 @@ name: Brave Wallet -categories: [applications] -description: "The secure multi-chain crypto wallet" -ecosystem: [multichain] +categories: +- applications +description: The secure multi-chain crypto wallet +ecosystem: +- multichain links: web: https://brave.com/wallet/ github: https://github.com/brave/brave-wallet-docs team: anonymous: false teammembers: - - name: Brendan Eich - role: CEO - link: https://brave.com/about/ + - name: Brendan Eich + role: CEO + link: https://brave.com/about/ project_status: live_status: true - version: "" + version: '' testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/brave/index.yaml b/src/projects/brave/index.yaml index b1ecfaea..0454850a 100644 --- a/src/projects/brave/index.yaml +++ b/src/projects/brave/index.yaml @@ -1,12 +1,14 @@ name: Brave -categories: [applications] -description: "Browse privately. Search privately. And ditch Big Tech" +categories: +- applications +description: Browse privately. Search privately. And ditch Big Tech links: web: http://brave.com github: https://github.com/brave/brave-browser blog: https://brave.com/blog/ twitter: https://twitter.com/brave facebook: https://www.facebook.com/BraveSoftware/ - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/brightid/index.yaml b/src/projects/brightid/index.yaml index 5743177c..dc5a3784 100644 --- a/src/projects/brightid/index.yaml +++ b/src/projects/brightid/index.yaml @@ -1,16 +1,17 @@ name: BrightID -categories: [applications] -description: "A social identity network that allows you to prove that you’re only using one account. It’s the holy grail of digital identity" +categories: +- applications +description: "A social identity network that allows you to prove that you\u2019re\ + \ only using one account. It\u2019s 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/bringing-privacy-to-ens/index.yaml b/src/projects/bringing-privacy-to-ens/index.yaml index 4cf41c4c..f6da6060 100644 --- a/src/projects/bringing-privacy-to-ens/index.yaml +++ b/src/projects/bringing-privacy-to-ens/index.yaml @@ -1,9 +1,11 @@ name: Bringing Privacy to ENS -categories: [applications] -description: "ChainSafe’s Proposed Integration Using Aztec Network" +categories: +- applications +description: "ChainSafe\u2019s Proposed Integration Using Aztec Network" links: web: https://www.cerebrum.com github: https://github.com/ChainSafe/ens-aztec-privacy/ - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/brume-wallet/index.yaml b/src/projects/brume-wallet/index.yaml index cd0ec530..3b7af16d 100644 --- a/src/projects/brume-wallet/index.yaml +++ b/src/projects/brume-wallet/index.yaml @@ -1,15 +1,17 @@ name: Brume wallet -categories: [applications] -ecosystem: [ethereum] -description: "Tor based wallet for Ethereum" +categories: +- applications +ecosystem: +- ethereum +description: Tor based wallet for Ethereum project_type: Wallets -product_launch_day: "2022-11-13" +product_launch_day: '2022-11-13' technology: type: Tor name: Tor project features: - - private - - Wallet + - private + - Wallet links: web: https://bento.me/brume twitter: https://twitter.com/BrumeWallet @@ -29,9 +31,9 @@ privacy_policy: team: anonymous: false teammembers: - - name: Haz Æ 41 - role: developer - link: https://bento.me/hazae41 + - name: "Haz \xC6 41" + role: developer + link: https://bento.me/hazae41 storage: decentralized: true traceability: @@ -40,19 +42,17 @@ traceability: sign_in_type_requirments: seed third_party_dependency: false compliance: compliant - history: - - title: Hackaton - event_type: Hackaton - description: Hackaton project - time: Nov 13, 2022 +- title: Hackaton + event_type: Hackaton + description: Hackaton project + time: Nov 13, 2022 default_privacy: true - project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - wallets +- wallets +have_token: false diff --git a/src/projects/buildoor/index.yaml b/src/projects/buildoor/index.yaml index 238ddd71..84b2dbd8 100644 --- a/src/projects/buildoor/index.yaml +++ b/src/projects/buildoor/index.yaml @@ -1,13 +1,14 @@ name: Buildoor -categories: [applications] -description: "Privacy Focused Analytics" +categories: +- applications +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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/burstiq/index.yaml b/src/projects/burstiq/index.yaml index fd312d2b..8a6d7f61 100644 --- a/src/projects/burstiq/index.yaml +++ b/src/projects/burstiq/index.yaml @@ -1,25 +1,26 @@ name: burstIQ -categories: [infrastructure] -description: "Fuel your digital-first strategy with human health data" +categories: +- infrastructure +description: Fuel your digital-first strategy with human health data team: anonymous: false teammembers: - - name: Frank Ricotta - role: CEO - - name: Brian Jackson - role: COO - - name: Tyson Henry - role: CTO + - 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 +have_token: false tokens: - - symbol: BIQ +- symbol: BIQ project_status: live_status: false testnet: false mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/cake-wallet/index.yaml b/src/projects/cake-wallet/index.yaml index 9925b044..2163e5f5 100644 --- a/src/projects/cake-wallet/index.yaml +++ b/src/projects/cake-wallet/index.yaml @@ -1,18 +1,22 @@ name: Cake Wallet -categories: [applications] -description: "Cake Wallet allows you to safely store, send, receive, and exchange your XMR, BTC, LTC, and XHV and exchange other currencies" -ecosystem: [monero] +categories: +- applications +description: Cake Wallet allows you to safely store, send, receive, and exchange your + XMR, BTC, LTC, and XHV and exchange other currencies +ecosystem: +- monero links: web: https://monero.com/wallets github: https://github.com/cake-tech/cake_wallet docs: https://guides.cakewallet.com/ project_status: live_status: true - version: "" + version: '' testnet: false mainnet: false team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/calamari-network/index.yaml b/src/projects/calamari-network/index.yaml index f2b820c0..1189c4ef 100644 --- a/src/projects/calamari-network/index.yaml +++ b/src/projects/calamari-network/index.yaml @@ -1,21 +1,22 @@ name: Calamari network categories: - - infrastructure -description: "Manta Network canary net, is the plug-and-play privacy-preservation parachain built to serve the Kusama world" +- 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 +have_token: false tokens: - - symbol: KMA +- symbol: KMA project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/calimero-network/index.yaml b/src/projects/calimero-network/index.yaml index 1c8e5d3e..5ea23df4 100644 --- a/src/projects/calimero-network/index.yaml +++ b/src/projects/calimero-network/index.yaml @@ -1,7 +1,9 @@ name: Calimero network categories: - - infrastructure -description: "Calimero Network is a decentralized peer-to-peer protocol for building self-sovereign networks of applications and sharing data in a completely secure and private way" +- 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: @@ -10,9 +12,10 @@ links: twitter: https://twitter.com/CalimeroNetwork project_status: live_status: false - version: "" + version: '' testnet: false mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/calyxos/index.yaml b/src/projects/calyxos/index.yaml index f5f3f72b..5ed9d418 100644 --- a/src/projects/calyxos/index.yaml +++ b/src/projects/calyxos/index.yaml @@ -1,7 +1,8 @@ name: CalyxOS categories: - - applications -description: "Android mobile operating system that puts privacy and security into the hands of everyday users" +- applications +description: Android mobile operating system that puts privacy and security into the + hands of everyday users team: anonymous: true links: @@ -14,6 +15,7 @@ project_status: version: 5.7.1 testnet: false mainnet: true - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/cape/index.yaml b/src/projects/cape/index.yaml index c23f24b5..4732e46e 100644 --- a/src/projects/cape/index.yaml +++ b/src/projects/cape/index.yaml @@ -1,7 +1,9 @@ name: CAPE -categories: [defi] -ecosystem: [ethereum] -description: "Configurable Asset Privacy for Ethereum" +categories: +- defi +ecosystem: +- ethereum +description: Configurable Asset Privacy for Ethereum links: web: https://app.firn.cash/ github: https://github.com/EspressoSystems/cape @@ -9,8 +11,10 @@ links: project_status: live_status: false testnet: true + mainnet: false team: anonymous: true - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/carbon-browser/index.yaml b/src/projects/carbon-browser/index.yaml index 5b9661c8..981c8a17 100644 --- a/src/projects/carbon-browser/index.yaml +++ b/src/projects/carbon-browser/index.yaml @@ -1,13 +1,14 @@ name: Carbon Browser categories: - - applications -description: "The Fastest Web 3 Browser. AdBlock + 100% Privacy" +- applications +description: The Fastest Web 3 Browser. AdBlock + 100% Privacy links: web: https://carbon.website github: https://github.com/Carbon-Browser whitepapaer: https://carbon.website/whitepaper/ twitter: https://twitter.com/trycarbonio telegram: https://t.me/trycarbonio - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/cerebrum/index.yaml b/src/projects/cerebrum/index.yaml index 0b106f65..a62e213f 100644 --- a/src/projects/cerebrum/index.yaml +++ b/src/projects/cerebrum/index.yaml @@ -1,14 +1,14 @@ name: Cerebrum categories: - - applications -description: "Ensure everyone in your organization is credentialed and compliant with Cerebrum verifiable data technology and vID ecosystem" +- applications +description: Ensure everyone in your organization is credentialed and compliant with + Cerebrum verifiable data technology and vID ecosystem links: web: https://www.cerebrum.com github: https://github.com/cerebruminc - blog: https://blog.cerebrum.com/ twitter: https://x.com/cerebruminc -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/certup/index.yaml b/src/projects/certup/index.yaml index 51f44222..9253318f 100644 --- a/src/projects/certup/index.yaml +++ b/src/projects/certup/index.yaml @@ -1,7 +1,8 @@ name: certUP categories: - - applications -description: "SecretNFT Certificates revolutionizing official document distribution, verification, and publication" +- applications +description: SecretNFT Certificates revolutionizing official document distribution, + verification, and publication links: web: https://certup.net github: https://github.com/CertUP @@ -14,6 +15,6 @@ project_status: mainnet: true have_token: false sunset: false - usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/cheqd/index.yaml b/src/projects/cheqd/index.yaml index 4e7b2ae8..ec353dc0 100644 --- a/src/projects/cheqd/index.yaml +++ b/src/projects/cheqd/index.yaml @@ -1,17 +1,19 @@ name: CheqD categories: - - applications -description: "A secure network that enables individuals and organizations to fully control their personal data. It allows self-sovereign identity (SSI) companies to build and deliver secure solutions to you" +- applications +description: A secure network that enables individuals and organizations to fully + control their personal data. It allows self-sovereign identity (SSI) companies + to build and deliver secure solutions to you links: web: https://cheqd.io github: https://github.com/cheqd 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/chimp-exchange/index.yaml b/src/projects/chimp-exchange/index.yaml index 7bfc9ba3..46864da6 100644 --- a/src/projects/chimp-exchange/index.yaml +++ b/src/projects/chimp-exchange/index.yaml @@ -1,25 +1,24 @@ name: ChimpExchange -categories: [defi] -ecosystem: [ten] - +categories: +- defi +ecosystem: +- ten project_type: DeFi -description: "Fully encrypted DEX" - +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 - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/cia-protocol/index.yaml b/src/projects/cia-protocol/index.yaml index a3fefce9..a41fef8d 100644 --- a/src/projects/cia-protocol/index.yaml +++ b/src/projects/cia-protocol/index.yaml @@ -1,5 +1,7 @@ name: CIA protocol -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/cirus-foundation/index.yaml b/src/projects/cirus-foundation/index.yaml index 2ea1e642..f5f2bf6b 100644 --- a/src/projects/cirus-foundation/index.yaml +++ b/src/projects/cirus-foundation/index.yaml @@ -1,12 +1,13 @@ name: Cirus foundation categories: - - applications -description: "With your permission, Cirus makes earning from your data easy" +- applications +description: With your permission, Cirus makes earning from your data easy links: web: https://cirusfoundation.com/your-data/ twitter: https://x.com/cirusfoundation discord: https://discord.com/invite/Vbawz2j7AW blog: https://medium.com/the-cirus-foundation - usecases: - - data-management +- data-management +have_token: false +third_party_dependency: false diff --git a/src/projects/cog/index.yaml b/src/projects/cog/index.yaml index 4755498d..452eee08 100644 --- a/src/projects/cog/index.yaml +++ b/src/projects/cog/index.yaml @@ -1,11 +1,13 @@ name: COG categories: - - defi -description: "A new private digital currency that leverages the power of Web3 and DeFi without compromising the privacy and security of its users" +- defi +description: A new private digital currency that leverages the power of Web3 and DeFi without + compromising the privacy and security of its users links: web: https://cogfi.org team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/coinbook/index.yaml b/src/projects/coinbook/index.yaml index a9b6fdb4..a3892b5e 100644 --- a/src/projects/coinbook/index.yaml +++ b/src/projects/coinbook/index.yaml @@ -1,5 +1,7 @@ name: CoinBook -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/coinomize/index.yaml b/src/projects/coinomize/index.yaml index 947cb6f6..e46e56ad 100644 --- a/src/projects/coinomize/index.yaml +++ b/src/projects/coinomize/index.yaml @@ -1,10 +1,12 @@ name: Coinomize categories: - - applications -description: "Coinomize helps you protect your privacy and identity and mix your Bitcoins (CoinJoin) easily and cheaply without storing any logs from you" +- applications +description: Coinomize helps you protect your privacy and identity and mix your Bitcoins + (CoinJoin) easily and cheaply without storing any logs from you links: web: https://coinomize.biz blog: https://coinomize.biz/blog - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/coinshuffle/index.yaml b/src/projects/coinshuffle/index.yaml index cf0035dd..b328d20e 100644 --- a/src/projects/coinshuffle/index.yaml +++ b/src/projects/coinshuffle/index.yaml @@ -1,9 +1,11 @@ name: CoinShuffle++ categories: - - applications -description: "CoinShuffle++ (CSPP) is a mixing protocol used to create Decred CoinJoin transactions" +- applications +description: CoinShuffle++ (CSPP) is a mixing protocol used to create Decred CoinJoin + transactions links: web: https://github.com/decred/cspp - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/colossusxt/index.yaml b/src/projects/colossusxt/index.yaml index 757f5506..7c035d4b 100644 --- a/src/projects/colossusxt/index.yaml +++ b/src/projects/colossusxt/index.yaml @@ -1,8 +1,10 @@ name: ColossusXT categories: - - defi -description: "A community-orientated, energy efficient coin with a strong focus on decentralization, privacy, and real-world implementation" -ecosystem: [colossusxt] +- defi +description: A community-orientated, energy efficient coin with a strong focus on + decentralization, privacy, and real-world implementation +ecosystem: +- colossusxt project_status: live_status: true version: Mainnet @@ -20,6 +22,7 @@ links: telegram: https://t.me/colossuscoin team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/comit-network/index.yaml b/src/projects/comit-network/index.yaml index 7977ba08..53049de1 100644 --- a/src/projects/comit-network/index.yaml +++ b/src/projects/comit-network/index.yaml @@ -1,7 +1,9 @@ name: Comit Network categories: - - infrastructure -description: "COMIT is an open protocol facilitating trustless cross-blockchain applications, connecting all blockchains without adding yet another. Working on BTC-XMR atomic swaps as well as various libraries and clients" +- 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: @@ -10,9 +12,10 @@ links: blog: https://comit.network/blog/ project_status: live_status: false - version: "" + version: '' testnet: false mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/common/index.yaml b/src/projects/common/index.yaml index 35365447..b1e2ca4c 100644 --- a/src/projects/common/index.yaml +++ b/src/projects/common/index.yaml @@ -1,5 +1,7 @@ name: Common -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/conceal-network/index.yaml b/src/projects/conceal-network/index.yaml index 07225337..cd0957e2 100644 --- a/src/projects/conceal-network/index.yaml +++ b/src/projects/conceal-network/index.yaml @@ -1,5 +1,7 @@ name: Conceal Network -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/concordium/index.yaml b/src/projects/concordium/index.yaml index 96509fd1..d036944a 100644 --- a/src/projects/concordium/index.yaml +++ b/src/projects/concordium/index.yaml @@ -1,30 +1,31 @@ name: Concordium categories: - - infrastructure -description: "A compliance ready blockchain backed by science that enables private and public transactions" +- infrastructure +description: A compliance ready blockchain backed by science that enables private + and public transactions team: anonymous: false teammembers: - - name: Lars Seier Christensen - roles: Chairman - - name: Nibras Stiebar-Bang - roles: CTO & CPO - - name: Jonas Stiebar-Bang - roles: CCO - - name: Jørgen Hauglund - roles: CFO + - name: Lars Seier Christensen + roles: Chairman + - name: Nibras Stiebar-Bang + roles: CTO & CPO + - name: Jonas Stiebar-Bang + roles: CCO + - name: "J\xF8rgen Hauglund" + roles: CFO links: web: https://concordium.com github: https://github.com/Concordium whitepaper: https://www.concordium.com/technology#whitepapers -have_token: true +have_token: false tokens: - - symbol: CCD +- symbol: CCD project_status: live_status: true - version: "" + version: '' testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/cool-wallet/index.yaml b/src/projects/cool-wallet/index.yaml index 7f7a086f..129de861 100644 --- a/src/projects/cool-wallet/index.yaml +++ b/src/projects/cool-wallet/index.yaml @@ -1,13 +1,13 @@ name: Cool Wallet categories: - - applications -description: "Non-custodial wallet" +- applications +description: Non-custodial wallet team: anonymous: false teammembers: - - name: Michael Ou - role: CEO - link: https://coolbitx.com/about/ + - name: Michael Ou + role: CEO + link: https://coolbitx.com/about/ links: web: https://www.coolwallet.io/ blog: https://www.coolwallet.io/blog/ @@ -17,6 +17,7 @@ project_status: live_status: true testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/crust/index.yaml b/src/projects/crust/index.yaml index 0a770cf1..76f81254 100644 --- a/src/projects/crust/index.yaml +++ b/src/projects/crust/index.yaml @@ -1,8 +1,11 @@ name: Crust categories: - - applications -ecosystem: [polkadot] -description: "Crust provides a decentralized storage network of Web3 ecosystem. It supports multiple storage layer protocols such as IPFS, and exposes storage interfaces to application layer." +- applications +ecosystem: +- polkadot +description: Crust provides a decentralized storage network of Web3 ecosystem. It + supports multiple storage layer protocols such as IPFS, and exposes storage interfaces + to application layer. team: anonymous: true links: @@ -19,6 +22,7 @@ project_status: version: Release 6 testnet: true mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/crypviser-secure-messenger/index.yaml b/src/projects/crypviser-secure-messenger/index.yaml index 0ecfde17..8059d4f0 100644 --- a/src/projects/crypviser-secure-messenger/index.yaml +++ b/src/projects/crypviser-secure-messenger/index.yaml @@ -1,28 +1,28 @@ name: Crypviser Secure Messenger categories: - - social-and-communications -description: "The most private messaging app, based on Blockchain technology" +- social-and-communications +description: The most private messaging app, based on Blockchain technology team: anonymous: false teammembers: - - name: Vadim Andryan - role: Managing Director - - name: Waldemar Konradi - role: Managing Director + - 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 +have_token: false tokens: - - symbol: CVT +- symbol: CVT project_status: live_status: true version: mainnet testnet: false mainnet: true - usecases: - - messaging +- messaging +third_party_dependency: false diff --git a/src/projects/cultdao/index.yaml b/src/projects/cultdao/index.yaml index d1fc62ae..90218c02 100644 --- a/src/projects/cultdao/index.yaml +++ b/src/projects/cultdao/index.yaml @@ -1,31 +1,29 @@ name: CULT DAO -categories: [applications] -assets_used: [CULT] -ecosystem: [ethereum] - +categories: +- applications +assets_used: +- CULT +ecosystem: +- ethereum description: Investment DAO that fight against centralization and further decentralization product_readiness: live - -have_token: true +have_token: false token_link: https://etherscan.io/address/0xf0f9D895aCa5c8678f706FB8216fa22957685A13 tokens: - - name: CULT - symbol: CULT - network: Ethereum - contract_address: "0xf0f9D895aCa5c8678f706FB8216fa22957685A13" +- 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 --------------------------------------------------------------------- + - name: Mr. O Modulus + role: Founder + link: https://x.com/MrOmodulus + - name: Artorias + role: Co-Founder + link: https://x.com/Artorias_eth links: web: https://cultdao.io/ github: https://github.com/cultdao-developer/cultdao @@ -33,22 +31,17 @@ links: 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" - +- name: Solidproof Audit + link: https://github.com/solidproof/smart-contract-audits/blob/main/SmartContract_Audit_Solidproof_CultDAO.pdf + time: '2022-11-11' usecases: - - dao +- dao +third_party_dependency: false diff --git a/src/projects/cyclone/index.yaml b/src/projects/cyclone/index.yaml index e964a782..7cbbbdf1 100644 --- a/src/projects/cyclone/index.yaml +++ b/src/projects/cyclone/index.yaml @@ -1,7 +1,8 @@ name: Cyclone categories: - - applications -description: "Cyclone is a protocol that applies zkSNARKs to enable transactional privacy by breaking the on-chain link between depositor and recipient addresses." +- applications +description: Cyclone is a protocol that applies zkSNARKs to enable transactional privacy + by breaking the on-chain link between depositor and recipient addresses. team: anonymous: true product_readiness: live @@ -19,12 +20,13 @@ project_status: 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 - +- 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 usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/damus/index.yaml b/src/projects/damus/index.yaml index 347d222f..118a92f5 100644 --- a/src/projects/damus/index.yaml +++ b/src/projects/damus/index.yaml @@ -1,12 +1,12 @@ name: Damus categories: - - applications +- applications description: Nostr client for the social network you control. links: web: https://damus.io github: https://github.com/damus-io - twitter: https://x.com/damusapp - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/dappnode/index.yaml b/src/projects/dappnode/index.yaml index 0beba03d..c3048abd 100644 --- a/src/projects/dappnode/index.yaml +++ b/src/projects/dappnode/index.yaml @@ -1,8 +1,10 @@ name: DappNode categories: - - hardware -description: "Easy to use hardware and software solution for running Ethereum and other kind of nodes, staking, IPFS, etc" -ecosystem: [multichain] +- 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 @@ -15,6 +17,7 @@ team: anonymous: false company: link: https://dappnode.com/pages/about - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/darkfi/index.yaml b/src/projects/darkfi/index.yaml index 2b08b6b2..f0843665 100644 --- a/src/projects/darkfi/index.yaml +++ b/src/projects/darkfi/index.yaml @@ -1,7 +1,9 @@ name: DarkFi categories: - - infrastructure -description: "DarkFi is a new Layer 1 blockchain, designed with anonymity at the forefront. It offers flexible private primitives that can be wielded to create any kind of application" +- 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 @@ -12,6 +14,7 @@ project_status: version: Testnet V.1 testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/dauth-network/index.yaml b/src/projects/dauth-network/index.yaml index 464ec3ed..adec26cd 100644 --- a/src/projects/dauth-network/index.yaml +++ b/src/projects/dauth-network/index.yaml @@ -1,16 +1,16 @@ name: DAuth Network categories: - - applications -description: "a decentralized authentication network empowering wallets and dApps to create authentication with a focus on privacy" +- applications +description: a decentralized authentication network empowering wallets and dApps to + create authentication with a focus on privacy links: web: https://www.dauth.network github: https://github.com/DAuth-Network 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/decentr/index.yaml b/src/projects/decentr/index.yaml index 184699ae..34789c7a 100644 --- a/src/projects/decentr/index.yaml +++ b/src/projects/decentr/index.yaml @@ -1,7 +1,9 @@ name: Decentr categories: - - applications -description: "Creating a bridge between internet users and applications developed with distributed ledger technology, an open source platform, which enables you to manage and pay with your Personal Data Value" +- applications +description: Creating a bridge between internet users and applications developed with + distributed ledger technology, an open source platform, which enables you to manage + and pay with your Personal Data Value links: web: https://decentr.net github: https://github.com/Decentr-net @@ -10,6 +12,7 @@ links: twitter: https://x.com/decentrnet discord: https://discord.com/invite/VMUt7yw92B telegram: https://t.me/DecentrNet - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/decred/index.yaml b/src/projects/decred/index.yaml index c133e423..673feb38 100644 --- a/src/projects/decred/index.yaml +++ b/src/projects/decred/index.yaml @@ -1,8 +1,10 @@ name: Decred categories: - - defi -description: "A blockchain-based cryptocurrency with a strong focus on community input, open governance, and sustainable funding for development" -ecosystem: [lighting-network] +- defi +description: A blockchain-based cryptocurrency with a strong focus on community input, + open governance, and sustainable funding for development +ecosystem: +- lighting-network links: web: https://decred.org github: https://docs.decred.org @@ -15,6 +17,7 @@ links: telegram: https://t.me/Decred team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/deeper-network/index.yaml b/src/projects/deeper-network/index.yaml index 507bacb9..d2720de4 100644 --- a/src/projects/deeper-network/index.yaml +++ b/src/projects/deeper-network/index.yaml @@ -1,9 +1,12 @@ name: Deeper Network categories: - - hardware +- hardware description: Web 3.0 infrastructure of the users, by the users, for the users. project_status: version: Mainet + live_status: true + mainnet: true + testnet: false links: web: https://www.deeper.network blog: https://shop.deeper.network/pages/blog @@ -13,6 +16,7 @@ links: telegram: https://t.me/DeeperNetwork team: anonymous: true - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/deeponion/index.yaml b/src/projects/deeponion/index.yaml index e63928b3..82d825d1 100644 --- a/src/projects/deeponion/index.yaml +++ b/src/projects/deeponion/index.yaml @@ -85,6 +85,7 @@ blockchain_features: data_masking: DeepSend frontend_anonymity: TOR addresses asset_custody_type: non-custodial + p2p: true project_status: live_status: true diff --git a/src/projects/definer/index.yaml b/src/projects/definer/index.yaml index 83df627a..1c9bb7a0 100644 --- a/src/projects/definer/index.yaml +++ b/src/projects/definer/index.yaml @@ -1,5 +1,7 @@ name: DeFiner -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/demox-labs/index.yaml b/src/projects/demox-labs/index.yaml index cfe1ffeb..dc0556b1 100644 --- a/src/projects/demox-labs/index.yaml +++ b/src/projects/demox-labs/index.yaml @@ -1,16 +1,17 @@ name: Demox labs categories: - - infrastructure -description: "Building privacy preserving ZK infrastructure on Aleo" +- infrastructure +description: Building privacy preserving ZK infrastructure on Aleo team: anonymous: false teammembers: - - name: Evan Marshall - role: CTO - link: https://x.com/CoralRelief + - name: Evan Marshall + role: CTO + link: https://x.com/CoralRelief links: web: https://www.demoxlabs.xyz twitter: https://x.com/DemoxLabs - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/dero/index.yaml b/src/projects/dero/index.yaml index cf55c9f2..760808cb 100644 --- a/src/projects/dero/index.yaml +++ b/src/projects/dero/index.yaml @@ -1,21 +1,23 @@ name: Dero categories: - - infrastructure -description: "A general purpose, private, and scalable decentralized application platform that allows developers to deploy powerful and unstoppable applications, while users retain total control over their assets with complete privacy" +- 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 +have_token: false tokens: - - symbol: DERO +- symbol: DERO project_status: live_status: true version: Mainnet v1 testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/derp/index.yaml b/src/projects/derp/index.yaml index 03662af3..e0ce8aa5 100644 --- a/src/projects/derp/index.yaml +++ b/src/projects/derp/index.yaml @@ -1,10 +1,12 @@ name: DERP categories: - - infrastructure -description: "DERP is an RPC endpoint you can add to your wallet to visualize data leaked by your wallet in communication with the blockchain" +- infrastructure +description: DERP is an RPC endpoint you can add to your wallet to visualize data + leaked by your wallet in communication with the blockchain links: web: https://derp.hoprnet.org/ github: https://github.com/hoprnet/derp - usecases: - - rpc-provider +- rpc-provider +have_token: false +third_party_dependency: false diff --git a/src/projects/discreet-labs/index.yaml b/src/projects/discreet-labs/index.yaml index ed3b60cc..4bd33c8a 100644 --- a/src/projects/discreet-labs/index.yaml +++ b/src/projects/discreet-labs/index.yaml @@ -1,19 +1,21 @@ name: Discreet Labs categories: - - infrastructure -description: "Build blockchain systems for a more private, self-sovereign future on Fidora" +- infrastructure +description: Build blockchain systems for a more private, self-sovereign future on + Fidora team: anonymous: false teammembers: - - name: Samuel Harrison - role: CEO - link: https://x.com/samuelpharrison - - name: Peter Abilla - role: CBO - link: https://x.com/shmula + - 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 - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/discreet/index.yaml b/src/projects/discreet/index.yaml index 2bbdf93a..29e4fcb2 100644 --- a/src/projects/discreet/index.yaml +++ b/src/projects/discreet/index.yaml @@ -1,8 +1,10 @@ name: Discreet categories: - - defi -description: "A game-changing cryptocurrency with a sharp focus on total privacy and blistering speed" -ecosystem: [discreet-compute-network] +- defi +description: A game-changing cryptocurrency with a sharp focus on total privacy and + blistering speed +ecosystem: +- discreet-compute-network project_status: live_status: true version: Testnet @@ -17,6 +19,7 @@ links: telegram: https://t.me/discreetnetwork team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/diva/index.yaml b/src/projects/diva/index.yaml index 8a205f19..b76379c7 100644 --- a/src/projects/diva/index.yaml +++ b/src/projects/diva/index.yaml @@ -1,5 +1,7 @@ name: Diva -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/divestos/index.yaml b/src/projects/divestos/index.yaml index 0cb0b30f..97e82fe4 100644 --- a/src/projects/divestos/index.yaml +++ b/src/projects/divestos/index.yaml @@ -1,7 +1,8 @@ name: DivestOS categories: - - applications -description: "A fork of LineageOS with monthly updates, automated CVE patchings, system WebView, and more" +- applications +description: A fork of LineageOS with monthly updates, automated CVE patchings, system + WebView, and more team: anonymous: true links: @@ -9,9 +10,10 @@ links: github: https://github.com/Divested-Mobile/DivestOS-Build project_status: live_status: true - version: "20.0" + version: '20.0' testnet: false mainnet: true - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/djib/index.yaml b/src/projects/djib/index.yaml index 68d2f63d..ec3347b8 100644 --- a/src/projects/djib/index.yaml +++ b/src/projects/djib/index.yaml @@ -1,13 +1,13 @@ name: DJIB categories: - - applications +- applications description: DJIB is the next generation Web3 storage team: anonymous: false teammembers: - - name: Moe Sayadi - role: CEO/CTO - link: https://djuno.io/#our-team + - name: Moe Sayadi + role: CEO/CTO + link: https://djuno.io/#our-team links: web: https://djib.io github: https://github.com/Djib-io @@ -21,6 +21,7 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/dmail-network/index.yaml b/src/projects/dmail-network/index.yaml index e1f93dac..31101cba 100644 --- a/src/projects/dmail-network/index.yaml +++ b/src/projects/dmail-network/index.yaml @@ -1,18 +1,18 @@ name: Dmail Network categories: - - applications +- applications description: Construct DID in Web3.0, Not Just an Email. -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://dmail.ai github: https://github.com/dmailofficial/dmail 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/dragonX/index.yaml b/src/projects/dragonX/index.yaml index a0fca045..c48cb95c 100644 --- a/src/projects/dragonX/index.yaml +++ b/src/projects/dragonX/index.yaml @@ -1,8 +1,8 @@ id: dragonx name: DragonX categories: - - defi -description: "a Z2Z private by default crypto + messenging" +- defi +description: a Z2Z private by default crypto + messenging links: web: https://dragonx.is/ block_explorer: https://explorer.dragonx.is/ @@ -15,22 +15,23 @@ team: technology: type: ZCash features: - - zk-SNARKs - - RandomX proof - - Sietch + - zk-SNARKs + - RandomX proof + - Sietch blockchain_features: p2p: true + opensource: true dissapearing_tx: true connected_tx: false revealed_recipient: false revealed_sender: false revealed_ammount: false default_privacy: true - project_status: live_status: true testnet: false mainnet: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/dusk-network/index.yaml b/src/projects/dusk-network/index.yaml index 40f99dbb..8a4d8b97 100644 --- a/src/projects/dusk-network/index.yaml +++ b/src/projects/dusk-network/index.yaml @@ -1,17 +1,23 @@ name: Dusk Network -categories: [defi] -ecosystem: [dusk] -description: "Is technology for securities. An open source and secure blockchain (DLT) infrastructure that businesses use to tokenize financial instruments and automate costly processes." +categories: +- defi +ecosystem: +- dusk +description: Is technology for securities. An open source and secure blockchain (DLT) + infrastructure that businesses use to tokenize financial instruments and automate + costly processes. links: web: https://dusk.network/ github: https://github.com/dusk-network project_status: live_status: false testnet: true + mainnet: false team: anonymous: false company: link: https://dusk.network/pages/team - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/ecash/index.yaml b/src/projects/ecash/index.yaml index bdcbbbfb..565410a8 100644 --- a/src/projects/ecash/index.yaml +++ b/src/projects/ecash/index.yaml @@ -1,7 +1,8 @@ name: eCash categories: - - defi -description: "Simple. Instant. Secure. Experience the revolutionary new money powered by Avalanche" +- defi +description: Simple. Instant. Secure. Experience the revolutionary new money powered + by Avalanche links: web: https://e.cash github: https://github.com/bitcoin-abc/bitcoin-abc/ @@ -12,6 +13,7 @@ links: telegram: https://t.me/ecash team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/edge/index.yaml b/src/projects/edge/index.yaml index 0b64d101..5c12fb03 100644 --- a/src/projects/edge/index.yaml +++ b/src/projects/edge/index.yaml @@ -1,8 +1,9 @@ name: Edge categories: - - applications -description: "The most secure way to buy, store & trade crypto under your control" -ecosystem: [multichain] +- applications +description: The most secure way to buy, store & trade crypto under your control +ecosystem: +- multichain project_status: live_status: true version: Mainnet @@ -17,9 +18,10 @@ links: team: anonymous: false teammembers: - - name: Paul Puey - role: CEO - link: https://edge.app/about/ - + - name: Paul Puey + role: CEO + link: https://edge.app/about/ usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/electric-coin-co/index.yaml b/src/projects/electric-coin-co/index.yaml index e37ae73e..9c743378 100644 --- a/src/projects/electric-coin-co/index.yaml +++ b/src/projects/electric-coin-co/index.yaml @@ -1,20 +1,22 @@ name: Electric Coin. Co categories: - - infrastructure -description: "R&D advances accessibility, usability and scalability of Zcash, but the implications of our work have an even broader potential" +- infrastructure +description: R&D advances accessibility, usability and scalability of Zcash, but the + implications of our work have an even broader potential team: anonymous: false teammembers: - - name: Josh Swihart - role: CEO - link: https://x.com/jswihart - - name: Paul Brigner - role: VP - link: https://x.com/paulbrigner + - 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 - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/elite/index.yaml b/src/projects/elite/index.yaml index f9f1f92d..5ede2071 100644 --- a/src/projects/elite/index.yaml +++ b/src/projects/elite/index.yaml @@ -1,6 +1,6 @@ name: Elite categories: - - applications +- applications description: Android and IOS Wallet that respects your privacy team: anonymous: true @@ -12,6 +12,7 @@ project_status: version: 1.3.1 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/elusiv/index.yaml b/src/projects/elusiv/index.yaml index 2bb6b20e..f5b65060 100644 --- a/src/projects/elusiv/index.yaml +++ b/src/projects/elusiv/index.yaml @@ -1,21 +1,27 @@ name: Elusiv -categories: [defi] -ecosystem: [solana] -description: "Create blockchain privacy solutions that are built for everyday transactions — with the power of scalable ZK infrastructure on Solana." +categories: +- defi +ecosystem: +- solana +description: "Create blockchain privacy solutions that are built for everyday transactions\ + \ \u2014 with the power of scalable ZK infrastructure on Solana." technology: type: zk features: - - zk-SNARKS + - zk-SNARKS links: web: https://elusiv.io/ github: https://github.com/elusiv-privacy docs: https://docs.elusiv.io/ project_status: live_status: true + mainnet: true + testnet: false team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280778213%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=s_%40 - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/email-wallet/index.yaml b/src/projects/email-wallet/index.yaml index a026519d..8245f73f 100644 --- a/src/projects/email-wallet/index.yaml +++ b/src/projects/email-wallet/index.yaml @@ -1,8 +1,10 @@ name: Email Wallet categories: - - applications -description: "Use your email address as a crypto wallet, via zk email to keep the protocol decentralized and emails private on-chain" -ecosystem: [ethereum] +- applications +description: Use your email address as a crypto wallet, via zk email to keep the protocol + decentralized and emails private on-chain +ecosystem: +- ethereum links: web: https://emailwallet.org/ docs: https://zkemail.gitbook.io/zk-email/email-wallet @@ -12,12 +14,14 @@ team: anonymous: true technology: type: ZK - features: [""] + features: + - '' project_status: live_status: true version: Testnet testnet: true mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/entropy1729/index.yaml b/src/projects/entropy1729/index.yaml index 7ad66225..fb7d04ea 100644 --- a/src/projects/entropy1729/index.yaml +++ b/src/projects/entropy1729/index.yaml @@ -1,11 +1,12 @@ name: Entropy1729 categories: - - infrastructure +- infrastructure description: Zero Knowledge Shop. links: web: https://www.entropy1729.com twitter: https://x.com/1729entropy sunset: true - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/epic-cash/index.yaml b/src/projects/epic-cash/index.yaml index d7177038..32801bf0 100644 --- a/src/projects/epic-cash/index.yaml +++ b/src/projects/epic-cash/index.yaml @@ -1,8 +1,10 @@ name: Epic Cash categories: - - defi -description: "Decentralized privacy-enhanced cryptocurrency developed by a growing volunteer community" -ecosystem: [mimblewimble] +- defi +description: Decentralized privacy-enhanced cryptocurrency developed by a growing + volunteer community +ecosystem: +- mimblewimble links: web: https://epiccash.com/ github: https://github.com/orgs/EpicCash/repositories @@ -13,6 +15,7 @@ links: telegram: https://t.me/epiccash/ team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/espresso-systems/index.yaml b/src/projects/espresso-systems/index.yaml index 04c048e2..fd53b988 100644 --- a/src/projects/espresso-systems/index.yaml +++ b/src/projects/espresso-systems/index.yaml @@ -1,20 +1,21 @@ name: Espresso Systems categories: - - infrastructure -description: "Espresso is building a marketplace for shared sequencing, allowing rollups to auction the rights to build their blocks" +- infrastructure +description: Espresso is building a marketplace for shared sequencing, allowing rollups + to auction the rights to build their blocks team: anonymous: false teammembers: - - name: Ben Fisch - role: CEO - - name: Charles Lu - role: COO - - name: Jill Gunter - role: CSO - - name: Benedikt Bünz - role: Chief Scientist - - name: Binyi Chen - role: Chief Cryptographer + - name: Ben Fisch + role: CEO + - name: Charles Lu + role: COO + - name: Jill Gunter + role: CSO + - name: "Benedikt B\xFCnz" + role: Chief Scientist + - name: Binyi Chen + role: Chief Cryptographer links: web: https://www.espressosys.com github: https://github.com/EspressoSystems/ @@ -22,9 +23,10 @@ links: docs: https://docs.espressosys.com/ project_status: live_status: true - version: "" + version: '' testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/eth-privacy/index.yaml b/src/projects/eth-privacy/index.yaml index 50ace813..2dea9872 100644 --- a/src/projects/eth-privacy/index.yaml +++ b/src/projects/eth-privacy/index.yaml @@ -1,9 +1,13 @@ name: ETH Privacy -description: "ETH #Privacy is the hackathon around privacy, organized by the Leading Privacy Alliance of web3." -categories: [social-and-communications] -ecosystem: [ethereum] +description: 'ETH #Privacy is the hackathon around privacy, organized by the Leading + Privacy Alliance of web3.' +categories: +- social-and-communications +ecosystem: +- ethereum links: web: https://www.leadingprivacy.com/istanbul - usecases: - - events +- events +have_token: false +third_party_dependency: false diff --git a/src/projects/ethberlin/index.yaml b/src/projects/ethberlin/index.yaml index 24508a66..f52d5244 100644 --- a/src/projects/ethberlin/index.yaml +++ b/src/projects/ethberlin/index.yaml @@ -1,12 +1,16 @@ name: ETHBerlin -description: "a hackathon, a cultural festival, an educational event, a platform for hacktivism, and a community initiative to push the decentralized ecosystem forward." -categories: [social-and-communications] -ecosystem: [ethereum] +description: a hackathon, a cultural festival, an educational event, a platform for + hacktivism, and a community initiative to push the decentralized ecosystem forward. +categories: +- social-and-communications +ecosystem: +- ethereum links: web: https://ethberlin.ooo/contributors/ github: https://github.com/ethb3rlin/4 blog: https://blog.dod.ngo/ twitter: https://x.com/ETHBerlin - usecases: - - events +- events +have_token: false +third_party_dependency: false diff --git a/src/projects/ethbrno/index.yaml b/src/projects/ethbrno/index.yaml index f074b13c..134d1dc2 100644 --- a/src/projects/ethbrno/index.yaml +++ b/src/projects/ethbrno/index.yaml @@ -1,10 +1,14 @@ name: ETHBrno -description: "An annual independent & open community hackathon for supporters of decentralised finance, smart contracts and Web3 happening in Brno, Czech Republic. 13 projects" -categories: [social-and-communications] -ecosystem: [ethereum] +description: An annual independent & open community hackathon for supporters of decentralised + finance, smart contracts and Web3 happening in Brno, Czech Republic. 13 projects +categories: +- social-and-communications +ecosystem: +- ethereum links: web: https://ethbrno.cz/ twitter: https://twitter.com/ETHBrno - usecases: - - events +- events +have_token: false +third_party_dependency: false diff --git a/src/projects/ethdam/index.yaml b/src/projects/ethdam/index.yaml index e44dc07b..895fc11c 100644 --- a/src/projects/ethdam/index.yaml +++ b/src/projects/ethdam/index.yaml @@ -1,12 +1,15 @@ name: ETHDam -description: "Ethereum-focused privacy & DeFi hackathon. " -categories: [social-and-communications] -ecosystem: [ethereum] +description: 'Ethereum-focused privacy & DeFi hackathon. ' +categories: +- social-and-communications +ecosystem: +- ethereum links: web: https://www.ethdam.com/hackathon twitter: https://twitter.com/CryptoCanal discord: https://discord.com/invite/XJVjpCqQBz telegram: https://t.me/CryptoCanalCommunity - usecases: - - events +- events +have_token: false +third_party_dependency: false diff --git a/src/projects/ethereum-portal-network/index.yaml b/src/projects/ethereum-portal-network/index.yaml index 5e5e67ac..763fd685 100644 --- a/src/projects/ethereum-portal-network/index.yaml +++ b/src/projects/ethereum-portal-network/index.yaml @@ -1,28 +1,30 @@ name: Ethereum Portal Network categories: - - infrastructure -description: "Decentralized P2P overlay network on top of Ethereum devp2p for serving RPC requests" +- infrastructure +description: Decentralized P2P overlay network on top of Ethereum devp2p for serving + RPC requests team: anonymous: false teammembers: - - 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 + - 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 - usecases: - - rpc-provider +- rpc-provider +have_token: false +third_party_dependency: false diff --git a/src/projects/ethernity-cloud/index.yaml b/src/projects/ethernity-cloud/index.yaml index 52062702..1473a3f9 100644 --- a/src/projects/ethernity-cloud/index.yaml +++ b/src/projects/ethernity-cloud/index.yaml @@ -1,8 +1,9 @@ name: Ethernity cloud categories: - - infrastructure -description: "The Web3 decentralized confidential computing ecosystem" -ecosystem: [polygon] +- infrastructure +description: The Web3 decentralized confidential computing ecosystem +ecosystem: +- polygon links: web: https://ethernity.cloud/ docs: https://docs.ethernity.cloud/ @@ -16,21 +17,23 @@ links: 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 + - 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 + opensource: true traceability: kyc: false storage: decentralized: true - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/ethrome/index.yaml b/src/projects/ethrome/index.yaml index 3829b1ee..94f366e6 100644 --- a/src/projects/ethrome/index.yaml +++ b/src/projects/ethrome/index.yaml @@ -1,10 +1,13 @@ name: ETHRome -categories: [social-and-communications] -ecosystem: [ethereum] +categories: +- social-and-communications +ecosystem: +- ethereum links: web: https://ethrome.org/ twitter: https://x.com/ETHRome discord: https://discord.com/invite/tr8KMmC2aF - usecases: - - events +- events +have_token: false +third_party_dependency: false diff --git a/src/projects/evanesco/index.yaml b/src/projects/evanesco/index.yaml index 28d3b63e..4821f173 100644 --- a/src/projects/evanesco/index.yaml +++ b/src/projects/evanesco/index.yaml @@ -1,14 +1,20 @@ name: Evanesco -categories: [defi] -ecosystem: [eva] -description: "A financial protocol platform that combines Layer0 network infrastructure with a private computing framework." +categories: +- 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 + mainnet: true + testnet: false team: anonymous: true - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/evolution/index.yaml b/src/projects/evolution/index.yaml index 1a7362e9..432ccd4f 100644 --- a/src/projects/evolution/index.yaml +++ b/src/projects/evolution/index.yaml @@ -1,26 +1,26 @@ name: Evolution categories: - - defi -description: "A new level of your freedom. Anonymously. Secure." -ecosystem: [evolution] +- defi +description: A new level of your freedom. Anonymously. Secure. +ecosystem: +- evolution project_status: - live status: true + live_status: true version: Mainnet - testnet: true + testnet: false 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/fade-wtf/index.yaml b/src/projects/fade-wtf/index.yaml index 15342488..09fd0bc8 100644 --- a/src/projects/fade-wtf/index.yaml +++ b/src/projects/fade-wtf/index.yaml @@ -1,9 +1,10 @@ name: Fade WTF categories: - - applications +- applications description: Privacy for NFTs powered by Light Protocol. links: web: http://mint.fade.wtf - usecases: - - nft-community +- nft-community +have_token: false +third_party_dependency: false diff --git a/src/projects/fairy/index.yaml b/src/projects/fairy/index.yaml index d437a3b8..8f394b6e 100644 --- a/src/projects/fairy/index.yaml +++ b/src/projects/fairy/index.yaml @@ -1,5 +1,7 @@ name: Fairy -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/fedi/index.yaml b/src/projects/fedi/index.yaml index d8cc9ee9..9f30e56c 100644 --- a/src/projects/fedi/index.yaml +++ b/src/projects/fedi/index.yaml @@ -1,8 +1,9 @@ name: Fedi categories: - - applications -description: "Billions of people are unable to hold bitcoin on or off exchanges" -ecosystem: [bitcoin] +- applications +description: Billions of people are unable to hold bitcoin on or off exchanges +ecosystem: +- bitcoin links: web: https://www.fedi.xyz/ github: https://github.com/fedibtc @@ -15,6 +16,7 @@ project_status: live_status: true testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/fedimint/index.yaml b/src/projects/fedimint/index.yaml index 59c352df..78c21fb1 100644 --- a/src/projects/fedimint/index.yaml +++ b/src/projects/fedimint/index.yaml @@ -1,7 +1,8 @@ name: Fedimint categories: - - infrastructure -description: "An open-source protocol to custody and transact bitcoin in a community context, built on a strong foundation of privacy" +- 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: @@ -12,9 +13,10 @@ links: twitter: https://twitter.com/fedimint project_status: live_status: false - version: "" + version: '' testnet: false mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/fileverse/index.yaml b/src/projects/fileverse/index.yaml index de2a0aab..6837c037 100644 --- a/src/projects/fileverse/index.yaml +++ b/src/projects/fileverse/index.yaml @@ -1,7 +1,8 @@ name: Fileverse categories: - - applications -description: "On-chain people and communities deserve on-chain tools for private communication and collaboration" +- applications +description: On-chain people and communities deserve on-chain tools for private communication + and collaboration team: anonymous: true links: @@ -13,6 +14,7 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/findora-cr/index.yaml b/src/projects/findora-cr/index.yaml index ae103c57..511211f6 100644 --- a/src/projects/findora-cr/index.yaml +++ b/src/projects/findora-cr/index.yaml @@ -1,16 +1,18 @@ name: Findora CR categories: - - applications +- applications description: Enabling ZK Identity Management & CRedentials for Web3 -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://findora.org/findora-cr/ github: https://github.com/findoranetwork team: + anonymous: false company: link: https://findora.org/team/ -have_token: true +have_token: false token_link: https://coinmarketcap.com/it/currencies/findora/ - usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/findora-platform/index.yaml b/src/projects/findora-platform/index.yaml index 04f2a780..f242563f 100644 --- a/src/projects/findora-platform/index.yaml +++ b/src/projects/findora-platform/index.yaml @@ -1,6 +1,6 @@ name: Findora categories: - - infrastructure +- infrastructure description: a decentralized, privacy-preserving smart contract platform. project_status: live_status: true @@ -10,14 +10,15 @@ project_status: links: web: https://findora.org github: https://github.com/findoranetwork -have_token: true +have_token: false tokens: - - symbol: FRA -ecosystem: [multichain] +- symbol: FRA +ecosystem: +- multichain team: anonymous: false company: link: https://findora.org/team/ - usecases: - - computing +- computing +third_party_dependency: false diff --git a/src/projects/findora/index.yaml b/src/projects/findora/index.yaml index d025cc51..d7d919e2 100644 --- a/src/projects/findora/index.yaml +++ b/src/projects/findora/index.yaml @@ -1,7 +1,9 @@ name: Findora categories: - - infrastructure -description: "A decentralized, privacy-preserving smart contract platform. Build the next privacy dApp for any EVM-chain with the world’s leading zero-knowledge technology-explore all new possibilities" +- infrastructure +description: "A decentralized, privacy-preserving smart contract platform. Build the\ + \ next privacy dApp for any EVM-chain with the world\u2019s leading zero-knowledge\ + \ technology-explore all new possibilities" links: web: https://findora.org github: https://github.com/findoranetwork @@ -10,14 +12,14 @@ links: discord: https://discord.com/invite/findora facebook: https://www.facebook.com/findoraOfficial/ telegram: https://t.me/findoraen -have_token: true +have_token: false tokens: - - symbol: FRA +- symbol: FRA project_status: live_status: false - version: "" + version: '' testnet: false mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/firn-protocol/index.yaml b/src/projects/firn-protocol/index.yaml index 63b791c1..27c2cb38 100644 --- a/src/projects/firn-protocol/index.yaml +++ b/src/projects/firn-protocol/index.yaml @@ -1,20 +1,23 @@ name: Firn Protocol -categories: [defi] -ecosystem: [ethereum] -description: "Firn is the first-ever zero-knowledge privacy platform in the account-based model, and introduces pluggable, flexible privacy to Ethereum-based chains." +categories: +- defi +ecosystem: +- ethereum +description: Firn is the first-ever zero-knowledge privacy platform in the account-based + model, and introduces pluggable, flexible privacy to Ethereum-based chains. tokens: - - name: Firn - symbol: FIRN - network: Optimism - contract_address: "0xb20d84ebFeCdC6821448C7094564a039F0AE5EA4" +- name: Firn + symbol: FIRN + network: Optimism + contract_address: '0xb20d84ebFeCdC6821448C7094564a039F0AE5EA4' project_type: DeFi -product_launch_day: "2021-11-06" +product_launch_day: '2021-11-06' technology: type: ZK name: Zero-knowledge features: - - privacy - - payments + - privacy + - payments links: web: https://app.firn.cash/ twitter: https://twitter.com/firnprotocol @@ -49,18 +52,18 @@ traceability: 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 +- 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 +- 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 +- name: Metamask + link: https://www.metamask.io default_privacy: true funding: name: LunarDAO @@ -73,6 +76,6 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - defi +- defi +have_token: false diff --git a/src/projects/firo/index.yaml b/src/projects/firo/index.yaml index 525fff94..8913e95d 100644 --- a/src/projects/firo/index.yaml +++ b/src/projects/firo/index.yaml @@ -1,14 +1,14 @@ name: Firo categories: - - defi +- defi description: A privacy-preserving cryptocurrency and ecosystem -ecosystem: [firo] +ecosystem: +- firo links: web: https://firo.org github: https://github.com/firoorg/firo block_explorer: https://explorer.firo.org/ forum: https://forum.firo.org/ - blog: https://firo.org/blog/ twitter: https://x.com/firoorg discord: https://discord.com/invite/TGZPRbRT3Y @@ -16,6 +16,7 @@ links: telegram: https://t.me/firoorg team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/flock-io/index.yaml b/src/projects/flock-io/index.yaml index 85a93d3d..6c603f1f 100644 --- a/src/projects/flock-io/index.yaml +++ b/src/projects/flock-io/index.yaml @@ -1,16 +1,16 @@ name: FLock.io categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/foundation/index.yaml b/src/projects/foundation/index.yaml index 3196e644..78af1a97 100644 --- a/src/projects/foundation/index.yaml +++ b/src/projects/foundation/index.yaml @@ -1,8 +1,10 @@ name: Foundation categories: - - hardware -description: "The new standard for Bitcoin self custody. Introducing Passport hardware wallet and Envoy mobile app" -ecosystem: [bitcoin] +- 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 @@ -14,6 +16,7 @@ team: anonymous: false company: link: https://foundationdevices.com/about/ - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/fractal-id/index.yaml b/src/projects/fractal-id/index.yaml index df9dfff1..670da523 100644 --- a/src/projects/fractal-id/index.yaml +++ b/src/projects/fractal-id/index.yaml @@ -1,16 +1,16 @@ name: Fractal ID categories: - - applications -description: "We help web3 platforms and ecosystems ensure data and regulatory compliance by enabling selective disclosure of verified user data to KYC/AML status" +- applications +description: We help web3 platforms and ecosystems ensure data and regulatory compliance + by enabling selective disclosure of verified user data to KYC/AML status links: web: https://web.fractal.id github: https://github.com/trustfractal 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/frame/index.yaml b/src/projects/frame/index.yaml index 3b688030..3c44e5a4 100644 --- a/src/projects/frame/index.yaml +++ b/src/projects/frame/index.yaml @@ -1,8 +1,10 @@ name: Frame categories: - - applications -ecosystem: [ethereum] -description: "A privacy focused Ethereum wallet that runs natively on macOS, Windows and Linux." +- applications +ecosystem: +- ethereum +description: A privacy focused Ethereum wallet that runs natively on macOS, Windows + and Linux. links: web: https://frame.sh/ docs: https://docs.frame.sh/ @@ -17,6 +19,7 @@ project_status: version: 0.6.9 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/freechat/index.yaml b/src/projects/freechat/index.yaml index 7bf3f0b8..419fcd29 100644 --- a/src/projects/freechat/index.yaml +++ b/src/projects/freechat/index.yaml @@ -1,9 +1,10 @@ name: FreeChat categories: - - applications +- applications description: Web3 Social links: web: https://twitter.com/Freeture_Chat - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/fulldive/index.yaml b/src/projects/fulldive/index.yaml index 3499f7b6..6abed80a 100644 --- a/src/projects/fulldive/index.yaml +++ b/src/projects/fulldive/index.yaml @@ -1,12 +1,13 @@ name: Fulldive categories: - - applications +- applications description: Web3 browser that respects your privacy links: web: https://www.fulldive.com twitter: https://x.com/fulldive discord: https://discord.com/invite/3f79ygxZ3y facebook: https://www.facebook.com/fulldiveco - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/fyeo-identity/index.yaml b/src/projects/fyeo-identity/index.yaml index 1ab1ba7e..09c544af 100644 --- a/src/projects/fyeo-identity/index.yaml +++ b/src/projects/fyeo-identity/index.yaml @@ -1,6 +1,6 @@ name: FYEO Identity categories: - - applications +- applications description: Decentralized password management. Real-time identity monitoring. links: web: https://www.gofyeo.com/fyeo-identity @@ -8,6 +8,7 @@ links: twitter: https://x.com/gofyeo discord: https://discord.com/invite/tBcAkFPb5r telegram: https://t.me/fyeo_security - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/geniish/index.yaml b/src/projects/geniish/index.yaml index de957e36..c6806f63 100644 --- a/src/projects/geniish/index.yaml +++ b/src/projects/geniish/index.yaml @@ -1,6 +1,6 @@ name: geniish categories: - - applications +- applications description: Confidential NFTs for exclusive experiences. links: web: https://www.geniish.io @@ -9,6 +9,6 @@ links: discord: https://discord.com/invite/Mc6Y2jfeEv have_token: false sunset: false - usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/ghost/index.yaml b/src/projects/ghost/index.yaml index 696430d7..5fcd4b28 100644 --- a/src/projects/ghost/index.yaml +++ b/src/projects/ghost/index.yaml @@ -1,8 +1,10 @@ name: Ghost categories: - - defi -description: "Proof of Stake privacy coin to help make you nothing but a ghost when transacting online" -ecosystem: [ghost] +- defi +description: Proof of Stake privacy coin to help make you nothing but a ghost when + transacting online +ecosystem: +- ghost project_status: live_status: true version: Mainnet @@ -13,13 +15,13 @@ links: github: https://github.com/ghost-coin block_explorer: https://explorer.myghost.org/ whitepaper: https://ipfs.ghostbyjohnmcafee.com/static/media/Ghost_by_McAfee_Whitepaper.727767db5411381be148.pdf - blog: https://ghostprivacy.medium.com/ twitter: https://x.com/Ghost_Privacy discord: https://discord.com/invite/Pjbme6v telegram: https://t.me/ghostcoinbymcafee team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/gotabit/index.yaml b/src/projects/gotabit/index.yaml index 1bb48ff0..5ec37ce9 100644 --- a/src/projects/gotabit/index.yaml +++ b/src/projects/gotabit/index.yaml @@ -1,7 +1,8 @@ name: GotaBit categories: - - infrastructure -description: "An open-source and proof-of-stake blockchain that aims to provide a sandbox environment for the deployment of smart contracts" +- 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: @@ -9,12 +10,12 @@ links: github: https://github.com/gotabit docs: https://docs.gotabit.io/ twitter: https://twitter.com/GotaBitG -have_token: true +have_token: false project_status: live_status: true version: Testnet testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/graphene-os/index.yaml b/src/projects/graphene-os/index.yaml index 6e46bf20..f5fef385 100644 --- a/src/projects/graphene-os/index.yaml +++ b/src/projects/graphene-os/index.yaml @@ -1,6 +1,6 @@ name: Graphene OS categories: - - applications +- applications description: The private and secure mobile operating system with Android app compatibility team: anonymous: true @@ -14,9 +14,10 @@ links: telegram: https://t.me/GrapheneOS project_status: live_status: true - version: "2024051500" + version: '2024051500' testnet: false mainnet: true - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/grin/index.yaml b/src/projects/grin/index.yaml index d14d69c3..0e233ede 100644 --- a/src/projects/grin/index.yaml +++ b/src/projects/grin/index.yaml @@ -1,21 +1,22 @@ name: GRin categories: - - defi +- defi description: Electronic transactions for all. Without censorship or restrictions -ecosystem: [mimblewimble] +ecosystem: +- mimblewimble links: web: https://grin.mw github: https://github.com/mimblewimble/grin 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/hackers-congress-paralelni-polis/index.yaml b/src/projects/hackers-congress-paralelni-polis/index.yaml index f227e5ec..5f8b9e7f 100644 --- a/src/projects/hackers-congress-paralelni-polis/index.yaml +++ b/src/projects/hackers-congress-paralelni-polis/index.yaml @@ -1,10 +1,13 @@ -name: Hackers Congress Paralelní Polis -description: "the flagship event of Paralelní Polis, which since 2014 has been regularly attended by over 500 fans and IT experts from all over the world." -categories: [social-and-communications] +name: "Hackers Congress Paraleln\xED Polis" +description: "the flagship event of Paraleln\xED Polis, which since 2014 has been\ + \ regularly attended by over 500 fans and IT experts from all over the world." +categories: +- social-and-communications links: web: https://last-shot.hcpp.cz/ twitter: https://twitter.com/institutecrypto telegram: https://t.me/HCCP20 - usecases: - - events +- events +have_token: false +third_party_dependency: false diff --git a/src/projects/hana/index.yaml b/src/projects/hana/index.yaml index d0c83dd0..6582872d 100644 --- a/src/projects/hana/index.yaml +++ b/src/projects/hana/index.yaml @@ -1,19 +1,20 @@ name: Hana categories: - - infrastructure -description: "privacy hub for all blockchains, enabling on-chain privacy on existing chains and for arbitrary assets including Bitcoin" +- 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 +have_token: false project_status: live_status: false - version: "" + version: '' testnet: false mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/hashbon-pass/index.yaml b/src/projects/hashbon-pass/index.yaml index 83792021..37e95659 100644 --- a/src/projects/hashbon-pass/index.yaml +++ b/src/projects/hashbon-pass/index.yaml @@ -1,6 +1,6 @@ name: Hashbon Pass categories: - - applications +- applications description: Tokenized All Web3 Pass to KYC while being anonymous. team: anonymous: false @@ -8,9 +8,9 @@ links: web: https://pass.hashbon.com docs: https://hashbon.gitbook.io/hashbon-rocket whitepaper: https://pass.hashbon.com/files/Hashbon_Pass_Whitepaper_v1.0.pdf - twitter: https://twitter.com/hashbon telegram: https://t.me/hashbon_chat - usecases: - - kyc-solution +- kyc-solution +have_token: false +third_party_dependency: false diff --git a/src/projects/hashcloak/index.yaml b/src/projects/hashcloak/index.yaml index a9746544..d6fd8efc 100644 --- a/src/projects/hashcloak/index.yaml +++ b/src/projects/hashcloak/index.yaml @@ -1,18 +1,20 @@ name: HashCloak categories: - - infrastructure -description: "An independent research lab focused on helping organizations and blockchain communities integrate a privacy-first approach into their processes" +- infrastructure +description: An independent research lab focused on helping organizations and blockchain + communities integrate a privacy-first approach into their processes team: anonymous: false teammembers: - - name: Mikerah - link: https://x.com/badcryptobitch - - name: Hernan Vanegas - link: https://x.com/hdvanegasm + - 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 - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/haven-protocol/index.yaml b/src/projects/haven-protocol/index.yaml index c7670c43..554bcc81 100644 --- a/src/projects/haven-protocol/index.yaml +++ b/src/projects/haven-protocol/index.yaml @@ -1,7 +1,7 @@ name: Haven Protocol categories: - - infrastructure -description: "an open source, community-led network of private digital assets" +- infrastructure +description: an open source, community-led network of private digital assets team: anonymous: true links: @@ -11,17 +11,17 @@ links: docs: https://havenprotocol.org/knowledge/ blog: https://havenprotocol.org/category/blog/ twitter: https://twitter.com/HavenXHV -have_token: true +have_token: false tokens: - - symbol: XHV +- symbol: XHV audits: - - name: no audit reports attached - link: https://github.com/haven-protocol-org/security-audits/ +- name: no audit reports attached + link: https://github.com/haven-protocol-org/security-audits/ project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/heyanon/index.yaml b/src/projects/heyanon/index.yaml index faa45e5a..64636067 100644 --- a/src/projects/heyanon/index.yaml +++ b/src/projects/heyanon/index.yaml @@ -1,10 +1,12 @@ name: HeyAnon categories: - - applications -description: "Allows noun-holders to give feedback on proposals while maintaining their privacy using zero-knowledge proofs" +- applications +description: Allows noun-holders to give feedback on proposals while maintaining their + privacy using zero-knowledge proofs links: web: https://www.heyanoun.xyz twitter: https://x.com/HeyAnoun - usecases: - - dao +- dao +have_token: false +third_party_dependency: false diff --git a/src/projects/hideyour-cash/index.yaml b/src/projects/hideyour-cash/index.yaml index 2eb62790..c88cf1f0 100644 --- a/src/projects/hideyour-cash/index.yaml +++ b/src/projects/hideyour-cash/index.yaml @@ -1,11 +1,13 @@ name: HideYour.cash categories: - - applications -description: "HideYour.cash is a private transactions protocol (mixer) designed for well-intended users on NEAR Protocol" +- applications +description: HideYour.cash is a private transactions protocol (mixer) designed for + well-intended users on NEAR Protocol links: web: https://hideyour.cash docs: https://docs.tickets.opact.io/tutorial sunset: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/highline/index.yaml b/src/projects/highline/index.yaml index 04ced9ae..4a49c65a 100644 --- a/src/projects/highline/index.yaml +++ b/src/projects/highline/index.yaml @@ -1,10 +1,11 @@ name: Highline categories: - - infrastructure +- infrastructure description: An execution layer for Ethereum links: web: https://highline.dev github: https://highline.dev/docs/ - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/hinkal/index.yaml b/src/projects/hinkal/index.yaml index c84aa933..43f4f563 100644 --- a/src/projects/hinkal/index.yaml +++ b/src/projects/hinkal/index.yaml @@ -1,5 +1,7 @@ name: Hinkal -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/holonym-id/index.yaml b/src/projects/holonym-id/index.yaml index fefc1ccc..ef1bc31a 100644 --- a/src/projects/holonym-id/index.yaml +++ b/src/projects/holonym-id/index.yaml @@ -1,11 +1,12 @@ name: Holonym categories: - - applications -description: "Your ZK Passport for Web3. A holistic identity that lets you prove facts about yourself without revealing who you are" +- applications +description: Your ZK Passport for Web3. A holistic identity that lets you prove facts + about yourself without revealing who you are links: web: https://www.holonym.id github: https://github.com/holonym-foundation -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/holonym/index.yaml b/src/projects/holonym/index.yaml index d3e9a5d7..6625dcb1 100644 --- a/src/projects/holonym/index.yaml +++ b/src/projects/holonym/index.yaml @@ -1,6 +1,6 @@ name: Holonym categories: - - applications +- applications description: ZK-identity protocol for anonymous KYC, sybil resistance, and compliance. team: anonymous: true @@ -10,7 +10,7 @@ links: docs: https://docs.holonym.id/ blog: https://medium.com/holonym twitter: https://x.com/0xHolonym -have_token: true - +have_token: false usecases: - - kyc-solution +- kyc-solution +third_party_dependency: false diff --git a/src/projects/hopr/index.yaml b/src/projects/hopr/index.yaml index fda9f820..33edff57 100644 --- a/src/projects/hopr/index.yaml +++ b/src/projects/hopr/index.yaml @@ -1,26 +1,29 @@ name: HOPR categories: - - infrastructure -description: "The HOPR network is a decentralized incentivized mixnet, ensuring complete data and metadata privacy for everyone who uses it. Data is sent via multiple hops, so no-one but the sender and receiver know the origin, destination, or content of a data transfer." +- 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: anonymous: false teammembers: - - name: Dr. Sebastian Bürgel - role: President - - name: Rik Krieger - role: Co-Founder + - name: "Dr. Sebastian B\xFCrgel" + 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 +have_token: false tokens: - - symbol: HOPR +- symbol: HOPR project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/hurricane-protocol/index.yaml b/src/projects/hurricane-protocol/index.yaml index 0529462b..70c50e46 100644 --- a/src/projects/hurricane-protocol/index.yaml +++ b/src/projects/hurricane-protocol/index.yaml @@ -1,5 +1,7 @@ name: Hurricane Protocol -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/hush/index.yaml b/src/projects/hush/index.yaml index 31a831b6..d8c626e4 100644 --- a/src/projects/hush/index.yaml +++ b/src/projects/hush/index.yaml @@ -1,18 +1,18 @@ name: Hush categories: - - defi +- defi 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/hushchat/index.yaml b/src/projects/hushchat/index.yaml index 93823acf..ac1a83a9 100644 --- a/src/projects/hushchat/index.yaml +++ b/src/projects/hushchat/index.yaml @@ -1,7 +1,8 @@ name: HushChat categories: - - applications -description: "HushChat is a protocol which is a particular use case of HushList protocol and which sits on top of Hush Protocol, an improved Zcash Protocol" +- applications +description: HushChat is a protocol which is a particular use case of HushList protocol + and which sits on top of Hush Protocol, an improved Zcash Protocol team: anonymous: true links: @@ -15,6 +16,7 @@ project_status: version: mainnet testnet: false mainnet: true - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/hypermine/index.yaml b/src/projects/hypermine/index.yaml index 36675566..18c65726 100644 --- a/src/projects/hypermine/index.yaml +++ b/src/projects/hypermine/index.yaml @@ -1,22 +1,24 @@ name: Hypermine categories: - - infrastructure -description: "Smart tools and protocols for Identity, Privacy & Security, with our roots in Distributed Systems, Machine Learning & Cryptography" +- infrastructure +description: Smart tools and protocols for Identity, Privacy & Security, with our + roots in Distributed Systems, Machine Learning & Cryptography team: anonymous: false teammembers: - - 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/ + - 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 - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/hypersign/index.yaml b/src/projects/hypersign/index.yaml index a52b74c0..f34afd44 100644 --- a/src/projects/hypersign/index.yaml +++ b/src/projects/hypersign/index.yaml @@ -1,18 +1,17 @@ name: Hypersign categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/icebreaker/index.yaml b/src/projects/icebreaker/index.yaml index c6eb6d61..96452074 100644 --- a/src/projects/icebreaker/index.yaml +++ b/src/projects/icebreaker/index.yaml @@ -1,16 +1,15 @@ name: Icebreaker categories: - - applications +- applications 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: "https://farcaster/icebreaker" -have_token: true - + farcaster: https://farcaster/icebreaker +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/iden3/index.yaml b/src/projects/iden3/index.yaml index bd7cba03..df6d7f36 100644 --- a/src/projects/iden3/index.yaml +++ b/src/projects/iden3/index.yaml @@ -1,17 +1,18 @@ name: Iden3 categories: - - applications -description: "The open-source protocol at the basis of Polygon ID. The protocol defines on a low-level how the parties listed above communicate and interact with each." -ecosystem: [ethereum] +- applications +description: The open-source protocol at the basis of Polygon ID. The protocol defines + on a low-level how the parties listed above communicate and interact with each. +ecosystem: +- ethereum links: web: https://iden3.io github: https://github.com/iden3 docs: https://docs.iden3.io/ - blog: https://blog.iden3.io/ twitter: https://x.com/identhree telegram: https://t.me/iden3io -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/iexec/index.yaml b/src/projects/iexec/index.yaml index 487e641b..b4e4cf69 100644 --- a/src/projects/iexec/index.yaml +++ b/src/projects/iexec/index.yaml @@ -1,7 +1,8 @@ id: ixec name: iExec -categories: [applications] -description: "Build, Own, and Monetize in Web3. Privacy & Choice for users" +categories: +- applications +description: Build, Own, and Monetize in Web3. Privacy & Choice for users team: anonymous: false links: @@ -14,14 +15,14 @@ links: discord: https://discord.com/invite/pbt9m98wnU facebook: https://www.facebook.com/iexecteam telegram: https://discord.com/invite/pbt9m98wnU -have_token: true +have_token: false token_link: https://etherscan.io/token/0x607F4C5BB672230e8672085532f7e901544a7375 tokens: - - name: RLC - symbol: RLC - network: Ethereum - contract_address: "0x607F4C5BB672230e8672085532f7e901544a7375" +- name: RLC + symbol: RLC + network: Ethereum + contract_address: '0x607F4C5BB672230e8672085532f7e901544a7375' sunset: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/imperiume/index.yaml b/src/projects/imperiume/index.yaml index f2921a0f..61477ac7 100644 --- a/src/projects/imperiume/index.yaml +++ b/src/projects/imperiume/index.yaml @@ -1,11 +1,11 @@ name: Imperiume categories: - - applications +- applications description: Non-custodial wallet links: web: https://www.imperiume.io/wallet - sunset: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/incognet/index.yaml b/src/projects/incognet/index.yaml index b437c002..a32dc198 100644 --- a/src/projects/incognet/index.yaml +++ b/src/projects/incognet/index.yaml @@ -1,7 +1,9 @@ name: Incognet categories: - - infrastructure -description: "Privacy-respecting ISP, hosting, and VPS provider that can be accessed on I2P, TOR, and Yggdrasil - accepts various cryptocurrencies as payment (Bitcoin, Monero, Litecoin)" +- 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: @@ -9,6 +11,7 @@ links: blog: https://blog.incognet.io/ tor: http://incoghostm2dytlqdiaj3lmtn7x2l5gb76jhabb6ywbqhjfzcoqq6aad.onion/ twitter: https://x.com/IncogNetLLC - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/integritee/index.yaml b/src/projects/integritee/index.yaml index 2d37ec23..4bea3b26 100644 --- a/src/projects/integritee/index.yaml +++ b/src/projects/integritee/index.yaml @@ -1,7 +1,8 @@ name: Integritee categories: - - infrastructure -description: "Integritee is a highly scalable, privacy-enabling network in the Polkadot ecosystem with parachains on Polkadot and Kusama" +- infrastructure +description: Integritee is a highly scalable, privacy-enabling network in the Polkadot + ecosystem with parachains on Polkadot and Kusama team: anonymous: true links: @@ -11,14 +12,14 @@ links: 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 +have_token: false tokens: - - symbol: TEER +- symbol: TEER project_status: live_status: true version: testnet testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/interep/index.yaml b/src/projects/interep/index.yaml index 1530be64..61ae5641 100644 --- a/src/projects/interep/index.yaml +++ b/src/projects/interep/index.yaml @@ -1,15 +1,14 @@ name: Interep categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/iodeos/index.yaml b/src/projects/iodeos/index.yaml index 48fdde6e..2e6d0922 100644 --- a/src/projects/iodeos/index.yaml +++ b/src/projects/iodeos/index.yaml @@ -1,7 +1,9 @@ -name: iodéOS +name: "iod\xE9OS" categories: - - applications -description: "Fork of LineageOS with a Trust interface that will help you understand the security of your device and warn incoming threats. Recently released, still in beta" +- applications +description: Fork of LineageOS with a Trust interface that will help you understand + the security of your device and warn incoming threats. Recently released, still + in beta team: anonymous: true links: @@ -11,9 +13,10 @@ links: twitter: https://twitter.com/iode_tech project_status: live_status: true - version: "5" + version: '5' testnet: false mainnet: true - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/iron-fish/index.yaml b/src/projects/iron-fish/index.yaml index d1cb2121..928eaf36 100644 --- a/src/projects/iron-fish/index.yaml +++ b/src/projects/iron-fish/index.yaml @@ -1,10 +1,11 @@ name: Iron Fish categories: - - defi +- defi description: The Privacy Platform for Web3 -ecosystem: [iron-fish] +ecosystem: +- iron-fish project_status: - live status: true + live_status: true version: testnet testnet: true mainnet: false @@ -13,13 +14,13 @@ links: 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/jami/index.yaml b/src/projects/jami/index.yaml index 73430392..904fa257 100644 --- a/src/projects/jami/index.yaml +++ b/src/projects/jami/index.yaml @@ -1,7 +1,7 @@ name: Jami categories: - - applications -description: "a free/libre, end-to-end encrypted, and private communication platform" +- applications +description: a free/libre, end-to-end encrypted, and private communication platform team: anonymous: true links: @@ -12,6 +12,7 @@ links: blog: https://jami.net/tag/articles/ twitter: https://x.com/jami_social facebook: https://www.facebook.com/JamiCommunication - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/joinmarket/index.yaml b/src/projects/joinmarket/index.yaml index 7032e634..b53dee80 100644 --- a/src/projects/joinmarket/index.yaml +++ b/src/projects/joinmarket/index.yaml @@ -1,6 +1,6 @@ name: JoinMarket categories: - - applications +- applications description: Decentralized bitcoin coinjoin for improving privacy and fungibility. team: anonymous: true @@ -11,6 +11,7 @@ links: docs: https://joinmarket-org.github.io/joinmarket-clientserver/ twitter: https://twitter.com/joinmarket sunset: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/juno-analytics/index.yaml b/src/projects/juno-analytics/index.yaml index ca96d473..6e67724e 100644 --- a/src/projects/juno-analytics/index.yaml +++ b/src/projects/juno-analytics/index.yaml @@ -1,17 +1,17 @@ name: Juno Analytics categories: - - applications -description: "Simple, performant, and open-source web3 analytics solution designed with privacy in mind for the developers building decentralized dapps" +- applications +description: Simple, performant, and open-source web3 analytics solution designed + with privacy in mind for the developers building decentralized dapps links: - web: >- - https://juno.build/blog/introducing-juno-analytics-unlock-deeper-insights-with-privacy-in-mind + 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/justnote/index.yaml b/src/projects/justnote/index.yaml index 55ead238..b5b25ca8 100644 --- a/src/projects/justnote/index.yaml +++ b/src/projects/justnote/index.yaml @@ -1,7 +1,8 @@ name: Justnote categories: - - applications -description: "A simple, fast, privacy-focused note-taking app that you can use easily, take notes rapidly, and, importantly, truly own your account and data." +- applications +description: A simple, fast, privacy-focused note-taking app that you can use easily, + take notes rapidly, and, importantly, truly own your account and data. links: web: https://justnote.cc github: https://github.com/stxapps/justnote-client @@ -9,6 +10,9 @@ links: twitter: https://x.com/justnotecc project_status: live_status: true - + mainnet: true + testnet: false usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/keep/index.yaml b/src/projects/keep/index.yaml index eb74d003..394dd2ea 100644 --- a/src/projects/keep/index.yaml +++ b/src/projects/keep/index.yaml @@ -1,13 +1,14 @@ name: Keep categories: - - infrastructure -description: "The privacy-focused infrastructure behind tBTCv2, the only truly decentralized solution for Bitcoin on Ethereum" +- 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 +have_token: false tokens: - - symbol: KEEP - +- symbol: KEEP usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/kelvpn/index.yaml b/src/projects/kelvpn/index.yaml index a4cac7ea..1a642f18 100644 --- a/src/projects/kelvpn/index.yaml +++ b/src/projects/kelvpn/index.yaml @@ -1,8 +1,9 @@ name: KelVPN categories: - - applications +- applications description: The first ever deanon-proof VPN is now available. -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://kelvpn.com github: https://gitlab.demlabs.net/cellframe/cellframe-sdk @@ -12,13 +13,13 @@ links: telegram: https://t.me/kelvpndev team: anonymous: true -have_token: true +have_token: false token_link: https://coinmarketcap.com/currencies/kelvpn/ project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/kilt/index.yaml b/src/projects/kilt/index.yaml index 86546456..49eb2ec5 100644 --- a/src/projects/kilt/index.yaml +++ b/src/projects/kilt/index.yaml @@ -1,24 +1,26 @@ name: KILT categories: - - applications -description: "A blockchain identity protocol for issuing self-sovereign, verifiable credentials and decentralized identifiers" -ecosystem: [multichain] +- applications +description: A blockchain identity protocol for issuing self-sovereign, verifiable + credentials and decentralized identifiers +ecosystem: +- multichain links: web: https://www.kilt.io github: https://github.com/KILTprotocol 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: + anonymous: false company: link: https://www.kilt.io/team -have_token: true +have_token: false token_link: https://coinmarketcap.com/it/currencies/kiltprotocol/ - usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/krebit/index.yaml b/src/projects/krebit/index.yaml index c70a6ea6..639d4124 100644 --- a/src/projects/krebit/index.yaml +++ b/src/projects/krebit/index.yaml @@ -1,15 +1,15 @@ name: Krebit categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/krux/index.yaml b/src/projects/krux/index.yaml index ed929bb3..aba9087f 100644 --- a/src/projects/krux/index.yaml +++ b/src/projects/krux/index.yaml @@ -1,8 +1,9 @@ name: Krux categories: - - applications +- applications description: Open-source signing device firmware for Bitcoin -ecosystem: [bitcoin] +ecosystem: +- bitcoin links: web: https://selfcustody.github.io/krux/ github: https://github.com/selfcustody/krux @@ -15,6 +16,7 @@ project_status: version: 24.03.0 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/kyc-not-me/index.yaml b/src/projects/kyc-not-me/index.yaml index f023748f..228d2098 100644 --- a/src/projects/kyc-not-me/index.yaml +++ b/src/projects/kyc-not-me/index.yaml @@ -1,14 +1,16 @@ name: KYC not me categories: - - applications -description: "buy, exchange, trade and use cryptos without needing to identify themselves, and preserving the decentralized and self-governed essence of Cryptocurrencies (only BTC & XMR)" +- applications +description: buy, exchange, trade and use cryptos without needing to identify themselves, + and preserving the decentralized and self-governed essence of Cryptocurrencies (only + BTC & XMR) team: anonymous: true links: web: https://kycnot.me/ github: https://codeberg.org/pluja/kycnot.me - twitter: https://x.com/kycnot - usecases: - - kyc-solution +- kyc-solution +have_token: false +third_party_dependency: false diff --git a/src/projects/layerx/index.yaml b/src/projects/layerx/index.yaml index 937663df..e46d6b14 100644 --- a/src/projects/layerx/index.yaml +++ b/src/projects/layerx/index.yaml @@ -1,10 +1,11 @@ name: LayerX categories: - - infrastructure +- infrastructure description: A privacy-preserving blockchain on Substrate links: web: https://layerx.co.jp github: https://github.com/LayerXcom - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/leading-privacy-alliance/index.yaml b/src/projects/leading-privacy-alliance/index.yaml index 52547910..cf724d1b 100644 --- a/src/projects/leading-privacy-alliance/index.yaml +++ b/src/projects/leading-privacy-alliance/index.yaml @@ -1,11 +1,13 @@ name: Leading Privacy Alliance categories: - - social-and-communications -description: "The purpose of the LPA of Web3 is to speak up for everyone working in the Web3 industry and make them aware of the need for privacy (by design)" +- social-and-communications +description: The purpose of the LPA of Web3 is to speak up for everyone working in + the Web3 industry and make them aware of the need for privacy (by design) links: web: https://www.leadingprivacy.com blog: https://medium.com/hoprnet/hopr-co-founds-leading-privacy-alliance-of-web3-99e057722deb twitter: https://twitter.com/LeadingPrivacy - usecases: - - alliances +- alliances +have_token: false +third_party_dependency: false diff --git a/src/projects/legendao/index.yaml b/src/projects/legendao/index.yaml index d0a57cd2..ad132e98 100644 --- a/src/projects/legendao/index.yaml +++ b/src/projects/legendao/index.yaml @@ -1,18 +1,20 @@ name: Legendao categories: - - applications -description: "The play-to-mint NFT platform, powered by Secret Network, that enables top artists, brands, and NFT creators to launch their NFT projects in a unique, gamified way" +- applications +description: The play-to-mint NFT platform, powered by Secret Network, that enables + top artists, brands, and NFT creators to launch their NFT projects in a unique, + gamified way links: web: https://legendao.io blog: https://medium.com/legendao twitter: https://x.com/LegendaoNFT discord: https://discord.com/invite/ARgf2Qun2y -have_token: true +have_token: false tokens: - - name: LegendaoToken - symbol: LGND - network: Cosmos +- name: LegendaoToken + symbol: LGND + network: Cosmos sunset: false - usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/leo-wallet/index.yaml b/src/projects/leo-wallet/index.yaml index 1896df2c..147c7f0f 100644 --- a/src/projects/leo-wallet/index.yaml +++ b/src/projects/leo-wallet/index.yaml @@ -1,8 +1,9 @@ name: Leo wallet categories: - - applications +- applications description: Safe and easy way to interact with the Aleo blockchain -ecosystem: [aleo] +ecosystem: +- aleo links: web: https://leo.app/ github: https://github.com/demox-labs @@ -12,14 +13,15 @@ links: team: anonymous: false teammembers: - - name: Barron Caster - role: CEO - link: https://www.leo.app/about - project_status: + - name: Barron Caster + role: CEO + link: https://www.leo.app/about + project_status: null live_status: true version: Mainnet testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/light-protocol/index.yaml b/src/projects/light-protocol/index.yaml index 4e3bbab6..17dd5d0a 100644 --- a/src/projects/light-protocol/index.yaml +++ b/src/projects/light-protocol/index.yaml @@ -1,16 +1,17 @@ name: Light Protocol categories: - - 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. +- 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 +have_token: false tokens: - - symbol: LIGHT - +- symbol: LIGHT usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/light-shield/index.yaml b/src/projects/light-shield/index.yaml index e17f14fe..e2173a8f 100644 --- a/src/projects/light-shield/index.yaml +++ b/src/projects/light-shield/index.yaml @@ -1,5 +1,7 @@ name: Light Shield -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/liquidfactory/index.yaml b/src/projects/liquidfactory/index.yaml index 80ea5aaa..d13436ed 100644 --- a/src/projects/liquidfactory/index.yaml +++ b/src/projects/liquidfactory/index.yaml @@ -1,9 +1,10 @@ name: LiquidFactory categories: - - applications +- applications description: Unlocks liquidity to DeFi, GameFi & NFTs. links: web: https://liquidfactory.io - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/lit/index.yaml b/src/projects/lit/index.yaml index e6a28eaf..60a698b2 100644 --- a/src/projects/lit/index.yaml +++ b/src/projects/lit/index.yaml @@ -1,18 +1,19 @@ name: Lit categories: - - infrastructure -description: Builders of apps, wallets, protocols, and AI agents use the Lit network for decentralized signing, encryption, and compute. +- infrastructure +description: Builders of apps, wallets, protocols, and AI agents use the Lit network + for decentralized signing, encryption, and compute. team: anonymous: false company: link: https://example-company.com teammembers: - - name: David Sneider - role: Co-Founder - link: https://www.linkedin.com/in/davidsneider - - name: Chris Cassano - role: Co-Founder & CTO - link: https://www.linkedin.com/in/chriscassano + - name: David Sneider + role: Co-Founder + link: https://www.linkedin.com/in/davidsneider + - name: Chris Cassano + role: Co-Founder & CTO + link: https://www.linkedin.com/in/chriscassano links: web: https://litprotocol.com github: https://github.com/LIT-Protocol/ @@ -20,17 +21,17 @@ links: whitepaper: https://github.com/LIT-Protocol/whitepaper?ref=spark.litprotocol.com blog: https://spark.litprotocol.com/ twitter: https://twitter.com/litprotocol -have_token: true +have_token: false tokens: - - symbol: LIT +- 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 - +- name: 4 Audits from Oct.23 - Jan.24 + link: https://drive.google.com/drive/folders/1Rrht88iUkzpofwl1CvP9gEjqY60BKyFn?usp=drive_link&ref=spark.litprotocol.com usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/litecash/index.yaml b/src/projects/litecash/index.yaml index 617e88fe..5cc28299 100644 --- a/src/projects/litecash/index.yaml +++ b/src/projects/litecash/index.yaml @@ -1,18 +1,19 @@ name: Litecash categories: - - defi -description: "The first fork of Beam. We removed the founders reward and are 100% community-funded" -ecosystem: [mimblewimble] +- defi +description: The first fork of Beam. We removed the founders reward and are 100% community-funded +ecosystem: +- mimblewimble links: web: https://lite-cash.com github: https://github.com/Litecash-Dev 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/litentry/index.yaml b/src/projects/litentry/index.yaml index 6f768f52..acef5e07 100644 --- a/src/projects/litentry/index.yaml +++ b/src/projects/litentry/index.yaml @@ -1,23 +1,24 @@ name: Litentry categories: - - applications -description: "A decentralized identity aggregator, providing the structure and tools to empower you and your identity" -ecosystem: [multichain] +- applications +description: A decentralized identity aggregator, providing the structure and tools + to empower you and your identity +ecosystem: +- multichain links: web: https://litentry.com github: https://github.com/litentry 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: + anonymous: false company: - link: >- - https://www.linkedin.com/search/results/people/?currentCompany=%5B%2240805422%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=2W3 -have_token: true + link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2240805422%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=2W3 +have_token: false token_link: https://coinmarketcap.com/currencies/litentry/ - usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/literully/index.yaml b/src/projects/literully/index.yaml index c63669ff..8bc74841 100644 --- a/src/projects/literully/index.yaml +++ b/src/projects/literully/index.yaml @@ -1,11 +1,14 @@ name: Literully categories: - - applications -description: "A decentralized voting platform that allows users to create and participate in voting on any topic, all without giving up their privacy or control over their data" +- applications +description: A decentralized voting platform that allows users to create and participate + in voting on any topic, all without giving up their privacy or control over their + data links: web: https://literully.com github: https://docs.literully.com/articles/ twitter: https://x.com/literully - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/logion/index.yaml b/src/projects/logion/index.yaml index 8cce4dd0..6a73e18b 100644 --- a/src/projects/logion/index.yaml +++ b/src/projects/logion/index.yaml @@ -1,7 +1,10 @@ name: Logion categories: - - infrastructure -description: "Substrate-based public blockchain operated by a decentralized network of legal officers. Logion redefines the connection between digital actions and their legal implications by ensuring every blockchain-based transaction is backed by robust legal certification" +- 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: @@ -10,7 +13,7 @@ links: 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 - +have_token: false usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/lokinet/index.yaml b/src/projects/lokinet/index.yaml index 878ff057..d6ad1bde 100644 --- a/src/projects/lokinet/index.yaml +++ b/src/projects/lokinet/index.yaml @@ -1,8 +1,10 @@ name: Lokinet categories: - - applications -description: A VPN tunnel that uses onion routing as the transport (build on Oxen blockchain) -ecosystem: [multichain] +- applications +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 @@ -10,8 +12,8 @@ links: twitter: https://twitter.com/Lokinet_org team: anonymous: true -have_token: true +have_token: false token_link: https://www.coingecko.com/en/coins/oxen - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/lunar/index.yaml b/src/projects/lunar/index.yaml index 00de6d6c..ebb97e53 100644 --- a/src/projects/lunar/index.yaml +++ b/src/projects/lunar/index.yaml @@ -1,9 +1,11 @@ name: Lunar aka Brume Wallet -categories: [applications] -ecosystem: [ethereum] +categories: +- applications +ecosystem: +- ethereum links: - web:: https://bento.me/brume - github:: https://github.com/brumewallet + 'web:': https://bento.me/brume + 'github:': https://github.com/brumewallet twitter: https://twitter.com/BrumeWallet project_status: live_status: true @@ -13,9 +15,10 @@ project_status: team: anonymous: true teammembers: - - name: Haz Æ 41 - role: Founder - link: https://x.com/hazae41 - + - name: "Haz \xC6 41" + role: Founder + link: https://x.com/hazae41 usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/lunardao/index.yaml b/src/projects/lunardao/index.yaml index cb838d9d..82c95e17 100644 --- a/src/projects/lunardao/index.yaml +++ b/src/projects/lunardao/index.yaml @@ -1,6 +1,6 @@ name: LunarDAO categories: - - applications +- applications description: DAO fostering R&D and investments within Lunarpunk movement links: web: https://lunardao.net @@ -10,6 +10,7 @@ links: blog: https://lunardao.net/blog.html twitter: https://x.com/lunarpunksquad telegram: https://t.me/LunarDAO_Official - usecases: - - dao +- dao +have_token: false +third_party_dependency: false diff --git a/src/projects/lurch1317/index.yaml b/src/projects/lurch1317/index.yaml index 84091213..874982ef 100644 --- a/src/projects/lurch1317/index.yaml +++ b/src/projects/lurch1317/index.yaml @@ -1,10 +1,12 @@ name: lurch1317 categories: - - applications -description: "The omemo variant based on vault1317, which is an off-chain secure communication protocol with deniability under federated XMPP network with" +- applications +description: The omemo variant based on vault1317, which is an off-chain secure communication + protocol with deniability under federated XMPP network with links: web: https://github.com/hardenedvault/lurch/blob/lurch1317/README-lurch1317.md github: https://github.com/hardenedvault/lurch/blob/lurch1317/README-lurch1317.md - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/maci/index.yaml b/src/projects/maci/index.yaml index 87d74d3f..1ea7de3f 100644 --- a/src/projects/maci/index.yaml +++ b/src/projects/maci/index.yaml @@ -1,7 +1,8 @@ name: MACI categories: - - infrastructure -description: "Minimum Anti-Collusion Infrastructure (MACI) is a base layer for bribery-resistant, secure, and private digital voting" +- infrastructure +description: Minimum Anti-Collusion Infrastructure (MACI) is a base layer for bribery-resistant, + secure, and private digital voting team: anonymous: true links: @@ -16,9 +17,10 @@ project_status: 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 - +- name: RMACI Security Audit + link: https://maci.pse.dev/assets/files/20240223_PSE_Audit_audit_report-a181b98b05198c102be49113c354b5f2.pdf + time: Feb., 2024 usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/manta-network/index.yaml b/src/projects/manta-network/index.yaml index f3967856..c7b60f06 100644 --- a/src/projects/manta-network/index.yaml +++ b/src/projects/manta-network/index.yaml @@ -1,7 +1,7 @@ name: Manta Network categories: - - infrastructure -description: "the multi-modular ecosystem for zero-knowledge (ZK) applications" +- infrastructure +description: the multi-modular ecosystem for zero-knowledge (ZK) applications team: anonymous: true links: @@ -9,14 +9,14 @@ links: github: https://github.com/manta-network docs: https://docs.manta.network/ twitter: https://twitter.com/mantanetwork -have_token: true +have_token: false tokens: - - symbol: MANTA +- symbol: MANTA project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/manta-pay/index.yaml b/src/projects/manta-pay/index.yaml index 8330e595..9a9e9ad9 100644 --- a/src/projects/manta-pay/index.yaml +++ b/src/projects/manta-pay/index.yaml @@ -1,11 +1,14 @@ name: Manta Pay -categories: [defi] -ecosystem: [polkadot] -description: "MantaPay is coming to Calamari as the first privacy payment solution in the Kusama ecosystem." +categories: +- defi +ecosystem: +- polkadot +description: MantaPay is coming to Calamari as the first privacy payment solution + in the Kusama ecosystem. technology: type: zk features: - - modular + - modular links: web: https://app.manta.network/dolphin/transact github: https://github.com/Manta-Network @@ -13,8 +16,10 @@ links: project_status: live_status: false testnet: true + mainnet: false team: anonymous: true - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/marlin/index.yaml b/src/projects/marlin/index.yaml index 0782db77..6799f21c 100644 --- a/src/projects/marlin/index.yaml +++ b/src/projects/marlin/index.yaml @@ -1,8 +1,10 @@ name: Marlin categories: - - infrastructure -description: "Serverless backends for Web3 - Access and process data verifiably using ZKPs and TEEs" -ecosystem: [ethereum] +- infrastructure +description: Serverless backends for Web3 - Access and process data verifiably using + ZKPs and TEEs +ecosystem: +- ethereum project_status: live_status: true version: Mainnet @@ -22,16 +24,18 @@ team: technology: type: TEE, ZK features: - - Serverless - - ZK proof marketplace + - Serverless + - ZK proof marketplace blockchain_features: p2p: false + opensource: true traceability: kyc: false sign_in_type_requirments: wallet default_privacy: true storage: decentralized: true - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/mask/index.yaml b/src/projects/mask/index.yaml index 5ee677f5..28e45230 100644 --- a/src/projects/mask/index.yaml +++ b/src/projects/mask/index.yaml @@ -1,17 +1,18 @@ name: Mask categories: - - applications -description: "brings privacy and benefits from Web3 to social media like Facebook & Twitter - with an open-sourced browser extension" +- applications +description: brings privacy and benefits from Web3 to social media like Facebook & + Twitter - with an open-sourced browser extension links: web: https://mask.io github: https://github.com/DimensionDev/Maskbook 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/masq/index.yaml b/src/projects/masq/index.yaml index eaef09e2..83bd96cf 100644 --- a/src/projects/masq/index.yaml +++ b/src/projects/masq/index.yaml @@ -1,23 +1,20 @@ name: MASQ categories: - - infrastructure - - applications - +- infrastructure +- applications logos: - - file: MASQ-token-v2.png - ext: png - url: MASQ-token-v2.png +- file: MASQ-token-v2.png + ext: png + url: MASQ-token-v2.png ecosystem: - - ethereum - - polygon - +- 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" - +description: a web3-native browser, dMeshVPN, dApp Store, protocol, and earning ecosystem + that makes living in Web3 anonymous and private +product_launch_day: '2019-10-20' team: anonymous: true - links: web: https://www.masqbrowser.com/ github: https://github.com/MASQ-Project @@ -29,41 +26,34 @@ links: discord: https://discord.gg/masq youtube: http://www.youtube.com/@MASQNetwork education: https://docs.masq.ai/masq/getting-started/faqs - technology: type: P2P networking name: dMeshVPN features: - - private - - encrypted - - incentivized - + - private + - encrypted + - incentivized blockchain_features: opensource: true p2p: true asset_custody_type: Non-custodial - 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 - third_party_dependency: false social_trust: Team Multisigs & Dune analytics - usecases: - - infrastructure - - vpn - - browser +- infrastructure +- vpn +- browser +have_token: false diff --git a/src/projects/mbuddy/index.yaml b/src/projects/mbuddy/index.yaml index db761d82..802721be 100644 --- a/src/projects/mbuddy/index.yaml +++ b/src/projects/mbuddy/index.yaml @@ -1,18 +1,18 @@ name: MBuddy categories: - - applications +- applications description: Web 3.0+ identity infrastructure -ecosystem: [multichain] +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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/meile/index.yaml b/src/projects/meile/index.yaml index 3e047fb8..7f3d3d1b 100644 --- a/src/projects/meile/index.yaml +++ b/src/projects/meile/index.yaml @@ -1,8 +1,9 @@ name: MEILE categories: - - applications +- applications description: A decentralized VPN Client utilizing the Sentinel Blockchain -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://mathnodes.com/ github: https://github.com/MathNodes @@ -10,13 +11,13 @@ links: twitter: https://x.com/MathNodes team: anonymous: true -have_token: true +have_token: false token_link: https://coinmarketcap.com/currencies/sentinel/ project_status: live_status: true version: v1.8.0 testnet: false mainnet: true - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/mejhool/index.yaml b/src/projects/mejhool/index.yaml index 2177a7a1..8866ea00 100644 --- a/src/projects/mejhool/index.yaml +++ b/src/projects/mejhool/index.yaml @@ -1,24 +1,25 @@ name: Mejhool categories: - - social-and-communications -description: "A decentralized web and mobile app with peer-to-peer text messaging, decentralized file transfer, and voice-over-IP service" +- social-and-communications +description: A decentralized web and mobile app with peer-to-peer text messaging, + decentralized file transfer, and voice-over-IP service team: anonymous: false teammembers: - - name: Dr. Mohamed Al Arab - role: Founder - CEO - - name: Yusuf Haji - role: Founder - - name: Fahad Faqeeh - role: Founder + - 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 +have_token: false tokens: - - symbol: HZM - +- symbol: HZM usecases: - - messaging +- messaging +third_party_dependency: false diff --git a/src/projects/mel/index.yaml b/src/projects/mel/index.yaml index a998a9f8..8684c42c 100644 --- a/src/projects/mel/index.yaml +++ b/src/projects/mel/index.yaml @@ -1,12 +1,15 @@ name: Mel categories: - - infrastructure -description: "A clean-slate L1 for a decentralized, secure, and private internet beyond blockchains - a vibrant ecosystem of full-stack decentralized apps freed from the current on-chain smart contract model, yet still ultimately secured by blockchain consensus" +- 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: anonymous: false teammembers: - - name: Eric Tung - role: Founder CEO & CTO + - name: Eric Tung + role: Founder CEO & CTO links: web: https://melproject.org/en/ github: https://github.com/mel-project @@ -14,7 +17,7 @@ links: forum: https://forum.melproject.org/ yellow-paper: https://docs.themelio.org/specifications/yellow/ Twitter: https://twitter.com/melproject_org -have_token: true - +have_token: false usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/mina/index.yaml b/src/projects/mina/index.yaml index b95a8946..996e47a1 100644 --- a/src/projects/mina/index.yaml +++ b/src/projects/mina/index.yaml @@ -1,7 +1,8 @@ name: Mina categories: - - infrastructure -description: "The world’s lightest blockchain, powered by participants. Using zero knowledge technology" +- infrastructure +description: "The world\u2019s lightest blockchain, powered by participants. Using\ + \ zero knowledge technology" team: anonymous: true links: @@ -10,14 +11,14 @@ links: whitepaper: https://minaprotocol.com/wp-content/uploads/technicalWhitepaper.pdf docs: https://docs.minaprotocol.com/ twitter: https://twitter.com/minaprotocol -have_token: true +have_token: false tokens: - - symbol: MINA +- symbol: MINA project_status: live_status: true version: Mainnet testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/minado/index.yaml b/src/projects/minado/index.yaml index 74e15540..3640da55 100644 --- a/src/projects/minado/index.yaml +++ b/src/projects/minado/index.yaml @@ -1,10 +1,11 @@ name: Minado categories: - - applications +- applications description: Zk Privacy Solution on Mina Protocol. product_readiness: sunset links: web: https://github.com/Nicolascoding27/Zkapp-mina-ui - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/mind-network/index.yaml b/src/projects/mind-network/index.yaml index 0114ba67..ed24363c 100644 --- a/src/projects/mind-network/index.yaml +++ b/src/projects/mind-network/index.yaml @@ -1,8 +1,8 @@ name: Mind Network categories: - - infrastructure -description: "Mind Network is a Fully Homomorphic Encryption (FHE) Layer leading towards to the era of HTTPZ, an end-to-end encryption internet" - +- 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: @@ -10,12 +10,12 @@ links: github: https://github.com/mind-network docs: https://mind-network.gitbook.io/mindnetwork Twitter: https://twitter.com/mindnetwork_xyz -have_token: true +have_token: false project_status: live_status: true version: Testnet testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/mix-btc/index.yaml b/src/projects/mix-btc/index.yaml index ab268dba..c2945ccd 100644 --- a/src/projects/mix-btc/index.yaml +++ b/src/projects/mix-btc/index.yaml @@ -1,6 +1,6 @@ name: Mix BTC categories: - - applications +- applications description: Bitcoin mixer. team: anonymous: true @@ -12,6 +12,7 @@ project_status: version: unkown testnet: false mainnet: false - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/mobilecoin/index.yaml b/src/projects/mobilecoin/index.yaml index 0a8d2041..aa090b38 100644 --- a/src/projects/mobilecoin/index.yaml +++ b/src/projects/mobilecoin/index.yaml @@ -1,17 +1,18 @@ name: MobileCoin categories: - - defi +- defi description: MobileCoin makes global payments inexpensive, secure and fast -ecosystem: [mobilecoin] +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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/monero-pocketnode/index.yaml b/src/projects/monero-pocketnode/index.yaml index 4658ea63..3a54bded 100644 --- a/src/projects/monero-pocketnode/index.yaml +++ b/src/projects/monero-pocketnode/index.yaml @@ -1,10 +1,11 @@ name: Monero PocketNode categories: - - infrastructure +- infrastructure description: A Monero node for your Android Device. links: web: https://github.com/CryptoGrampy/xmr-pocket-node sunset: true - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/monero/index.yaml b/src/projects/monero/index.yaml index 5a2ebcd7..779638c9 100644 --- a/src/projects/monero/index.yaml +++ b/src/projects/monero/index.yaml @@ -1,8 +1,10 @@ name: Monero categories: - - defi -description: "Private, decentralized cryptocurrency that keeps your finances confidential and secure" -ecosystem: [monero] +- defi +description: Private, decentralized cryptocurrency that keeps your finances confidential + and secure +ecosystem: +- monero project_status: live_status: true version: Mainnet @@ -11,13 +13,13 @@ project_status: 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/monerujo/index.yaml b/src/projects/monerujo/index.yaml index e8c64333..9a8ac24b 100644 --- a/src/projects/monerujo/index.yaml +++ b/src/projects/monerujo/index.yaml @@ -1,6 +1,6 @@ name: Monerujo categories: - - applications +- applications description: Android wallet for Moneto links: web: https://www.monerujo.io @@ -15,7 +15,8 @@ project_status: team: anonymous: false teammembers: - - link: https://www.monerujo.io/team.html - + - link: https://www.monerujo.io/team.html usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/motherbored/index.yaml b/src/projects/motherbored/index.yaml index 07162194..74dd7766 100644 --- a/src/projects/motherbored/index.yaml +++ b/src/projects/motherbored/index.yaml @@ -1,13 +1,15 @@ name: Motherbored categories: - - hardware -description: "#dVPN hardware (node + SM card)" -ecosystem: [solana] +- hardware +description: '#dVPN hardware (node + SM card)' +ecosystem: +- solana links: web: https://store.motherbored.limited github: https://github.com/boringprotocol/motherbored team: anonymous: true - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/mullvad-browser/index.yaml b/src/projects/mullvad-browser/index.yaml index a1afb8e9..9c3d22dd 100644 --- a/src/projects/mullvad-browser/index.yaml +++ b/src/projects/mullvad-browser/index.yaml @@ -1,12 +1,14 @@ name: Mullvad Browser categories: - - applications -description: "The Mullvad Browser is a privacy-focused web browser developed in a collaboration between Mullvad VPN and the Tor Project" +- applications +description: The Mullvad Browser is a privacy-focused web browser developed in a collaboration + between Mullvad VPN and the Tor Project links: web: https://mullvad.net/en github: https://github.com/mullvad/mullvad-browser blog: https://mullvad.net/it/blog twitter: https://x.com/mullvadnet - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/mullvad-vpn/index.yaml b/src/projects/mullvad-vpn/index.yaml index 27f47af0..445a910e 100644 --- a/src/projects/mullvad-vpn/index.yaml +++ b/src/projects/mullvad-vpn/index.yaml @@ -1,8 +1,10 @@ name: Mullvad VPN categories: - - applications -description: "One of the most privacy-focused VPN providers (check their Privacy Policy and history)" -ecosystem: [no-chain] +- applications +description: One of the most privacy-focused VPN providers (check their Privacy Policy + and history) +ecosystem: +- no-chain links: web: https://mullvad.net/ github: https://github.com/mullvad @@ -14,9 +16,10 @@ team: link: https://mullvad.net/en/about project_status: live_status: true - version: "2024.3" + version: '2024.3' testnet: false mainnet: false - usecases: - - vpn +- vpn +have_token: false +third_party_dependency: false diff --git a/src/projects/mymonero/index.yaml b/src/projects/mymonero/index.yaml index 5b4e9213..ab75ce29 100644 --- a/src/projects/mymonero/index.yaml +++ b/src/projects/mymonero/index.yaml @@ -1,13 +1,16 @@ name: MyMonero categories: - - applications -description: "The simplest way to use the next-generation private digital currency Monero, at the sweet spot between security, convenience, and features" -ecosystem: [monero] +- applications +description: The simplest way to use the next-generation private digital currency + Monero, at the sweet spot between security, convenience, and features +ecosystem: +- monero links: web: https://mymonero.com/ github: https://github.com/mymonero team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/mynawallet/index.yaml b/src/projects/mynawallet/index.yaml index 62212580..e84a1671 100644 --- a/src/projects/mynawallet/index.yaml +++ b/src/projects/mynawallet/index.yaml @@ -1,8 +1,10 @@ name: MynaWallet categories: - - applications -description: Use your Japanese My Number card as a crypto wallet, via verifying the full passport validity inside ZK and using it to sign a transaction. -ecosystem: [ethereum] +- applications +description: Use your Japanese My Number card as a crypto wallet, via verifying the + full passport validity inside ZK and using it to sign a transaction. +ecosystem: +- ethereum links: web: https://ethglobal.com/showcase/myna-uxzdd github: https://github.com/MynaWallet/monorepo @@ -11,11 +13,12 @@ team: technology: type: ZK features: - - ZK-identity + - ZK-identity project_status: live_status: false testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/mynode/index.yaml b/src/projects/mynode/index.yaml index 6fc82593..6e81eac0 100644 --- a/src/projects/mynode/index.yaml +++ b/src/projects/mynode/index.yaml @@ -1,6 +1,6 @@ name: myNode categories: - - infrastructure +- infrastructure description: The easiest, most powerful way to run a Bitcoin and Lightning node. team: anonymous: true @@ -17,6 +17,6 @@ project_status: mainnet: true have_token: false sunset: false - usecases: - - node +- node +third_party_dependency: false diff --git a/src/projects/mysterium-vpn/index.yaml b/src/projects/mysterium-vpn/index.yaml index a04c016b..93630b76 100644 --- a/src/projects/mysterium-vpn/index.yaml +++ b/src/projects/mysterium-vpn/index.yaml @@ -1,8 +1,9 @@ name: Mysterium VPN categories: - - applications +- applications description: A global, distributed network powered by everyday people. -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://www.mysterium.network/mysteriumvpn github: https://github.com/mysteriumnetwork/node @@ -12,8 +13,8 @@ team: anonymous: false company: link: https://www.mysterium.network/team -have_token: true +have_token: false token_link: https://coinmarketcap.com/currencies/mysterium/ - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/mysterium/index.yaml b/src/projects/mysterium/index.yaml index bd4ac6c6..5856bdbe 100644 --- a/src/projects/mysterium/index.yaml +++ b/src/projects/mysterium/index.yaml @@ -1,25 +1,26 @@ name: Mysterium categories: - - infrastructure -description: An open-source ecosystem of tools and infrastructure to liberate the web +- infrastructure +description: An open-source ecosystem of tools and infrastructure to liberate the + web team: anonymous: false teammembers: - - name: RobertasVis - role: Founder - link: https://www.linkedin.com/in/robertasvis - - name: Waldz - role: Founder & Lead Developer - link: https://www.linkedin.com/in/waldz + - name: RobertasVis + role: Founder + link: https://www.linkedin.com/in/robertasvis + - name: Waldz + role: Founder & Lead Developer + link: https://www.linkedin.com/in/waldz links: web: https://www.mysterium.network github: https://github.com/MysteriumNetwork docs: https://docs.mysterium.network/ blog: https://www.mysterium.network/blog twitter: https://twitter.com/MysteriumNet -have_token: true +have_token: false tokens: - - symbol: MYST - +- symbol: MYST usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/mystiko-network/index.yaml b/src/projects/mystiko-network/index.yaml index a178091d..5d79a535 100644 --- a/src/projects/mystiko-network/index.yaml +++ b/src/projects/mystiko-network/index.yaml @@ -1,6 +1,6 @@ name: Mystiko.Network categories: - - infrastructure +- infrastructure description: The Universal Web3 Zero-Knowledge Connectivity And Privacy Base Layer team: anonymous: true @@ -15,6 +15,7 @@ project_status: version: Mainnet V1 testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/namada/index.yaml b/src/projects/namada/index.yaml index 1211a196..f2089527 100644 --- a/src/projects/namada/index.yaml +++ b/src/projects/namada/index.yaml @@ -1,7 +1,9 @@ name: Namada categories: - - 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. +- 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 links: @@ -15,6 +17,7 @@ project_status: version: Testnet v.034.0 testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/natix-network/index.yaml b/src/projects/natix-network/index.yaml index b732682c..d93ee0c0 100644 --- a/src/projects/natix-network/index.yaml +++ b/src/projects/natix-network/index.yaml @@ -1,7 +1,8 @@ name: NATIX Network categories: - - applications -description: "Patent-pending technology is the easiest way to make any camera smart and 100% privacy compliant" +- applications +description: Patent-pending technology is the easiest way to make any camera smart + and 100% privacy compliant links: web: https://www.natix.network whitepaper: https://docs.natix.network/whitepaper @@ -9,6 +10,7 @@ links: discord: https://discord.com/invite/natixnetwork facebook: https://www.facebook.com/NATIX.Network telegram: https://t.me/NATIXNetwork - usecases: - - data-management +- data-management +have_token: false +third_party_dependency: false diff --git a/src/projects/navcoin/index.yaml b/src/projects/navcoin/index.yaml index 942afb4e..e0dfa83b 100644 --- a/src/projects/navcoin/index.yaml +++ b/src/projects/navcoin/index.yaml @@ -1,8 +1,10 @@ name: Navcoin categories: - - defi -description: "An open-sourced digital currency offering fast and reliable payments with innovative technological and privacy features" -ecosystem: [navcoin] +- defi +description: An open-sourced digital currency offering fast and reliable payments + with innovative technological and privacy features +ecosystem: +- navcoin project_status: live_status: true version: Mainnet @@ -12,7 +14,6 @@ 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 @@ -20,6 +21,7 @@ links: telegram: https://t.me/navcoin team: anonymous: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/nerva/index.yaml b/src/projects/nerva/index.yaml index 2d8e210d..ae35084f 100644 --- a/src/projects/nerva/index.yaml +++ b/src/projects/nerva/index.yaml @@ -1,8 +1,9 @@ name: Nerva categories: - - defi -description: "Private and secure cryptocurrency" -ecosystem: [nerva] +- defi +description: Private and secure cryptocurrency +ecosystem: +- nerva links: web: https://nerva.one/ docs: https://docs.nerva.one/ @@ -17,8 +18,8 @@ team: technology: type: Monero features: - - Bulletproofs - - Ring signatures + - Bulletproofs + - Ring signatures blockchain_features: p2p: true encryption: Cryptonight @@ -29,14 +30,15 @@ blockchain_features: revealed_recipient: false revealed_sender: false revealed_ammount: false + opensource: false default_privacy: true storage: decentralized: true - project_status: live_status: true testnet: false mainnet: true - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/next-id/index.yaml b/src/projects/next-id/index.yaml index bec02058..782a779f 100644 --- a/src/projects/next-id/index.yaml +++ b/src/projects/next-id/index.yaml @@ -1,16 +1,15 @@ name: Next.ID categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/nft-fair/index.yaml b/src/projects/nft-fair/index.yaml index 13c1221d..67330209 100644 --- a/src/projects/nft-fair/index.yaml +++ b/src/projects/nft-fair/index.yaml @@ -1,10 +1,11 @@ name: NFT Fair categories: - - applications +- applications description: The do-good NFT launch platform. links: web: https://www.nftfair.app sunset: true - usecases: - - nft-community +- nft-community +have_token: false +third_party_dependency: false diff --git a/src/projects/nicenode/index.yaml b/src/projects/nicenode/index.yaml index 98907808..fb735e7c 100644 --- a/src/projects/nicenode/index.yaml +++ b/src/projects/nicenode/index.yaml @@ -1,7 +1,8 @@ name: NiceNode categories: - - infrastructure -description: "Launcher with a simple user experience to run an Ethereum node on your computer" +- infrastructure +description: Launcher with a simple user experience to run an Ethereum node on your + computer team: anonymous: true links: @@ -13,6 +14,7 @@ project_status: version: v6.0.5.-alpha testnet: false mainnet: true - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/nighthawk-wallet/index.yaml b/src/projects/nighthawk-wallet/index.yaml index 32c63820..4ad7efb0 100644 --- a/src/projects/nighthawk-wallet/index.yaml +++ b/src/projects/nighthawk-wallet/index.yaml @@ -1,8 +1,9 @@ name: Nighthawk Wallet categories: - - applications +- applications description: Private Money in your pocket. -ecosystem: [zcash] +ecosystem: +- zcash links: web: https://nighthawkwallet.com/ github: https://github.com/nighthawk-apps @@ -14,6 +15,7 @@ project_status: version: v2.2.14 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/nil-foundation/index.yaml b/src/projects/nil-foundation/index.yaml index 254af38c..8b8ff3cd 100644 --- a/src/projects/nil-foundation/index.yaml +++ b/src/projects/nil-foundation/index.yaml @@ -1,7 +1,8 @@ -name: "=nil; Foundation" +name: =nil; Foundation categories: - - infrastructure -description: "Foundation intends to create a tightly integrated set of technologies becoming a basis for secure data storages operating in insecure environments" +- infrastructure +description: Foundation intends to create a tightly integrated set of technologies + becoming a basis for secure data storages operating in insecure environments links: web: https://nil.foundation github: https://github.com/nilfoundation @@ -10,6 +11,7 @@ links: twitter: https://x.com/nil_foundation discord: https://discord.com/invite/KmTAEjbmM3 telegram: https://t.me/nilfoundation - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/nillion/index.yaml b/src/projects/nillion/index.yaml index b75d33b5..0bc73640 100644 --- a/src/projects/nillion/index.yaml +++ b/src/projects/nillion/index.yaml @@ -1,8 +1,9 @@ name: Nillion categories: - - infrastructure -description: "The Secure Processing Layer of Web3" -ecosystem: [multichain] +- infrastructure +description: The Secure Processing Layer of Web3 +ecosystem: +- multichain links: web: https://www.nillion.com github: https://github.com/NillionNetwork @@ -14,6 +15,7 @@ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280922042%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=*cU - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/nix-bitcoin/index.yaml b/src/projects/nix-bitcoin/index.yaml index bd164863..afb49ec5 100644 --- a/src/projects/nix-bitcoin/index.yaml +++ b/src/projects/nix-bitcoin/index.yaml @@ -1,7 +1,8 @@ name: nix-bitcoin categories: - - applications -description: "A collection of Nix packages and NixOS modules for easily installing full-featured Bitcoin nodes with an emphasis on security" +- applications +description: A collection of Nix packages and NixOS modules for easily installing + full-featured Bitcoin nodes with an emphasis on security links: web: https://nixbitcoin.org github: https://github.com/fort-nix/nix-bitcoin @@ -11,6 +12,7 @@ project_status: version: 0.0.108 testnet: false mainnet: true - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/njalla/index.yaml b/src/projects/njalla/index.yaml index eaf08d65..a318e7e1 100644 --- a/src/projects/njalla/index.yaml +++ b/src/projects/njalla/index.yaml @@ -1,12 +1,14 @@ name: Njalla categories: - - infrastructure -description: "Anonymous domain name registrar and VPS provider based in Sweden, accepts various cryptocurrencies as payment (BTC, Litecoin, Monero, Zcash, Ethereum)" +- 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/ - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/no-trust-verify/index.yaml b/src/projects/no-trust-verify/index.yaml index abfd5efa..f6e9603c 100644 --- a/src/projects/no-trust-verify/index.yaml +++ b/src/projects/no-trust-verify/index.yaml @@ -1,22 +1,23 @@ name: No Trust Verify categories: - - infrastructure +- infrastructure 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 + - 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 - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/nocturne/index.yaml b/src/projects/nocturne/index.yaml index 595cb57e..adc57e38 100644 --- a/src/projects/nocturne/index.yaml +++ b/src/projects/nocturne/index.yaml @@ -1,15 +1,15 @@ name: Nocturne categories: - - applications +- applications description: A protocol enabling usable on-chain privacy links: web: https://nocturnelabs.xyz github: https://nocturne-xyz.gitbook.io/nocturne/introduction/one-pager docs: https://nocturne-xyz.gitbook.io/nocturne - blog: https://mirror.xyz/nocturnelabs.eth twitter: https://x.com/nocturne_xyz discord: https://discord.com/invite/MxZYtzzFmJ - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/nodl-dojo/index.yaml b/src/projects/nodl-dojo/index.yaml index 1e473872..ab4c18aa 100644 --- a/src/projects/nodl-dojo/index.yaml +++ b/src/projects/nodl-dojo/index.yaml @@ -1,7 +1,8 @@ name: nodl Dojo categories: - - infrastructure -description: "A collaboration between nodl and the Samourai Wallet team. The nodl Dojo is a full Bitcoin and Lightning Network node" +- infrastructure +description: A collaboration between nodl and the Samourai Wallet team. The nodl Dojo + is a full Bitcoin and Lightning Network node links: web: https://www.nodl.eu/ docs: https://docs.nodl.it/ @@ -10,6 +11,7 @@ project_status: live_status: true testnet: false mainnet: true - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/nodl-one/index.yaml b/src/projects/nodl-one/index.yaml index 6c0e71f9..b82c32dd 100644 --- a/src/projects/nodl-one/index.yaml +++ b/src/projects/nodl-one/index.yaml @@ -1,9 +1,10 @@ name: nodl One categories: - - infrastructure +- infrastructure description: A full Bitcoin and Lightning Network node. links: web: https://www.nodl.eu/products/nodl-one/ - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/nomos/index.yaml b/src/projects/nomos/index.yaml index 7622861a..4158d91b 100644 --- a/src/projects/nomos/index.yaml +++ b/src/projects/nomos/index.yaml @@ -1,7 +1,8 @@ name: Nomos categories: - - infrastructure -description: "Nomos is a novel blockchain project that will address a network states fundamental need for adaptable privacy and sovereignty" +- 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: @@ -9,12 +10,12 @@ links: github: https://github.com/logos-co/nomos-node blog: https://blog.nomos.tech/ twitter: https://twitter.com/Nomos_tech -have_token: true +have_token: false project_status: live_status: false - version: "" + version: '' testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/nonkyc/index.yaml b/src/projects/nonkyc/index.yaml index 4826b964..e4b500ef 100644 --- a/src/projects/nonkyc/index.yaml +++ b/src/projects/nonkyc/index.yaml @@ -1,5 +1,7 @@ name: NonKYC -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/notebook-labs/index.yaml b/src/projects/notebook-labs/index.yaml index 00c634a4..4db7a889 100644 --- a/src/projects/notebook-labs/index.yaml +++ b/src/projects/notebook-labs/index.yaml @@ -1,7 +1,9 @@ name: Notebook labs categories: - - applications -description: "Built Zephyr - the first non-custodial onramp to decentralize the gates of crypto. Zephyr leverages Zero Knowledge proofs to ensure that on and off-rampers never need to rely on centralized institutions" +- applications +description: Built Zephyr - the first non-custodial onramp to decentralize the gates + of crypto. Zephyr leverages Zero Knowledge proofs to ensure that on and off-rampers + never need to rely on centralized institutions team: anonymous: true links: @@ -9,6 +11,7 @@ links: docs: https://notebook-6.gitbook.io/notebook-docs/guides/for-authentication blog: https://medium.com/@notebook_labs twitter: https://twitter.com/ZephyrExchange - usecases: - - kyc-solution +- kyc-solution +have_token: false +third_party_dependency: false diff --git a/src/projects/nucypher/index.yaml b/src/projects/nucypher/index.yaml index fdd04d37..62c6fbca 100644 --- a/src/projects/nucypher/index.yaml +++ b/src/projects/nucypher/index.yaml @@ -1,7 +1,11 @@ name: Threshold categories: - - infrastructure -description: "uses cryptography to unlock greater utility and usability for digital assets without needing to trust a centralized party. Threshold cryptography distributes sensitive operations across multiple independent entities – like nodes in a network – and requires a threshold, or minimum number of those entities to cooperate for the operation to be successful" +- 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 \u2013 like nodes in\ + \ a network \u2013 and requires a threshold, or minimum number of those entities\ + \ to cooperate for the operation to be successful" team: anonymous: true links: @@ -9,27 +13,28 @@ links: github: https://github.com/threshold-network docs: https://docs.threshold.network/ blog: https://blog.threshold.network/ -have_token: true +have_token: false tokens: - - symbol: T +- 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 - +- 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 usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/nulink/index.yaml b/src/projects/nulink/index.yaml index 6c8934b4..248cf06f 100644 --- a/src/projects/nulink/index.yaml +++ b/src/projects/nulink/index.yaml @@ -1,6 +1,6 @@ name: Nulink categories: - - infrastructure +- infrastructure description: ZK Provable Data Privacy Solution for Decentralized Applications team: anonymous: true @@ -11,14 +11,14 @@ links: whitepaper: https://www.nulink.org/whitepaper-2-0 blog: https://www.nulink.org/blog twitter: https://twitter.com/NuLink_ -have_token: true +have_token: false tokens: - - symbol: NLINK +- symbol: NLINK project_status: live_status: true version: Testnet Horus2.0 testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/nym/index.yaml b/src/projects/nym/index.yaml index c52a88da..0fa2fda4 100644 --- a/src/projects/nym/index.yaml +++ b/src/projects/nym/index.yaml @@ -1,34 +1,35 @@ name: NYM categories: - - infrastructure -description: Nym protects communication patterns, IP addresses and metadata for end-users, enterprise and infrastructure operators +- infrastructure +description: Nym protects communication patterns, IP addresses and metadata for end-users, + enterprise and infrastructure operators team: anonymous: false teammembers: - - name: Harry Halpin - role: CEO and Chairman of Scientific Board - - name: Mark Sinclair - role: Chief Technology Officer - - name: Claudia Diaz - role: Chief Scientist - - name: Alexis Roussel - role: Chief Operating Officer - - name: Jaya Klara Brekke - role: Chief Strategy Officer + - 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 +have_token: false tokens: - - symbol: NYM +- symbol: NYM project_status: live_status: true version: Mainnet testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/oasiis-insights/index.yaml b/src/projects/oasiis-insights/index.yaml index 08503aca..d1284c50 100644 --- a/src/projects/oasiis-insights/index.yaml +++ b/src/projects/oasiis-insights/index.yaml @@ -1,9 +1,10 @@ name: Oasiis insights categories: - - applications +- applications description: Personalized web3 journeys are finally here. links: web: https://www.oasiisinsights.com - usecases: - - data-management +- data-management +have_token: false +third_party_dependency: false diff --git a/src/projects/oasis-network/index.yaml b/src/projects/oasis-network/index.yaml index 762e2508..4495e115 100644 --- a/src/projects/oasis-network/index.yaml +++ b/src/projects/oasis-network/index.yaml @@ -1,14 +1,12 @@ name: Oasis Network categories: - - infrastructure - +- 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" - +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 @@ -24,40 +22,38 @@ links: 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 +have_token: false tokens: - - symbol: ROSE - - name: Wrapped ROSE - symbol: wROSE - network: BSC - contract_address: "0xF00600eBC7633462BC4F9C61eA2cE99F5AAEBd4a" - - name: Wrapped ROSE (Wormhole) - symbol: wROSE - network: Ethereum - contract_address: "0x26B80FBfC01b71495f477d5237071242e0d959d7" - +- 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 - +- 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 + - Data Privacy + - Tokenized Data + - Confidential compute blockchain_features: encryption: TEE - + p2p: true + opensource: true usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/obscuro/index.yaml b/src/projects/obscuro/index.yaml index c00d2354..d5c768f9 100644 --- a/src/projects/obscuro/index.yaml +++ b/src/projects/obscuro/index.yaml @@ -1,25 +1,23 @@ name: TEN (formerly Obscuro) categories: - - infrastructure -description: "a layer 2 solution for Ethereum that brings privacy and scale" -ecosystem: [ethereum] - +- infrastructure +description: a layer 2 solution for Ethereum that brings privacy and scale +ecosystem: +- ethereum team: anonymous: false - links: web: https://ten.xyz/ whitepaper: https://whitepaper.ten.xyz/ - twitter: https://x.com/tenprotocol discord: https://discord.com/invite/tenprotocol telegram: https://t.me/tenprotocol - project_status: live_status: true version: Testnet testnet: true mainnet: false - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/octra/index.yaml b/src/projects/octra/index.yaml index bcb6b4c4..57c4c426 100644 --- a/src/projects/octra/index.yaml +++ b/src/projects/octra/index.yaml @@ -1,7 +1,8 @@ id: octra -name: "Octra" -categories: [infrastructure] -description: "general purpose FHE network enabling economies of the future" +name: Octra +categories: +- infrastructure +description: general purpose FHE network enabling economies of the future links: web: https://octra.org/ github: https://github.com/Octra-Labs @@ -9,3 +10,5 @@ links: twitter: https://x.com/octra discord: https://discord.com/invite/m724x5Ne2F telegram: https://t.me/octranetwork +have_token: false +third_party_dependency: false diff --git a/src/projects/offshift/index.yaml b/src/projects/offshift/index.yaml index b2083290..f79d6ba8 100644 --- a/src/projects/offshift/index.yaml +++ b/src/projects/offshift/index.yaml @@ -1,17 +1,23 @@ name: Offshift -categories: [defi] -ecosystem: [ethereum] -description: "Offshift’s proprietary Shifting mechanism allows users to Shift between our native token, XFT, and a full palette of private synthetics" +categories: +- defi +ecosystem: +- ethereum +description: "Offshift\u2019s 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 + mainnet: true + testnet: false team: anonymous: true company: link: https://offshift.io/#team - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/oksign/index.yaml b/src/projects/oksign/index.yaml index 0702c6b8..8d3d53f1 100644 --- a/src/projects/oksign/index.yaml +++ b/src/projects/oksign/index.yaml @@ -1,10 +1,12 @@ name: okSign categories: - - applications -description: Create, Sign, and Save eSignatures with smart contracts and permissioned NFTs. +- applications +description: Create, Sign, and Save eSignatures with smart contracts and permissioned + NFTs. links: web: https://www.oksign.app twitter: https://x.com/okSign_ - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/ola/index.yaml b/src/projects/ola/index.yaml index c3057c7b..9339f826 100644 --- a/src/projects/ola/index.yaml +++ b/src/projects/ola/index.yaml @@ -1,6 +1,6 @@ name: OLA categories: - - infrastructure +- infrastructure description: ZK-ZKVM Bringing Programmable Privacy to Blockchains team: anonymous: false @@ -18,6 +18,7 @@ project_status: version: Testnet testnet: true mainnet: false - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/omnia/index.yaml b/src/projects/omnia/index.yaml index c9e86ba6..d466e2da 100644 --- a/src/projects/omnia/index.yaml +++ b/src/projects/omnia/index.yaml @@ -1,31 +1,33 @@ name: Omnia categories: - - infrastructure -description: Omnia is a specialized RPC provider for DeFi traders, developed by cybersecurity, privacy and trading experts. They address DeFi-specific challenges like front-running and MEV exploitation. +- 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: anonymous: false teammembers: - - name: Cristian Lupascu - role: CEO & Co-Founder - - name: Alexandru Lupascu - role: CTO & Co-Founder + - 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 +have_token: false tokens: - - symbol: OMNIA +- 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 - +- name: Smart Contract Code Review and Security Analysis Report + link: https://wp.hacken.io/wp-content/uploads/2021/11/OmniaProtocol_15112021SCAudit_Report.pdf + time: November, 2021 usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/onino/index.yaml b/src/projects/onino/index.yaml index 51e228ea..9d82a8cf 100644 --- a/src/projects/onino/index.yaml +++ b/src/projects/onino/index.yaml @@ -1,12 +1,12 @@ name: Onino categories: - - infrastructure +- infrastructure description: A Public Blockchain Delivering Privacy, On-Chain Identity, and Scalability links: web: https://www.onino.io -have_token: true +have_token: false tokens: - - symbol: ONI - +- symbol: ONI usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/onion-mixer/index.yaml b/src/projects/onion-mixer/index.yaml index 7dbe2919..c1d20616 100644 --- a/src/projects/onion-mixer/index.yaml +++ b/src/projects/onion-mixer/index.yaml @@ -1,10 +1,12 @@ name: Onion Mixer categories: - - applications -description: "Onion Mixer is the first decentralized protocol for anonymous cross-chain transactions" +- applications +description: Onion Mixer is the first decentralized protocol for anonymous cross-chain + transactions links: web: https://onionmixer.gitbook.io/onion-mixer/ sunset: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/onionclub/index.yaml b/src/projects/onionclub/index.yaml index 0e263640..2ed7f4f9 100644 --- a/src/projects/onionclub/index.yaml +++ b/src/projects/onionclub/index.yaml @@ -1,9 +1,10 @@ name: Onionclub categories: - - applications +- applications description: Blockchain-based, business & social platform. links: web: https://onionclub.io - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/ont-id/index.yaml b/src/projects/ont-id/index.yaml index a7e25150..c1573121 100644 --- a/src/projects/ont-id/index.yaml +++ b/src/projects/ont-id/index.yaml @@ -1,18 +1,17 @@ name: ONT ID categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/oort/index.yaml b/src/projects/oort/index.yaml index 1e21862b..8be52e53 100644 --- a/src/projects/oort/index.yaml +++ b/src/projects/oort/index.yaml @@ -1,7 +1,8 @@ name: Oort categories: - - applications -description: "A decentralized data cloud platform designed to maximize privacy and cost savings by integrating global compute and storage resources" +- applications +description: A decentralized data cloud platform designed to maximize privacy and + cost savings by integrating global compute and storage resources team: anonymous: true links: @@ -18,6 +19,7 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/opera-crypto-browser/index.yaml b/src/projects/opera-crypto-browser/index.yaml index 648f019e..5351cecf 100644 --- a/src/projects/opera-crypto-browser/index.yaml +++ b/src/projects/opera-crypto-browser/index.yaml @@ -1,13 +1,16 @@ name: Opera Crypto Browser categories: - - applications -description: "Experience the Web3 browser for crypto users. Get crypto-oriented security enhancements, manage multiple crypto wallets simultaneously, and access Discord, Telegram and more directly from the sidebar" +- applications +description: Experience the Web3 browser for crypto users. Get crypto-oriented security + enhancements, manage multiple crypto wallets simultaneously, and access Discord, + Telegram and more directly from the sidebar links: web: https://www.opera.com/crypto/next forum: https://forums.opera.com/ blog: https://blogs.opera.com/news/ twitter: https://twitter.com/opera facebook: https://www.facebook.com/Opera/ - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/orbis/index.yaml b/src/projects/orbis/index.yaml index 6dc7c379..9c0ee446 100644 --- a/src/projects/orbis/index.yaml +++ b/src/projects/orbis/index.yaml @@ -1,13 +1,13 @@ name: Orbis categories: - - infrastructure +- 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 +have_token: false tokens: - - symbol: OBT - +- symbol: OBT usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/orchid/index.yaml b/src/projects/orchid/index.yaml index 11c9409d..b26c19ce 100644 --- a/src/projects/orchid/index.yaml +++ b/src/projects/orchid/index.yaml @@ -1,8 +1,10 @@ name: Orchid categories: - - applications -description: "Orchid is a platform that enables an onion routing network incentivized by OXT and a multi-hop VPN client" -ecosystem: [multichain] +- applications +description: Orchid is a platform that enables an onion routing network incentivized + by OXT and a multi-hop VPN client +ecosystem: +- multichain links: web: https://www.orchid.com github: https://github.com/OrchidTechnologies @@ -16,8 +18,8 @@ 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 +have_token: false token_link: https://coinmarketcap.com/currencies/orchid/ - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/outdid/index.yaml b/src/projects/outdid/index.yaml index 22dcab67..d4545be2 100644 --- a/src/projects/outdid/index.yaml +++ b/src/projects/outdid/index.yaml @@ -1,13 +1,13 @@ name: OutDID categories: - - applications +- applications description: Your Zero-Knowledge, Decentralized KYC filter of Blockchain users. links: web: https://www.outdid.io - blog: https://medium.com/@getoutdid twitter: https://x.com/getoutdid telegram: https://t.me/outdid_io - usecases: - - kyc-solution +- kyc-solution +have_token: false +third_party_dependency: false diff --git a/src/projects/oxen/index.yaml b/src/projects/oxen/index.yaml index b14085ad..7741d030 100644 --- a/src/projects/oxen/index.yaml +++ b/src/projects/oxen/index.yaml @@ -1,8 +1,9 @@ name: Oxen categories: - - defi +- defi description: A cryptocurrency powering a new class of interconnected privacy apps -ecosystem: [oxen] +ecosystem: +- oxen project_status: live_status: true version: Mainnet @@ -13,12 +14,12 @@ links: 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/p0tion/index.yaml b/src/projects/p0tion/index.yaml index d6c43fc9..2f4ddc77 100644 --- a/src/projects/p0tion/index.yaml +++ b/src/projects/p0tion/index.yaml @@ -1,12 +1,17 @@ name: p0tion -categories: [infrastructure] -description: "Toolkit for Groth16 Phase 2 Trusted Setup ceremonies." +categories: +- infrastructure +description: Toolkit for Groth16 Phase 2 Trusted Setup ceremonies. project_status: live_status: true + mainnet: false + testnet: false team: anonymous: true links: web: https://ceremony.pse.dev/ github: https://github.com/privacy-scaling-explorations/p0tion - -usecases: [infrastructure] +usecases: +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/p0x-labs/index.yaml b/src/projects/p0x-labs/index.yaml index dd287cd4..d15539f4 100644 --- a/src/projects/p0x-labs/index.yaml +++ b/src/projects/p0x-labs/index.yaml @@ -1,11 +1,12 @@ name: P0X labs categories: - - infrastructure +- infrastructure description: The decentralized laboratory for building cutting-edge privacy technologies. links: web: https://p0xeidon.xyz twitter: https://x.com/p0xlabs sunset: true - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/panther-protocl/index.yaml b/src/projects/panther-protocl/index.yaml index 4c1a2f5b..40ed6c3a 100644 --- a/src/projects/panther-protocl/index.yaml +++ b/src/projects/panther-protocl/index.yaml @@ -1,11 +1,19 @@ name: Panther Protocol -categories: [defi] -ecosystem: [ethereum, elrond, polkadot, avalanche, near, flare] -description: "is a decentralized privacy metaprotocol enabling confidential, trusted transactions and interoperability with DeFi" +categories: +- 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 + - transactions links: web: https://www.pantherprotocol.io/ github: https://github.com/pantherprotocol @@ -18,6 +26,7 @@ team: anonymous: false company: link: https://www.pantherprotocol.io/ - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/parallelchain/index.yaml b/src/projects/parallelchain/index.yaml index 8b7cff07..85c90bae 100644 --- a/src/projects/parallelchain/index.yaml +++ b/src/projects/parallelchain/index.yaml @@ -1,7 +1,8 @@ name: ParallelChain categories: - - infrastructure -description: "A public + private layer-1 blockchain protocol building an accountable, fair and solid backbone infrastructure for the digital economy" +- 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: @@ -10,19 +11,19 @@ links: papers: https://legacy.parallelchain.io/learn/papers docs: https://docs.parallelchain.io/ twitter: https://twitter.com/ParallelChainLB -have_token: true +have_token: false 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 - +- 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 usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/parami/index.yaml b/src/projects/parami/index.yaml index 8adcee3b..c4742ab6 100644 --- a/src/projects/parami/index.yaml +++ b/src/projects/parami/index.yaml @@ -1,7 +1,9 @@ name: Parami categories: - - infrastructure -description: "Para metaverse identity. As the next generation identity protocol based on the W3C decentralized identity standard, it is designed for metaverse and Web 3 users with self-sovereign and permissionless service" +- 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 @@ -9,6 +11,7 @@ project_status: mainnet: false links: web: https://parami.io - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/paras/index.yaml b/src/projects/paras/index.yaml index ebec5734..f878963e 100644 --- a/src/projects/paras/index.yaml +++ b/src/projects/paras/index.yaml @@ -1,18 +1,18 @@ name: Paras categories: - - applications -description: "A blockchain-agnostic protocol that offers privacy to NFTs" +- applications +description: A blockchain-agnostic protocol that offers privacy to NFTs links: web: https://paras.id/ whitepaper: https://eprint.iacr.org/2022/976.pdf twitter: https://x.com/ParasHQ telegram: https://t.me/parasannouncement -have_token: true +have_token: false tokens: - - name: ParasToken - symbol: PARAS - network: Near +- name: ParasToken + symbol: PARAS + network: Near sunset: false - usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/particl/index.yaml b/src/projects/particl/index.yaml index 513c1a1b..0765156b 100644 --- a/src/projects/particl/index.yaml +++ b/src/projects/particl/index.yaml @@ -1,17 +1,17 @@ id: particl name: Particl -categories: [applications] -ecosystem: [particl] -description: "The only marketplace for private and unrestricted e-commerce" - +categories: +- applications +ecosystem: +- particl +description: The only marketplace for private and unrestricted e-commerce team: anonymous: false teammembers: - - name: Gerlof van Ek - link: https://x.com/gerlof - - name: Henk Swardt - link: https://www.linkedin.com/in/hswardt/ - + - 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 @@ -22,29 +22,24 @@ links: twitter: https://x.com/particlproject telegram: https://t.me/particltg discord: https://discord.me/particl - sunset: false - tokens: - - name: Particl Part - symbol: Part - network: Particl Blockchain - token_link: https://explorer.particl.io/ - +- name: Particl Part + symbol: Part + network: Particl Blockchain + token_link: https://explorer.particl.io/ blockchain_features: opensource: true asset_custody_type: non-custody - + p2p: 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 - usecases: - - currency +- currency +have_token: false diff --git a/src/projects/partisia-blockchain/index.yaml b/src/projects/partisia-blockchain/index.yaml index 6077ac7c..7ae00710 100644 --- a/src/projects/partisia-blockchain/index.yaml +++ b/src/projects/partisia-blockchain/index.yaml @@ -1,15 +1,16 @@ name: Partisia Blockchain categories: - - infrastructure -description: Partisia Blockchain is built for trust, transparency, privacy and speed of light finalization. +- infrastructure +description: Partisia Blockchain is built for trust, transparency, privacy and speed + of light finalization. team: anonymous: false teammembers: - - name: Kurt Nielsen - role: Co-Founder & President - - name: Peter F. Frandsen - role: Co-Founder & CTO - - name: Brian Gallagher + - 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 @@ -17,14 +18,14 @@ links: whitepaper: https://partisiablockchain.com/develop/documentation/ yellowpaper: https://drive.google.com/file/d/1OX7ljrLY4IgEA1O3t3fKNH1qSO60_Qbw/view twitter: https://x.com/partisiampc -have_token: true +have_token: false tokens: - - symbol: MPC +- symbol: MPC project_status: live_status: true version: Gamma Mainnet Vers 4.0 testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/pastenym/index.yaml b/src/projects/pastenym/index.yaml index 22e06f82..57ee9081 100644 --- a/src/projects/pastenym/index.yaml +++ b/src/projects/pastenym/index.yaml @@ -1,10 +1,11 @@ name: Pastenym categories: - - applications +- applications description: Anon text sharing service links: web: https://pastenym.ch/#/ github: https://github.com/notrustverify/pastenym/ - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/penumbra/index.yaml b/src/projects/penumbra/index.yaml index 85592da6..e7b5dd6b 100644 --- a/src/projects/penumbra/index.yaml +++ b/src/projects/penumbra/index.yaml @@ -1,7 +1,9 @@ name: Penumbra categories: - - infrastructure -description: "A shielded, cross-chain network allowing anyone to securely transact, stake, swap, or marketmake without broadcasting their personal information to the world" +- 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: @@ -15,6 +17,7 @@ project_status: version: Penumbra Summoning Testnet testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/personae-labs/index.yaml b/src/projects/personae-labs/index.yaml index 14ab67bc..a710bb47 100644 --- a/src/projects/personae-labs/index.yaml +++ b/src/projects/personae-labs/index.yaml @@ -1,12 +1,13 @@ name: Personae Labs categories: - - infrastructure +- infrastructure description: R&D lab investigating the future of human expression online. links: web: https://personaelabs.xyz/ github: https://github.com/personaelabs twitter: https://x.com/personae_labs discord: https://discord.com/invite/ZVWhZrbkRV - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/phala-network/index.yaml b/src/projects/phala-network/index.yaml index 1080740c..b41e06d4 100644 --- a/src/projects/phala-network/index.yaml +++ b/src/projects/phala-network/index.yaml @@ -1,8 +1,9 @@ name: Phala Network categories: - - infrastructure +- infrastructure description: Privacy-Enhanced Permissionless Computing Protocol. -ecosystem: [kusama] +ecosystem: +- kusama links: web: https://www.phala.network/en/ github: https://github.com/Phala-Network @@ -18,6 +19,7 @@ team: anonymous: false company: link: https://www.phala.network/en/aboutUs/ - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/phoenix-network/index.yaml b/src/projects/phoenix-network/index.yaml index 5dd8839c..ce157363 100644 --- a/src/projects/phoenix-network/index.yaml +++ b/src/projects/phoenix-network/index.yaml @@ -1,6 +1,6 @@ name: Phoenix categories: - - infrastructure +- infrastructure description: blockchain infrastructure empowering intelligence web3 applications. links: web: https://phoenix.global @@ -8,7 +8,8 @@ links: twitter: https://x.com/Phoenix_Chain telegram: https://t.me/APEXcommunity blog: https://phoenixglobal.medium.com/ -ecosystem: [multichain] +ecosystem: +- multichain project_status: live_status: true version: testnet @@ -16,6 +17,7 @@ project_status: mainnet: false team: anonymous: true - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/phoenix/index.yaml b/src/projects/phoenix/index.yaml index 37ab1cde..83d71367 100644 --- a/src/projects/phoenix/index.yaml +++ b/src/projects/phoenix/index.yaml @@ -1,6 +1,6 @@ name: Phoenix categories: - - applications +- applications description: Non-custodial wallet on Lightning network links: web: https://phoenix.acinq.co @@ -14,6 +14,7 @@ project_status: mainnet: false team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/pigeon-communicator/index.yaml b/src/projects/pigeon-communicator/index.yaml index 7179a8ce..1fa03a5d 100644 --- a/src/projects/pigeon-communicator/index.yaml +++ b/src/projects/pigeon-communicator/index.yaml @@ -1,7 +1,7 @@ name: Pigeon Communicator categories: - - social-and-communications -description: "Blockchain-based, trustless, censorship-resistant decentralized messaging" +- social-and-communications +description: Blockchain-based, trustless, censorship-resistant decentralized messaging team: anonymous: true links: @@ -11,14 +11,14 @@ links: discord: https://discord.com/invite/SZcf63h facebook: https://www.facebook.com/groups/1022013661300591 telegram: https://t.me/Pigeoncoin -have_token: true +have_token: false tokens: - - symbol: PGN +- symbol: PGN project_status: live_status: true version: Testnet testnet: true mainnet: false - usecases: - - messaging +- messaging +third_party_dependency: false diff --git a/src/projects/pirate-chain/index.yaml b/src/projects/pirate-chain/index.yaml index 51592168..ddc9bcff 100644 --- a/src/projects/pirate-chain/index.yaml +++ b/src/projects/pirate-chain/index.yaml @@ -1,21 +1,21 @@ name: Pirate Chain categories: - - defi -description: "Anonymous cryptocurrency, a truly private, decentralized blockchain" -ecosystem: [pirate] +- defi +description: Anonymous cryptocurrency, a truly private, decentralized blockchain +ecosystem: +- pirate links: web: https://pirate.black github: https://github.com/PirateNetwork 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/pivx/index.yaml b/src/projects/pivx/index.yaml index 48cc32cf..4ac79106 100644 --- a/src/projects/pivx/index.yaml +++ b/src/projects/pivx/index.yaml @@ -1,15 +1,16 @@ name: PivX categories: - - defi -description: "Experience the freedom of global digital cash with SHIELD User Data Protection. Be your own bank with full control of your digital assets" -ecosystem: [pivx] +- defi +description: Experience the freedom of global digital cash with SHIELD User Data Protection. + Be your own bank with full control of your digital assets +ecosystem: +- pivx links: web: https://pivx.org github: https://github.com/PIVX-Project/PIVX/ 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 @@ -17,6 +18,7 @@ links: telegram: https://t.me/pivxchat team: anonymous: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/platon-network/index.yaml b/src/projects/platon-network/index.yaml index 0e12ee8d..4ae5b43d 100644 --- a/src/projects/platon-network/index.yaml +++ b/src/projects/platon-network/index.yaml @@ -1,8 +1,11 @@ name: PlatOn Network categories: - - infrastructure -description: "Combining blockchain and privacy-preserving computation technologies, PlatON is building a decentralized and collaborative AI network and global brain to drive the democratization of AI for safe artificial general intelligence" -ecosystem: [alaya] +- infrastructure +description: Combining blockchain and privacy-preserving computation technologies, + PlatON is building a decentralized and collaborative AI network and global brain + to drive the democratization of AI for safe artificial general intelligence +ecosystem: +- alaya links: web: https://www.platon.network/en github: https://github.com/PlatONnetwork @@ -18,6 +21,7 @@ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2214399632%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=PCz - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/plebble/index.yaml b/src/projects/plebble/index.yaml index 852e6b20..662def9e 100644 --- a/src/projects/plebble/index.yaml +++ b/src/projects/plebble/index.yaml @@ -1,8 +1,9 @@ name: Plebble categories: - - infrastructure +- infrastructure description: P2P Network of computers running the Plebble software (L1 & L2) -ecosystem: [tbd] +ecosystem: +- tbd links: web: https://plebble.net github: https://github.com/root1m3/plebble @@ -15,6 +16,7 @@ project_status: version: plebble-alpha-55.1_10-392024 2023-08-04_23-42-16 testnet: true mainnet: false - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/plugin-io/index.yaml b/src/projects/plugin-io/index.yaml index 04f1a72a..82ce3478 100644 --- a/src/projects/plugin-io/index.yaml +++ b/src/projects/plugin-io/index.yaml @@ -1,13 +1,13 @@ name: Plugin.io categories: - - applications +- applications 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/ - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/pollen-mobile/index.yaml b/src/projects/pollen-mobile/index.yaml index 4af6217a..14683c10 100644 --- a/src/projects/pollen-mobile/index.yaml +++ b/src/projects/pollen-mobile/index.yaml @@ -1,13 +1,14 @@ name: Pollen Mobile categories: - - infrastructure -description: 'The worlds first decentralized, user-owned and operated mobile network. "Your information is yours and yours alone' +- 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 +have_token: false tokens: - - symbol: PCN - +- symbol: PCN usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/polybase/index.yaml b/src/projects/polybase/index.yaml index 8a911ebd..5f259786 100644 --- a/src/projects/polybase/index.yaml +++ b/src/projects/polybase/index.yaml @@ -1,14 +1,15 @@ name: Polybase categories: - - infrastructure -description: "a public L2 blockchain with private transactions and MEV-resistance powered by zero-knowledge proofs" +- infrastructure +description: a public L2 blockchain with private transactions and MEV-resistance powered + by zero-knowledge proofs team: anonymous: false teammembers: - - name: Sid Gandhi - role: Co-Founder & CEO - - name: Calum Moore - role: Co-Founder & CTO + - name: Sid Gandhi + role: Co-Founder & CEO + - name: Calum Moore + role: Co-Founder & CTO links: web: https://polybase.xyz docs: https://payy.network/docs @@ -19,6 +20,7 @@ project_status: version: Testnet (App Payy - beta/testing) testnet: false mainnet: true - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/polygon-id/index.yaml b/src/projects/polygon-id/index.yaml index ffc678a7..00bf2126 100644 --- a/src/projects/polygon-id/index.yaml +++ b/src/projects/polygon-id/index.yaml @@ -1,19 +1,21 @@ name: Polygon ID categories: - - applications -description: "a blockchain-native identity system with programmable privacy that empowers people and enables the creation of trusted interactions with web3 services" -ecosystem: [polygon] +- applications +description: a blockchain-native identity system with programmable privacy that empowers + people and enables the creation of trusted interactions with web3 services +ecosystem: +- polygon links: web: https://polygon.technology/polygon-id/ github: https://github.com/0xPolygonID docs: https://devs.polygonid.com/docs/quick-start-demo/ - blog: https://www.polygonid.com/blog twitter: https://x.com/0xPolygonID team: + anonymous: false company: link: https://github.com/orgs/0xPolygonID/people -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/polygon-nightfall/index.yaml b/src/projects/polygon-nightfall/index.yaml index 2b5c5f47..82c1aa3c 100644 --- a/src/projects/polygon-nightfall/index.yaml +++ b/src/projects/polygon-nightfall/index.yaml @@ -1,8 +1,9 @@ name: Polygon Miden categories: - - infrastructure -description: "a zero-knowledge rollup for high-throughput and private applications" -ecosystem: [polygon] +- infrastructure +description: a zero-knowledge rollup for high-throughput and private applications +ecosystem: +- polygon links: web: https://polygon.technology/polygon-miden docs: https://0xpolygonmiden.github.io/miden-base/introduction.html @@ -16,6 +17,7 @@ project_status: version: testnet testnet: true mainnet: false - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/polyhedra-zk-nft-container/index.yaml b/src/projects/polyhedra-zk-nft-container/index.yaml index e2d49249..aee24710 100644 --- a/src/projects/polyhedra-zk-nft-container/index.yaml +++ b/src/projects/polyhedra-zk-nft-container/index.yaml @@ -1,7 +1,7 @@ name: Polyhedra ZK-NFT Container categories: - - applications -description: "A new NFT protocol that can contain other NFTs, realizing maximum interoperability" +- applications +description: A new NFT protocol that can contain other NFTs, realizing maximum interoperability links: web: https://polyhedra.network/zknft-container github: https://github.com/PolyhedraZK/Expander @@ -10,6 +10,7 @@ links: twitter: https://x.com/PolyhedraZK discord: https://discord.com/invite/polyhedra-network sunset: false - usecases: - - nft-community +- nft-community +have_token: false +third_party_dependency: false diff --git a/src/projects/pomp/index.yaml b/src/projects/pomp/index.yaml index 0a8d1d0a..b82b54f6 100644 --- a/src/projects/pomp/index.yaml +++ b/src/projects/pomp/index.yaml @@ -1,14 +1,14 @@ name: POMP categories: - - applications -description: "Comprehensive DeFi platform for token swaps, lending, NFT trading, collateralization" +- applications +description: Comprehensive DeFi platform for token swaps, lending, NFT trading, collateralization links: web: https://mantapacific.pomp.money - blog: https://medium.com/@POMP_App twitter: https://x.com/AppPOMP discord: https://discord.com/invite/Uh452P8ScM telegram: https://t.me/POMP_Chat - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/privacy-infrastructure-solutions/index.yaml b/src/projects/privacy-infrastructure-solutions/index.yaml index f5adb7c8..e678f2a7 100644 --- a/src/projects/privacy-infrastructure-solutions/index.yaml +++ b/src/projects/privacy-infrastructure-solutions/index.yaml @@ -1,8 +1,9 @@ name: Privacy Infrastructure Solutions categories: - - hardware -description: "Cloud and data center acceleration solution for Privacy Enhancing Technologies" -ecosystem: [multichain] +- 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/ @@ -12,6 +13,7 @@ team: anonymous: false company: link: https://www.chain-reaction.io/about/ - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/privacy-pools/index.yaml b/src/projects/privacy-pools/index.yaml index 63c64d23..e3768f36 100644 --- a/src/projects/privacy-pools/index.yaml +++ b/src/projects/privacy-pools/index.yaml @@ -1,13 +1,15 @@ name: Privacy Pools categories: - - applications -description: "Allow you to generate a brand new Ethereum address that is completely unlinkable to any prior transaction history. But our privacy-preserving technology does much more than that" +- applications +description: Allow you to generate a brand new Ethereum address that is completely + unlinkable to any prior transaction history. But our privacy-preserving technology + does much more than that links: web: https://privacy-pools-v1-demo.netlify.app/ github: https://github.com/ameensol/privacy-pools docs: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4563364 - education: https://x.com/0xArhat/status/1699812440614035944 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/privacy-security-explorations/index.yaml b/src/projects/privacy-security-explorations/index.yaml index 1aaf961b..3de4b530 100644 --- a/src/projects/privacy-security-explorations/index.yaml +++ b/src/projects/privacy-security-explorations/index.yaml @@ -1,22 +1,24 @@ name: Privacy & Security explorations categories: - - infrastructure -description: "We explore new use cases for zero-knowledge proofs and other cryptographic primitives through research and proof-of-concepts" +- infrastructure +description: We explore new use cases for zero-knowledge proofs and other cryptographic + primitives through research and proof-of-concepts team: anonymous: false teammembers: - - name: Andy Guzman - link: https://x.com/AndyGuzmanEth - - name: Sam Richards - link: https://x.com/samonchain - - name: Enrico Bottazzi - link: https://x.com/backaes + - 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 - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/private-finance-syndicate/index.yaml b/src/projects/private-finance-syndicate/index.yaml index fe6ab25c..c3922a72 100644 --- a/src/projects/private-finance-syndicate/index.yaml +++ b/src/projects/private-finance-syndicate/index.yaml @@ -1,12 +1,12 @@ name: Private Finance Syndicate categories: - - social-and-communications - +- social-and-communications description: Privacy-oriented investment fund. links: web: https://privatefinancesyndicate.io blog: https://medium.com/nav-coin/2023-the-private-finance-syndicate-faqs-3f435d93688a twitter: https://twitter.com/prifisyndicate - usecases: - - alliances +- alliances +have_token: false +third_party_dependency: false diff --git a/src/projects/privatixy/index.yaml b/src/projects/privatixy/index.yaml index a48ceb4f..8673f409 100644 --- a/src/projects/privatixy/index.yaml +++ b/src/projects/privatixy/index.yaml @@ -1,10 +1,11 @@ name: Privatixy categories: - - infrastructure -description: "An open-source protocol that offers a wide variety of solutions for privacy preservation for blockchain users" -have_token: true +- infrastructure +description: An open-source protocol that offers a wide variety of solutions for privacy + preservation for blockchain users +have_token: false tokens: - - symbol: PRIVATIXY - +- symbol: PRIVATIXY usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/proof-of-passport/index.yaml b/src/projects/proof-of-passport/index.yaml index 123af7d2..f98f787c 100644 --- a/src/projects/proof-of-passport/index.yaml +++ b/src/projects/proof-of-passport/index.yaml @@ -1,6 +1,6 @@ name: Proof of Passport categories: - - applications +- applications description: Passport proving protocol using zk-SNARKs links: web: https://proofofpassport.com/ @@ -11,6 +11,6 @@ links: team: anonymous: false have_token: false - usecases: - - kyc-solution +- kyc-solution +third_party_dependency: false diff --git a/src/projects/protonvpn/index.yaml b/src/projects/protonvpn/index.yaml index b49e26e8..1120cd39 100644 --- a/src/projects/protonvpn/index.yaml +++ b/src/projects/protonvpn/index.yaml @@ -1,8 +1,9 @@ name: ProtonVPN categories: - - applications +- applications description: Swiss VPN provider with encrypted email and online storage -ecosystem: [no-chain] +ecosystem: +- no-chain links: web: https://protonvpn.com/ github: https://github.com/ProtonVPN @@ -17,6 +18,6 @@ project_status: version: stable testnet: false mainnet: false - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/puma-browser/index.yaml b/src/projects/puma-browser/index.yaml index f2935252..8e4bfac8 100644 --- a/src/projects/puma-browser/index.yaml +++ b/src/projects/puma-browser/index.yaml @@ -1,13 +1,15 @@ name: Puma browser categories: - - applications -description: Puma is a mobile browser and wallet for the Web3 ecosystem. Private by design. +- applications +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 - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/quadrata/index.yaml b/src/projects/quadrata/index.yaml index da94bdb4..aeae6e53 100644 --- a/src/projects/quadrata/index.yaml +++ b/src/projects/quadrata/index.yaml @@ -1,15 +1,15 @@ name: Quadrata categories: - - applications -description: " Establish Trust and Identification via Sybil resistant DIDs and KYC/AML natively on-chain" +- applications +description: ' Establish Trust and Identification via Sybil resistant DIDs and KYC/AML + natively on-chain' links: web: https://quadrata.com docs: https://docs.quadrata.com/integration - blog: https://medium.com/quadrata-network twitter: https://x.com/QuadrataNetwork discord: https://discord.com/invite/67QgzrymHW -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/qubes-os/index.yaml b/src/projects/qubes-os/index.yaml index 23a75624..4e3b13cc 100644 --- a/src/projects/qubes-os/index.yaml +++ b/src/projects/qubes-os/index.yaml @@ -1,13 +1,14 @@ name: Qubes OS categories: - - applications -description: "a free and open-source, security-oriented operating system for single-user desktop computing" +- applications +description: a free and open-source, security-oriented operating system for single-user + desktop computing team: anonymous: false teammembers: - - name: Marek Marczykowski-Górecki - role: Project Lead - link: https://github.com/marmarek + - name: "Marek Marczykowski-G\xF3recki" + role: Project Lead + link: https://github.com/marmarek links: web: https://www.qubes-os.org github: https://github.com/QubesOS @@ -20,6 +21,7 @@ project_status: version: 4.2.1 testnet: false mainnet: false - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/railgun/index.yaml b/src/projects/railgun/index.yaml index 3dc86120..52ac42fd 100644 --- a/src/projects/railgun/index.yaml +++ b/src/projects/railgun/index.yaml @@ -1,20 +1,22 @@ name: RAILGUN -categories: [defi] +categories: +- 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." +- 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 + - private links: web: https://railgun.org/ twitter: https://twitter.com/railgun_project @@ -44,30 +46,30 @@ privacy_policy: 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 + - 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: @@ -76,20 +78,20 @@ traceability: third_party_dependency: false compliance: false audits: - - name: Railgun audit report - link: https://assets.railgun.org/docs/audits/ - time: July, 2021 +- 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 +- 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/ +- name: Railway + link: https://www.railway.xyz/ +- name: TokenShielder + link: https://tokenshielder.com/ default_privacy: true funding: name: DCG @@ -102,6 +104,6 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - defi +- defi +have_token: false diff --git a/src/projects/railway/index.yaml b/src/projects/railway/index.yaml index 7bfadc5e..46b4b415 100644 --- a/src/projects/railway/index.yaml +++ b/src/projects/railway/index.yaml @@ -1,8 +1,11 @@ name: Railway categories: - - applications +- applications description: DeFi privacy wallet -ecosystem: [ethereum, bnb, polygon] +ecosystem: +- ethereum +- bnb +- polygon links: web: https://railway.xyz/ github: https://github.com/Railway-Wallet/Railway-Wallet/ @@ -14,6 +17,7 @@ project_status: version: 5.16.8 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/raspiblitz/index.yaml b/src/projects/raspiblitz/index.yaml index 998cd4d4..fb17f97d 100644 --- a/src/projects/raspiblitz/index.yaml +++ b/src/projects/raspiblitz/index.yaml @@ -1,6 +1,6 @@ name: RaspiBlitz categories: - - infrastructure +- infrastructure description: DIY Bitcoin & Lightning Node on a RaspberryPi. team: anonymous: true @@ -13,6 +13,7 @@ project_status: version: v1.11.0 testnet: false mainnet: true - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/raze-network/index.yaml b/src/projects/raze-network/index.yaml index f159be18..c33775fa 100644 --- a/src/projects/raze-network/index.yaml +++ b/src/projects/raze-network/index.yaml @@ -1,16 +1,18 @@ name: Raze Network categories: - - infrastructure -description: "Raze Network is a EVM-compatible privacy protocol. It is built as a native privacy layer that can provide end-to-end anonymity for the entire DeFi and Web3.0 stack. " +- 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 +have_token: false tokens: - - symbol: RAZE - +- symbol: RAZE usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/realran/index.yaml b/src/projects/realran/index.yaml index 73caa329..7e79cf8a 100644 --- a/src/projects/realran/index.yaml +++ b/src/projects/realran/index.yaml @@ -1,7 +1,8 @@ name: RealRan categories: - - infrastructure -description: "RealRan comes from the global engineering and cryptography research team, expertise in cryptography protocol and distribution consensus engineering" +- infrastructure +description: RealRan comes from the global engineering and cryptography research team, + expertise in cryptography protocol and distribution consensus engineering links: web: https://www.realran.com/home github: https://github.com/realran @@ -10,6 +11,7 @@ links: twitter: https://x.com/RealRanCrypto/ discord: https://discord.com/invite/K9J5cCAAUC sunset: true - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/relayz/index.yaml b/src/projects/relayz/index.yaml index 5e867254..e6044fd7 100644 --- a/src/projects/relayz/index.yaml +++ b/src/projects/relayz/index.yaml @@ -1,6 +1,6 @@ name: Relayz categories: - - applications +- applications description: Hyper-secure, private communications protocol for Web3 links: web: https://relayz.io @@ -8,6 +8,7 @@ links: twitter: https://x.com/RelayzOfficial discord: https://discord.com/invite/sMbZ2kxZKk telegram: https://t.me/RelayzOfficial - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/rln-anonymous-chat/index.yaml b/src/projects/rln-anonymous-chat/index.yaml index ef646ada..90700b0c 100644 --- a/src/projects/rln-anonymous-chat/index.yaml +++ b/src/projects/rln-anonymous-chat/index.yaml @@ -1,9 +1,11 @@ name: RLN Anonymous Chat categories: - - social-and-communications -description: "A spam-resistant instant messaging application for private and anonymous communication" +- social-and-communications +description: A spam-resistant instant messaging application for private and anonymous + communication links: web: https://github.com/njofce/zk-chat - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/ronindojo-tanto/index.yaml b/src/projects/ronindojo-tanto/index.yaml index 8d1a4272..9fa16f28 100644 --- a/src/projects/ronindojo-tanto/index.yaml +++ b/src/projects/ronindojo-tanto/index.yaml @@ -1,8 +1,9 @@ name: RoninDojo Tanto categories: - - hardware -description: "Fully validating Bitcoin full node. Served over a Tor hidden service" -ecosystem: [bitcoin] +- 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/ @@ -11,6 +12,7 @@ links: telegram: https://t.me/RoninDojoNode team: anonymous: true - usecases: - - hardware +- hardware +have_token: false +third_party_dependency: false diff --git a/src/projects/rpch/index.yaml b/src/projects/rpch/index.yaml index c6588c85..2f46cb53 100644 --- a/src/projects/rpch/index.yaml +++ b/src/projects/rpch/index.yaml @@ -1,13 +1,15 @@ name: RPCh categories: - - infrastructure -description: "a privacy-preserving RPC service for wallets that detaches the user’s identity from all communication with the blockchain" +- infrastructure +description: "a privacy-preserving RPC service for wallets that detaches the user\u2019\ + s identity from all communication with the blockchain" links: web: https://rpch.net/ github: https://github.com/Rpc-h/RPCh docs: https://docs.rpch.net/docs/tutorial-basics/What-is-RPCh twitter: https://x.com/RPC_h_ discord: https://discord.com/invite/VRyTQTNBTy - usecases: - - rpc-provider +- rpc-provider +have_token: false +third_party_dependency: false diff --git a/src/projects/ruby/index.yaml b/src/projects/ruby/index.yaml index f13b0ac8..b50e9db3 100644 --- a/src/projects/ruby/index.yaml +++ b/src/projects/ruby/index.yaml @@ -1,6 +1,6 @@ name: RUBY categories: - - infrastructure +- infrastructure description: The Decentralized Privacy-Centric Protocol for Web3 team: anonymous: true @@ -9,9 +9,9 @@ links: github: https://github.com/Ruby-Protocol docs: https://wiki.ruby.xyz/ Twitter: https://twitter.com/RubyProtocol -have_token: true +have_token: false tokens: - - symbol: RUBY - +- symbol: RUBY usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/sacred/index.yaml b/src/projects/sacred/index.yaml index b867b279..5dbe77f1 100644 --- a/src/projects/sacred/index.yaml +++ b/src/projects/sacred/index.yaml @@ -1,5 +1,7 @@ name: Sacred -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/sahara/index.yaml b/src/projects/sahara/index.yaml index c350fdc8..ac4a0d23 100644 --- a/src/projects/sahara/index.yaml +++ b/src/projects/sahara/index.yaml @@ -1,5 +1,7 @@ name: Sahara -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/samourai-wallet/index.yaml b/src/projects/samourai-wallet/index.yaml index cab40ed6..0aa6b07f 100644 --- a/src/projects/samourai-wallet/index.yaml +++ b/src/projects/samourai-wallet/index.yaml @@ -1,14 +1,17 @@ name: Samourai Wallet categories: - - applications -description: "A modern bitcoin wallet hand forged to keep your transactions private your identity masked and your funds secured" -ecosystem: [bitcoin] +- applications +description: A modern bitcoin wallet hand forged to keep your transactions private + your identity masked and your funds secured +ecosystem: +- bitcoin links: web: https://samouraiwallet.com/products docs: https://docs.samourai.io/wallet/start team: anonymous: true sunset: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/scala/index.yaml b/src/projects/scala/index.yaml index 2cd60d57..7f64f67f 100644 --- a/src/projects/scala/index.yaml +++ b/src/projects/scala/index.yaml @@ -1,26 +1,27 @@ name: Scala categories: - - infrastructure -description: "A secure, anonymous and mobile-friendly cryptocurrency offering easy-to-use solutions to ensure financial privacy" +- infrastructure +description: A secure, anonymous and mobile-friendly cryptocurrency offering easy-to-use + solutions to ensure financial privacy team: anonymous: false teammembers: - - name: Hayzam - role: Founder, Lead Developer + - 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 +have_token: false tokens: - - symbol: XLA +- symbol: XLA project_status: live_status: true version: Mainnet testnet: false mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/secure-rpc/index.yaml b/src/projects/secure-rpc/index.yaml index cb91a201..0d66c056 100644 --- a/src/projects/secure-rpc/index.yaml +++ b/src/projects/secure-rpc/index.yaml @@ -1,9 +1,11 @@ name: Secure RPC categories: - - infrastructure -description: "a bare-metal, fully conformant JSON-RPC/gRPC Infrastructure plane that aims to perform well" +- infrastructure +description: a bare-metal, fully conformant JSON-RPC/gRPC Infrastructure plane that + aims to perform well links: web: https://securerpc.com - usecases: - - rpc-provider +- rpc-provider +have_token: false +third_party_dependency: false diff --git a/src/projects/seedsigner/index.yaml b/src/projects/seedsigner/index.yaml index 9da9930e..98a0e80b 100644 --- a/src/projects/seedsigner/index.yaml +++ b/src/projects/seedsigner/index.yaml @@ -1,8 +1,9 @@ name: SeedSigner categories: - - applications +- applications description: Air-gapped DIY Bitcoin Signing Device -ecosystem: [bitcoin] +ecosystem: +- bitcoin links: web: https://seedsigner.com/ github: https://github.com/SeedSigner/seedsigner @@ -14,6 +15,7 @@ project_status: version: v0.7.0 testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/seer-sdid/index.yaml b/src/projects/seer-sdid/index.yaml index dfa0514e..d9a107d4 100644 --- a/src/projects/seer-sdid/index.yaml +++ b/src/projects/seer-sdid/index.yaml @@ -1,15 +1,14 @@ name: SEER sdid categories: - - applications +- applications description: Building your own community identity like a brand links: web: https://sdid.seer.eco/ - blog: https://medium.com/@SeerFoundation twitter: https://x.com/SeerFoundation discord: https://discord.com/invite/zpy6tXP5Qt telegram: https://t.me/seer_official -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/semaphore/index.yaml b/src/projects/semaphore/index.yaml index d1a1dfe3..22935433 100644 --- a/src/projects/semaphore/index.yaml +++ b/src/projects/semaphore/index.yaml @@ -1,9 +1,14 @@ name: semaphore -categories: [applications] -description: "Semaphore is a protocol that allows users to prove their membership in a group and transmit anonymous data, such as votes or feedback, without revealing their identities." +categories: +- applications +description: Semaphore is a protocol that allows users to prove their membership in + a group and transmit anonymous data, such as votes or feedback, without revealing + their identities. project_status: version: V4-beta live_status: true + mainnet: false + testnet: true team: anonymous: true links: @@ -14,7 +19,9 @@ links: docs: https://docs.semaphore.pse.dev technology: type: zk-kit, circom, snarkjs - features: [""] - + features: + - '' usecases: - - did +- did +have_token: false +third_party_dependency: false diff --git a/src/projects/seneca/index.yaml b/src/projects/seneca/index.yaml index e1d1b1c1..c7587dce 100644 --- a/src/projects/seneca/index.yaml +++ b/src/projects/seneca/index.yaml @@ -1,9 +1,11 @@ name: Seneca categories: - - infrastructure -description: The first layer 1 designed to build apps on rich, complex yet private data +- infrastructure +description: The first layer 1 designed to build apps on rich, complex yet private + data links: web: https://www.seneca.tech - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/senging-me/index.yaml b/src/projects/senging-me/index.yaml index 46bc7fbf..e315d07f 100644 --- a/src/projects/senging-me/index.yaml +++ b/src/projects/senging-me/index.yaml @@ -1,7 +1,8 @@ name: Senging.me categories: - - applications -description: SendingMe is a decentralized and encrypted super-app that combines chat, socializing, and trade, giving you complete control over your social layer. +- applications +description: SendingMe is a decentralized and encrypted super-app that combines chat, + socializing, and trade, giving you complete control over your social layer. team: anonymous: true links: @@ -11,6 +12,7 @@ links: twitter: https://twitter.com/SendingLabs discord: https://discord.com/invite/J43HGTNeWP telegram: https://t.me/SendingNetworkOfficial - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/sentinel/index.yaml b/src/projects/sentinel/index.yaml index 3c141f29..a214fd68 100644 --- a/src/projects/sentinel/index.yaml +++ b/src/projects/sentinel/index.yaml @@ -1,8 +1,10 @@ name: Sentinel categories: - - applications -description: "A global network of autonomous dVPN applications that enable private and censorship resistant internet access" -ecosystem: [cosmos] +- applications +description: A global network of autonomous dVPN applications that enable private + and censorship resistant internet access +ecosystem: +- cosmos links: web: https://sentinel.co github: https://github.com/sentinel-official @@ -11,13 +13,13 @@ links: twitter: https://twitter.com/SentinelDVPN team: anonymous: true -have_token: true +have_token: false token_link: https://coinmarketcap.com/currencies/sentinel/ project_status: live_status: true version: stable testnet: false mainnet: false - usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/serenityshield/index.yaml b/src/projects/serenityshield/index.yaml index e39b0ad2..296aaf91 100644 --- a/src/projects/serenityshield/index.yaml +++ b/src/projects/serenityshield/index.yaml @@ -1,39 +1,40 @@ name: SerenityShield categories: - - applications -description: "The Leading Sensitive Data Storage Solution on Blockchain. Security, Privacy and Digital Rights for Everyone" +- applications +description: The Leading Sensitive Data Storage Solution on Blockchain. Security, + Privacy and Digital Rights for Everyone team: anonymous: false teammembers: - - 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/ + - 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 @@ -46,6 +47,7 @@ project_status: version: tbd testnet: false mainnet: false - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/session/index.yaml b/src/projects/session/index.yaml index 1f11e6ff..144702de 100644 --- a/src/projects/session/index.yaml +++ b/src/projects/session/index.yaml @@ -1,8 +1,11 @@ name: Session categories: - - applications -description: "An end-to-end encrypted messenger that minimizes sensitive metadata, designed and built for people who want absolute privacy and freedom from any form of surveillance" -ecosystem: [cryptonote] +- applications +description: An end-to-end encrypted messenger that minimizes sensitive metadata, + designed and built for people who want absolute privacy and freedom from any form + of surveillance +ecosystem: +- cryptonote links: web: https://getsession.org github: https://github.com/oxen-io @@ -13,8 +16,10 @@ links: twitter: https://x.com/session_app facebook: https://www.facebook.com/SessionMessenger/ team: + anonymous: false company: link: https://www.linkedin.com/company/sessionmessenger/people/ - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/seven-seas/index.yaml b/src/projects/seven-seas/index.yaml index f5c14784..3ec59d01 100644 --- a/src/projects/seven-seas/index.yaml +++ b/src/projects/seven-seas/index.yaml @@ -1,5 +1,7 @@ name: Seven Seas -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/shade-cash/index.yaml b/src/projects/shade-cash/index.yaml index 91dbf658..6d885a36 100644 --- a/src/projects/shade-cash/index.yaml +++ b/src/projects/shade-cash/index.yaml @@ -1,5 +1,7 @@ name: Shade Cash -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/shade/index.yaml b/src/projects/shade/index.yaml index b03c90da..33174044 100644 --- a/src/projects/shade/index.yaml +++ b/src/projects/shade/index.yaml @@ -1,20 +1,22 @@ name: Shade Protocol -categories: [defi] -ecosystem: [secret] +categories: +- defi +ecosystem: +- secret tokens: - - name: Shade Protocol - symbol: SHD - network: Secret Network - contract_address: secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm -description: "Super app for private DeFi" +- 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" +product_launch_day: '2022-02-21' technology: type: TEE name: Trusted execution environment features: - - private - - DeFi + - private + - DeFi links: web: https://shadeprotocol.io/ twitter: https://twitter.com/Shade_Protocol @@ -52,9 +54,9 @@ team: link: https://www.securesecrets.org/ contacts: https://twitter.com/securesecrets teammembers: - - name: Carter L. Woetzel - role: researcher - link: https://twitter.com/l_woetzel + - name: Carter L. Woetzel + role: researcher + link: https://twitter.com/l_woetzel storage: decentralized: true traceability: @@ -64,25 +66,25 @@ traceability: 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 +- 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 +- 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/ +- name: Keplr + link: https://www.keplr.app/ +- name: Starshell + link: https://starshell.net/ default_privacy: true funding: name: Private investors @@ -95,6 +97,6 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - defi +- defi +have_token: false diff --git a/src/projects/shinobi/index.yaml b/src/projects/shinobi/index.yaml index 58895adb..1cf6707a 100644 --- a/src/projects/shinobi/index.yaml +++ b/src/projects/shinobi/index.yaml @@ -1,6 +1,7 @@ id: shinobi name: Shinobi -categories: [defi] +categories: +- defi links: github: https://github.com/shinobi-protocol docs: https://docs.sbtc.ninja/ @@ -9,6 +10,7 @@ links: twitter: https://twitter.com/ShinobiProtocol discord: https://discord.com/invite/wm275b6m8d telegram: https://t.me/shinobi_protocol - usecases: - - bridge +- bridge +have_token: false +third_party_dependency: false diff --git a/src/projects/sia/index.yaml b/src/projects/sia/index.yaml index b61ca820..cc9d882f 100644 --- a/src/projects/sia/index.yaml +++ b/src/projects/sia/index.yaml @@ -1,37 +1,37 @@ name: Sia categories: - - applications +- applications 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 + - 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 @@ -47,6 +47,7 @@ project_status: version: Mainnet testnet: true mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/sienna/index.yaml b/src/projects/sienna/index.yaml index 965172fb..ff296c66 100644 --- a/src/projects/sienna/index.yaml +++ b/src/projects/sienna/index.yaml @@ -1,20 +1,23 @@ name: Sienna Network -categories: [defi] -ecosystem: [cecret] +categories: +- defi +ecosystem: +- cecret tokens: - - name: Sienna Network - symbol: SIENNA - network: Secret Network - contract_address: secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4 -description: "Privacy-first, cross-chain decentralized finance protocol powered by Secret Network in the Cosmos ecosystem." +- 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" +product_launch_day: '2022-04-27' technology: type: TEE name: Trusted execution environment features: - - private - - DeFi + - private + - DeFi links: web: https://sienna.network/ twitter: https://twitter.com/sienna_network @@ -55,22 +58,22 @@ traceability: third_party_dependency: false compliance: false audits: - - name: Halborn and Certik - link: https://sienna.network/audits/ - time: "2021-04-18" +- 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 +- 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/ +- name: Keplr + link: https://www.keplr.app/ +- name: Starshell + link: https://starshell.net/ default_privacy: true funding: name: Public presale @@ -83,6 +86,6 @@ project_status: version: Mainnet testnet: false mainnet: true - usecases: - - defi +- defi +have_token: false diff --git a/src/projects/sigle/index.yaml b/src/projects/sigle/index.yaml index 738f5b75..2c4b80c4 100644 --- a/src/projects/sigle/index.yaml +++ b/src/projects/sigle/index.yaml @@ -1,16 +1,17 @@ name: Sigle categories: - - applications -description: "Secured and open-source writing platform for web3 content creators, NFT projects, crypto analysts" +- applications +description: Secured and open-source writing platform for web3 content creators, NFT + projects, crypto analysts links: web: https://www.sigle.io github: https://github.com/sigle/sigle 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/silent-data/index.yaml b/src/projects/silent-data/index.yaml index e0aafcf8..4859502c 100644 --- a/src/projects/silent-data/index.yaml +++ b/src/projects/silent-data/index.yaml @@ -1,14 +1,14 @@ name: Silent Data categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/silent-protocol/index.yaml b/src/projects/silent-protocol/index.yaml index a7ad6300..601a56f7 100644 --- a/src/projects/silent-protocol/index.yaml +++ b/src/projects/silent-protocol/index.yaml @@ -1,11 +1,15 @@ name: Silent protocol -categories: [defi] -ecosystem: [ethereum] -description: "Silent Protocol is the first protocol enabling compliant full-stack privacy for smart contract assets and web3 applications at scale." +categories: +- defi +ecosystem: +- ethereum +description: Silent Protocol is the first protocol enabling compliant full-stack privacy + for smart contract assets and web3 applications at scale. links: web: https://www.silentprotocol.org/ team: anonymous: true - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/silk/index.yaml b/src/projects/silk/index.yaml index 6af91290..22d31651 100644 --- a/src/projects/silk/index.yaml +++ b/src/projects/silk/index.yaml @@ -1,15 +1,15 @@ name: SILK categories: - - defi +- defi description: Private Over-Collateralized Anti-inflationary Stable Coin technology: - features: [""] + features: + - '' type: TEE name: Trusted execution environment blockchain_features: p2p: false encryption: TEE - opensource: true viewing_key: true dissapearing_tx: false @@ -30,19 +30,17 @@ third_party_dependency: false compliance: false social_trust: Shade Core team ( Secret Contract multisig ) technical_spof: Can decrypt - project_status: live_status: true version: Mainnet testnet: false mainnet: true - -ecosystem: [secret-network] +ecosystem: +- secret-network links: web: https://app.shadeprotocol.io/silk github: https://github.com/securesecrets/shade - twitter: https://x.com/Silk_Stable - usecases: - - currency +- currency +have_token: false diff --git a/src/projects/sirius-sync/index.yaml b/src/projects/sirius-sync/index.yaml index 5e820877..7951e042 100644 --- a/src/projects/sirius-sync/index.yaml +++ b/src/projects/sirius-sync/index.yaml @@ -1,14 +1,14 @@ name: Sirius Sync categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/sismo/index.yaml b/src/projects/sismo/index.yaml index 0c8f9cfb..be4b026e 100644 --- a/src/projects/sismo/index.yaml +++ b/src/projects/sismo/index.yaml @@ -1,16 +1,15 @@ name: Sismo categories: - - applications -description: "a modular protocol issuing ZK Badges for reputation portability and aggregation" +- applications +description: a modular protocol issuing ZK Badges for reputation portability and aggregation links: web: https://www.sismo.io/ github: https://github.com/sismo-core 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/skiff-drive/index.yaml b/src/projects/skiff-drive/index.yaml index ec64a724..87f7920f 100644 --- a/src/projects/skiff-drive/index.yaml +++ b/src/projects/skiff-drive/index.yaml @@ -1,11 +1,12 @@ name: Skiff Drive categories: - - applications +- applications description: Secure file storage links: web: https://skiff.com/drive github: https://github.com/skiff-org sunset: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/skiff-pages/index.yaml b/src/projects/skiff-pages/index.yaml index 233fb3c2..737ae49a 100644 --- a/src/projects/skiff-pages/index.yaml +++ b/src/projects/skiff-pages/index.yaml @@ -1,10 +1,11 @@ name: Skiff Pages categories: - - applications +- applications description: Private, End-to-End Encrypted Notes links: web: https://skiff.com/pages github: https://github.com/skiff-org - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/skiff/index.yaml b/src/projects/skiff/index.yaml index 6a229a71..39ae5246 100644 --- a/src/projects/skiff/index.yaml +++ b/src/projects/skiff/index.yaml @@ -1,14 +1,14 @@ name: Skiff categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/skynet/index.yaml b/src/projects/skynet/index.yaml index d8894418..1b5b4686 100644 --- a/src/projects/skynet/index.yaml +++ b/src/projects/skynet/index.yaml @@ -1,11 +1,13 @@ name: SkyNet categories: - - applications -description: "an open protocol for hosting data and web applications on the decentralized web using Sia" +- applications +description: an open protocol for hosting data and web applications on the decentralized + web using Sia links: web: https://skynetlabs.com github: https://github.com/SkynetLabs sunset: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/slashags/index.yaml b/src/projects/slashags/index.yaml index f8946718..88a6b257 100644 --- a/src/projects/slashags/index.yaml +++ b/src/projects/slashags/index.yaml @@ -1,16 +1,17 @@ name: Slashags categories: - - applications -description: "Slashtags gives developers tools to build secure and scalable peer-to-peer applications that put users in control of their profiles, contacts, accounts, and data" +- applications +description: Slashtags gives developers tools to build secure and scalable peer-to-peer + applications that put users in control of their profiles, contacts, accounts, and + data links: web: https://slashtags.to github: https://github.com/synonymdev/slashtags - blog: https://blog.bitkit.to/ twitter: https://x.com/slashtags_to discord: https://discord.com/invite/DxTBJXvJxn telegram: https://t.me/slashtags -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/socialkyc/index.yaml b/src/projects/socialkyc/index.yaml index ab73b2b2..08a8bfb9 100644 --- a/src/projects/socialkyc/index.yaml +++ b/src/projects/socialkyc/index.yaml @@ -1,15 +1,15 @@ name: socialKYC categories: - - applications +- applications 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 - usecases: - - kyc-solution +- kyc-solution +have_token: false +third_party_dependency: false diff --git a/src/projects/sociogram/index.yaml b/src/projects/sociogram/index.yaml index 159352ae..e659ee79 100644 --- a/src/projects/sociogram/index.yaml +++ b/src/projects/sociogram/index.yaml @@ -1,15 +1,15 @@ name: Sociogram categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/solar-labs/index.yaml b/src/projects/solar-labs/index.yaml index 7f6ae173..37b88f4a 100644 --- a/src/projects/solar-labs/index.yaml +++ b/src/projects/solar-labs/index.yaml @@ -1,11 +1,11 @@ name: Solar labs categories: - - applications -description: World’s first truly decentralized blockchain-based VPN service. +- applications +description: "World\u2019s first truly decentralized blockchain-based VPN service." links: web: https://solarlabs.ee twitter: https://twitter.com/solardvpn -have_token: true - +have_token: false usecases: - - vpn +- vpn +third_party_dependency: false diff --git a/src/projects/sons-of-crypto/index.yaml b/src/projects/sons-of-crypto/index.yaml index 718d28eb..aa8dc06a 100644 --- a/src/projects/sons-of-crypto/index.yaml +++ b/src/projects/sons-of-crypto/index.yaml @@ -1,8 +1,9 @@ name: Sons of Crypto categories: - - applications +- applications description: Web3 wallet by degens for degens -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://sonsofcrypto.com/ github: https://github.com/sonsofcrypto @@ -13,9 +14,10 @@ team: anonymous: true project_status: live_status: true - version: "" + version: '' testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/sparrow/index.yaml b/src/projects/sparrow/index.yaml index f8d64b7d..778ed690 100644 --- a/src/projects/sparrow/index.yaml +++ b/src/projects/sparrow/index.yaml @@ -1,9 +1,10 @@ id: sparrow name: Sparrow categories: - - applications +- applications description: A Bitcoin wallet for those who value financial self-sovereignty -ecosystem: [bitcoin] +ecosystem: +- bitcoin links: web: https://sparrowwallet.com/ github: https://github.com/sparrowwallet/sparrow @@ -12,13 +13,14 @@ links: team: anonymous: false teammembers: - - name: craigraw - role: Project Lead - link: http://twitter.com/craigraw + - name: craigraw + role: Project Lead + link: http://twitter.com/craigraw project_status: live_status: true testnet: false mainnet: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/speak-app/index.yaml b/src/projects/speak-app/index.yaml index fb4e82f5..edf917ae 100644 --- a/src/projects/speak-app/index.yaml +++ b/src/projects/speak-app/index.yaml @@ -1,13 +1,15 @@ name: Speak app categories: - - applications -description: "No phone number. No email address. Speakapp is a simple, and secure web3 messenger" +- applications +description: No phone number. No email address. Speakapp is a simple, and secure web3 + messenger team: anonymous: true links: web: https://speakapp.me blog: https://blog.speakapp.me/ twitter: https://twitter.com/speakappme - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/speakeasy/index.yaml b/src/projects/speakeasy/index.yaml index 004e8970..6387b4e1 100644 --- a/src/projects/speakeasy/index.yaml +++ b/src/projects/speakeasy/index.yaml @@ -1,10 +1,12 @@ name: Speakeasy categories: - - applications -description: "Speak easily to a group of friends or a global community. Talk about what you want. Surveillance free. Censorship proof" +- applications +description: Speak easily to a group of friends or a global community. Talk about + what you want. Surveillance free. Censorship proof links: web: https://alpha.speakeasy.tech twitter: https://x.com/speakeasy_tech - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/specter-diy/index.yaml b/src/projects/specter-diy/index.yaml index 5d9616a9..2cb3f911 100644 --- a/src/projects/specter-diy/index.yaml +++ b/src/projects/specter-diy/index.yaml @@ -1,13 +1,16 @@ name: Specter-DIY categories: - - applications -description: "DIY airgapped hardware wallet that uses QR codes for communication with the host" -ecosystem: [bitcoin] +- applications +description: DIY airgapped hardware wallet that uses QR codes for communication with + the host +ecosystem: +- bitcoin links: web: https://specter.solutions/hardware github: https://github.com/cryptoadvance/specter-diy/ team: anonymous: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/sphereon-wallet/index.yaml b/src/projects/sphereon-wallet/index.yaml index 3a9d5d51..72fd9cac 100644 --- a/src/projects/sphereon-wallet/index.yaml +++ b/src/projects/sphereon-wallet/index.yaml @@ -1,12 +1,14 @@ name: Sphereon Wallet categories: - - applications -description: "The Sphereon Wallet enables you to store your own private data and gives you full and sole control over whom you want to share your information with" +- applications +description: The Sphereon Wallet enables you to store your own private data and gives + you full and sole control over whom you want to share your information with links: web: https://github.com/Sphereon-Opensource/ssi-mobile-wallet github: https://github.com/Sphereon-Opensource/ssi-mobile-wallet team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/sphereon/index.yaml b/src/projects/sphereon/index.yaml index 1bafaf4e..3f5a2086 100644 --- a/src/projects/sphereon/index.yaml +++ b/src/projects/sphereon/index.yaml @@ -1,11 +1,13 @@ name: Sphereon categories: - - applications -description: "The Sphereon Wallet enables you to store your own private data and gives you full and sole control over whom you want to share your information with" +- applications +description: The Sphereon Wallet enables you to store your own private data and gives + you full and sole control over whom you want to share your information with links: github: https://github.com/Sphereon-Opensource/ssi-mobile-wallet team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/spillways/index.yaml b/src/projects/spillways/index.yaml index 49d1ca28..79dbf956 100644 --- a/src/projects/spillways/index.yaml +++ b/src/projects/spillways/index.yaml @@ -1,6 +1,8 @@ name: Spillways -categories: [applications] -description: "Mixer enables fast, secure, and private transactions in crypto by obscuring the source and destination of funds" +categories: +- applications +description: Mixer enables fast, secure, and private transactions in crypto by obscuring + the source and destination of funds team: anonymous: false links: @@ -12,14 +14,16 @@ links: telegram: https://t.me/SpillWaysJoin token_link: https://etherscan.io/address/0x8790f2fc7ca2e7db841307fb3f4e72a03baf7b47 tokens: - - name: Spillways - symbol: SAMPLE - network: Ethereum - contract_address: "0x8790f2fc7Ca2e7Db841307FB3f4e72a03Baf7b47" +- name: Spillways + symbol: SAMPLE + network: Ethereum + contract_address: '0x8790f2fc7Ca2e7Db841307FB3f4e72a03Baf7b47' project_status: live_status: true version: Mainnet testnet: false mainnet: true - -usecases: [mixing-service] +usecases: +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/spiral-finance/index.yaml b/src/projects/spiral-finance/index.yaml index 360ef549..6fb10261 100644 --- a/src/projects/spiral-finance/index.yaml +++ b/src/projects/spiral-finance/index.yaml @@ -1,5 +1,7 @@ name: Spiral Finance -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/spkz/index.yaml b/src/projects/spkz/index.yaml index 32d31e9a..da3eda6e 100644 --- a/src/projects/spkz/index.yaml +++ b/src/projects/spkz/index.yaml @@ -1,14 +1,14 @@ name: SPKZ categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/spoc/index.yaml b/src/projects/spoc/index.yaml index cd8fe699..65a1749f 100644 --- a/src/projects/spoc/index.yaml +++ b/src/projects/spoc/index.yaml @@ -1,10 +1,12 @@ name: Spoc categories: - - applications -description: "A privacy system that enables DaaS and creates balance between business CRM and how individuals control & manage data" +- applications +description: A privacy system that enables DaaS and creates balance between business + CRM and how individuals control & manage data links: web: https://spoc.com/ twitter: https://x.com/SPOCme - usecases: - - data-management +- data-management +have_token: false +third_party_dependency: false diff --git a/src/projects/spook/index.yaml b/src/projects/spook/index.yaml index 905265f6..c3b24fbf 100644 --- a/src/projects/spook/index.yaml +++ b/src/projects/spook/index.yaml @@ -1,9 +1,10 @@ name: Spook categories: - - infrastructure +- infrastructure description: Mixing service using the Nym network to anonymize Ethereum RPC calls. links: web: https://github.com/EdenBlockVC/spook - usecases: - - rpc-provider +- rpc-provider +have_token: false +third_party_dependency: false diff --git a/src/projects/sporran/index.yaml b/src/projects/sporran/index.yaml index 9d802a36..e6ec6dce 100644 --- a/src/projects/sporran/index.yaml +++ b/src/projects/sporran/index.yaml @@ -1,12 +1,14 @@ name: Sporran categories: - - applications -description: "The Sporran wallet is a browser extension that provides a gateway to the KILT blockchain identity protocol and Web3 services" +- applications +description: The Sporran wallet is a browser extension that provides a gateway to + the KILT blockchain identity protocol and Web3 services links: web: https://www.sporran.org/ github: https://github.com/BTE-Trusted-Entity/sporran-extension team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/spruce/index.yaml b/src/projects/spruce/index.yaml index 1f173ed2..69e80507 100644 --- a/src/projects/spruce/index.yaml +++ b/src/projects/spruce/index.yaml @@ -1,16 +1,16 @@ name: Spruce categories: - - applications -description: "open-source stack to leave control of identity and data where it should be: with users" +- applications +description: 'open-source stack to leave control of identity and data where it should + be: with users' links: web: https://spruceid.com github: https://github.com/spruceid docs: https://www.spruceid.dev/ - blog: https://blog.spruceid.com/ twitter: https://x.com/SpruceID discord: https://discord.com/invite/KmQeRhQPYh -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/starkex/index.yaml b/src/projects/starkex/index.yaml index 2e1d6a0f..adfa655b 100644 --- a/src/projects/starkex/index.yaml +++ b/src/projects/starkex/index.yaml @@ -1,19 +1,21 @@ name: StarkEX categories: - - infrastructure -description: A Layer-2 scalability engine, live on Ethereum Mainnet ✨️ZK -ecosystem: [ethereum] +- infrastructure +description: "A Layer-2 scalability engine, live on Ethereum Mainnet \u2728\uFE0F\ + 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/ - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/starshell/index.yaml b/src/projects/starshell/index.yaml index a23f6ce9..d25a6dd1 100644 --- a/src/projects/starshell/index.yaml +++ b/src/projects/starshell/index.yaml @@ -1,13 +1,16 @@ name: Starshell categories: - - applications -description: "A privacy-preserving, free and open-source Web3 wallet built for the Secret Network and Cosmos ecosystem" -ecosystem: [multichain] +- applications +description: A privacy-preserving, free and open-source Web3 wallet built for the + Secret Network and Cosmos ecosystem +ecosystem: +- multichain links: web: https://starshell.net/ github: https://github.com/SolarRepublic team: anonymous: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/start9/index.yaml b/src/projects/start9/index.yaml index dc2050a9..a99be8b3 100644 --- a/src/projects/start9/index.yaml +++ b/src/projects/start9/index.yaml @@ -1,6 +1,6 @@ name: Start9 categories: - - infrastructure +- infrastructure description: Sovereign computing for a free future. team: anonymous: true @@ -15,6 +15,7 @@ project_status: version: v0.3.5.1 testnet: false mainnet: true - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/stashh/index.yaml b/src/projects/stashh/index.yaml index e3df7ed9..1c59d596 100644 --- a/src/projects/stashh/index.yaml +++ b/src/projects/stashh/index.yaml @@ -1,7 +1,8 @@ name: Stashh categories: - - applications -description: "Explore the worlds first marketplace for NFTs with privacy by default and unlock their hidden data" +- applications +description: Explore the worlds first marketplace for NFTs with privacy by default + and unlock their hidden data links: web: https://stashh.io github: https://github.com/stashh-labs @@ -16,6 +17,6 @@ project_status: mainnet: true have_token: false sunset: false - usecases: - - nft-community +- nft-community +third_party_dependency: false diff --git a/src/projects/status-web3-browser/index.yaml b/src/projects/status-web3-browser/index.yaml index b67c1a2f..27c5283c 100644 --- a/src/projects/status-web3-browser/index.yaml +++ b/src/projects/status-web3-browser/index.yaml @@ -1,13 +1,15 @@ name: Status Web3 Browser categories: - - applications -description: "Access the latest defi dapps, exchanges, marketplaces, games and more with the Web3 Browser" +- applications +description: Access the latest defi dapps, exchanges, marketplaces, games and more + with the Web3 Browser links: web: https://status.im/web-three-browser/ github: https://github.com/status-im blog: https://status.app/blog twitter: https://twitter.com/ethstatus facebook: https://www.facebook.com/ethstatus/about - usecases: - - browser +- browser +have_token: false +third_party_dependency: false diff --git a/src/projects/status/index.yaml b/src/projects/status/index.yaml index f3488896..94f3c7b8 100644 --- a/src/projects/status/index.yaml +++ b/src/projects/status/index.yaml @@ -1,7 +1,8 @@ name: Status categories: - - social-and-communications -description: "Status is a secure messaging app, crypto wallet, and Web3 browser built with state of the art technology" +- social-and-communications +description: Status is a secure messaging app, crypto wallet, and Web3 browser built + with state of the art technology team: anonymous: false links: @@ -10,6 +11,7 @@ links: docs: https://status.app/specs blog: https://status.app/blog twitter: https://twitter.com/ethstatus - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/stealthdrop/index.yaml b/src/projects/stealthdrop/index.yaml index fcaa396d..14ae3877 100644 --- a/src/projects/stealthdrop/index.yaml +++ b/src/projects/stealthdrop/index.yaml @@ -1,10 +1,11 @@ name: Stealthdrop categories: - - applications -description: Anonymous Airdrops using ZK-SNARKS ✨️**ZK** +- applications +description: "Anonymous Airdrops using ZK-SNARKS \u2728\uFE0F**ZK**" links: web: https://stealthdrop.xyz github: https://github.com/stealthdrop/stealthdrop - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/stealthpay/index.yaml b/src/projects/stealthpay/index.yaml index 1b877cf9..2dd5d3cf 100644 --- a/src/projects/stealthpay/index.yaml +++ b/src/projects/stealthpay/index.yaml @@ -1,5 +1,7 @@ name: StealthPay -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/stereum/index.yaml b/src/projects/stereum/index.yaml index 1ba9f26e..57b07839 100644 --- a/src/projects/stereum/index.yaml +++ b/src/projects/stereum/index.yaml @@ -1,7 +1,9 @@ name: Stereum categories: - - infrastructure -description: "Graphical tool for installing Ethereum clients on a remote server via SSH connection with a simple setup guide, phone app for remote monitoring, control center and other features" +- infrastructure +description: Graphical tool for installing Ethereum clients on a remote server via + SSH connection with a simple setup guide, phone app for remote monitoring, control + center and other features team: anonymous: true links: @@ -14,6 +16,7 @@ project_status: version: v2.1.3 testnet: true mainnet: true - usecases: - - node +- node +have_token: false +third_party_dependency: false diff --git a/src/projects/storj/index.yaml b/src/projects/storj/index.yaml index 78287e9c..567d8c4f 100644 --- a/src/projects/storj/index.yaml +++ b/src/projects/storj/index.yaml @@ -1,7 +1,8 @@ name: Storj categories: - - applications -description: "globally distributed network for data storage with better security, privacy, and durability with CDN-like performance" +- applications +description: globally distributed network for data storage with better security, privacy, + and durability with CDN-like performance team: anonymous: true links: @@ -16,6 +17,7 @@ project_status: version: Mainnet v1.104.5 testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/suterusu/index.yaml b/src/projects/suterusu/index.yaml index b7f72154..c276aa62 100644 --- a/src/projects/suterusu/index.yaml +++ b/src/projects/suterusu/index.yaml @@ -1,13 +1,14 @@ name: Suterusu categories: - - infrastructure -description: "A suite of privacy-preserving services to obfuscate transactional and asset information" +- 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 +have_token: false tokens: - - symbol: SUTER - +- symbol: SUTER usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/swarm/index.yaml b/src/projects/swarm/index.yaml index 2d47a152..0e63cc89 100644 --- a/src/projects/swarm/index.yaml +++ b/src/projects/swarm/index.yaml @@ -1,7 +1,8 @@ name: Swarm categories: - - applications -description: "A decentralized data storage and distribution technology. Ready to power the next generation of censorship-resistant, unstoppable, serverless dApps" +- applications +description: A decentralized data storage and distribution technology. Ready to power + the next generation of censorship-resistant, unstoppable, serverless dApps team: anonymous: true links: @@ -17,13 +18,13 @@ project_status: version: Mainnet testnet: true mainnet: true -have_token: true +have_token: false token_link: https://etherscan.io/token/0x19062190b1925b5b6689d7073fdfc8c2976ef8cb tokens: - - name: BZZToken - symbol: BZZ - network: Ethereum - contract_address: "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb" - +- name: BZZToken + symbol: BZZ + network: Ethereum + contract_address: '0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb' usecases: - - storage +- storage +third_party_dependency: false diff --git a/src/projects/synx/index.yaml b/src/projects/synx/index.yaml index 9e0ab5e0..93af077d 100644 --- a/src/projects/synx/index.yaml +++ b/src/projects/synx/index.yaml @@ -1,6 +1,6 @@ name: Synx categories: - - applications +- applications description: The Web3 storage platform team: anonymous: true @@ -12,6 +12,7 @@ project_status: version: Alpha testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/tails-os/index.yaml b/src/projects/tails-os/index.yaml index 584f1d4a..6fc46767 100644 --- a/src/projects/tails-os/index.yaml +++ b/src/projects/tails-os/index.yaml @@ -1,7 +1,8 @@ name: TAILS OS categories: - - applications -description: "Tails is a portable operating system that protects your privacy and helps you avoid censorship" +- applications +description: Tails is a portable operating system that protects your privacy and helps + you avoid censorship team: anonymous: true links: @@ -11,9 +12,10 @@ links: twitter: https://twitter.com/Tails_live project_status: live_status: true - version: "6.3" + version: '6.3' testnet: false mainnet: false - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/telebridge/index.yaml b/src/projects/telebridge/index.yaml index 66adebde..48ac9f3b 100644 --- a/src/projects/telebridge/index.yaml +++ b/src/projects/telebridge/index.yaml @@ -1,6 +1,8 @@ name: Hype (formerly known as TeleBridge) -categories: [applications] -description: "Hype is the first Telegram-based bot that can be used to mix your ETH, clean your wallets and bridge anonymously." +categories: +- applications +description: Hype is the first Telegram-based bot that can be used to mix your ETH, + clean your wallets and bridge anonymously. team: anonymous: true links: @@ -8,6 +10,7 @@ links: whitepaper: https://hype-eth.com/whitepaper.pdf twitter: https://x.com/TelebridgeERC telegram: https://t.me/TeleBridgingBot - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/telios/index.yaml b/src/projects/telios/index.yaml index b8395e60..f7e3784e 100644 --- a/src/projects/telios/index.yaml +++ b/src/projects/telios/index.yaml @@ -1,10 +1,11 @@ name: Telios categories: - - applications +- applications description: Secure Communication with Encrypted Data and Email links: web: https://www.telios.io github: https://github.com/Telios-org - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/the-anon-club/index.yaml b/src/projects/the-anon-club/index.yaml index dd563453..57a2c79e 100644 --- a/src/projects/the-anon-club/index.yaml +++ b/src/projects/the-anon-club/index.yaml @@ -1,11 +1,12 @@ name: The Anon Club categories: - - applications +- applications description: World's first privacy-focused digital collectibles. links: web: https://theanonclub.com twitter: https://x.com/theanonclub sunset: true - usecases: - - nft-community +- nft-community +have_token: false +third_party_dependency: false diff --git a/src/projects/the-farcaster-project/index.yaml b/src/projects/the-farcaster-project/index.yaml index 0a3b29a0..609dc6f2 100644 --- a/src/projects/the-farcaster-project/index.yaml +++ b/src/projects/the-farcaster-project/index.yaml @@ -1,12 +1,14 @@ name: The Farcaster Project categories: - - infrastructure -description: "A cross-chain atomic swap protocol and implementation who allows to exchange Bitcoin and Monero in a peer-to-peer manner with anyone running a Farcaster node" +- 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 - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/timpi/index.yaml b/src/projects/timpi/index.yaml index 5d169700..45b6e2c4 100644 --- a/src/projects/timpi/index.yaml +++ b/src/projects/timpi/index.yaml @@ -1,15 +1,15 @@ name: Timpi categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/tlsnotary/index.yaml b/src/projects/tlsnotary/index.yaml index d7a09507..84a5b486 100644 --- a/src/projects/tlsnotary/index.yaml +++ b/src/projects/tlsnotary/index.yaml @@ -1,15 +1,15 @@ name: TLSNotary categories: - - applications +- applications 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 - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/tomochainp/index.yaml b/src/projects/tomochainp/index.yaml index f08496a6..fb551e31 100644 --- a/src/projects/tomochainp/index.yaml +++ b/src/projects/tomochainp/index.yaml @@ -1,13 +1,14 @@ name: TomoChainP categories: - - infrastructure -description: "A privacy protocols developed on TomoChain and designed to create safe and untraceable transactions" +- 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 +have_token: false tokens: - - symbol: TOMO - +- symbol: TOMO usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/tonnel-network/index.yaml b/src/projects/tonnel-network/index.yaml index 5a074a45..9b900ad5 100644 --- a/src/projects/tonnel-network/index.yaml +++ b/src/projects/tonnel-network/index.yaml @@ -1,21 +1,22 @@ name: Tonnel Network categories: - - infrastructure -description: This is the first fully functioning tornado-core implementation on TON blockchain. It is based on circom and snarkjs libraries. +- 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 +have_token: false tokens: - - symbol: $TONNEL +- symbol: $TONNEL project_status: live_status: true version: Testnet testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/tornadocash/index.yaml b/src/projects/tornadocash/index.yaml index 5006b8b2..98137ce2 100644 --- a/src/projects/tornadocash/index.yaml +++ b/src/projects/tornadocash/index.yaml @@ -1,7 +1,8 @@ name: TornadoCash categories: - - applications -description: "an open source, non-custodial, fully decentralized cryptocurrency tumbler that runs on Ethereum Virtual Machine-compatible networks" +- applications +description: an open source, non-custodial, fully decentralized cryptocurrency tumbler + that runs on Ethereum Virtual Machine-compatible networks team: anonymous: true links: @@ -16,6 +17,7 @@ project_status: version: Mainnet testnet: true mainnet: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/transferchain/index.yaml b/src/projects/transferchain/index.yaml index 3e7690fb..73ffa8e7 100644 --- a/src/projects/transferchain/index.yaml +++ b/src/projects/transferchain/index.yaml @@ -1,7 +1,8 @@ name: TransferChain categories: - - applications -description: "Enables users to store, process, and share their data while ensuring its privacy and security" +- applications +description: Enables users to store, process, and share their data while ensuring + its privacy and security team: anonymous: true links: @@ -15,6 +16,7 @@ project_status: version: tbd testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/treasure-chest/index.yaml b/src/projects/treasure-chest/index.yaml index 1f157b5e..472d5a7c 100644 --- a/src/projects/treasure-chest/index.yaml +++ b/src/projects/treasure-chest/index.yaml @@ -1,13 +1,15 @@ name: Treasure Chest categories: - - applications -description: "Treasure Chest is the main full node wallet for the ARRR cryptocurrency" -ecosystem: [pirate-chain] +- applications +description: Treasure Chest is the main full node wallet for the ARRR cryptocurrency +ecosystem: +- pirate-chain links: web: https://pirate.black/wallets/treasure-chest/ github: https://github.com/PirateNetwork/PirateWallet-Lite team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/trivium/index.yaml b/src/projects/trivium/index.yaml index 760a383d..e6829ba6 100644 --- a/src/projects/trivium/index.yaml +++ b/src/projects/trivium/index.yaml @@ -1,7 +1,8 @@ name: Trivium categories: - - infrastructure -description: "Provides validator services to several networks, and develops privacy-preserving dApps" +- infrastructure +description: Provides validator services to several networks, and develops privacy-preserving + dApps links: web: https://trivium.network github: https://github.com/TriviumNode @@ -9,6 +10,7 @@ links: twitter: https://x.com/TriviumNode discord: https://discord.com/invite/tZj7ZhhdP5 telegram: https://t.me/TriviumNode - usecases: - - research-and-development +- research-and-development +have_token: false +third_party_dependency: false diff --git a/src/projects/trocador-app/index.yaml b/src/projects/trocador-app/index.yaml index e7cc003e..6e14d931 100644 --- a/src/projects/trocador-app/index.yaml +++ b/src/projects/trocador-app/index.yaml @@ -1,12 +1,14 @@ name: Trocador App categories: - - infrastructure -description: "A privacy-focused exchange aggregator. Anonymous service, no Java, no registration, onion site and I2P available" +- 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/ - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/truezk/index.yaml b/src/projects/truezk/index.yaml index 6921d646..ebef7ec6 100644 --- a/src/projects/truezk/index.yaml +++ b/src/projects/truezk/index.yaml @@ -1,6 +1,6 @@ name: TrueZK categories: - - infrastructure +- infrastructure description: Post-Quantum ZK Rollup as a service x private DIDs links: web: https://www.truezk.com @@ -8,6 +8,7 @@ links: blog: https://medium.com/truezk twitter: https://x.com/True_ZK telegram: https://t.me/truezk - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/tusima/index.yaml b/src/projects/tusima/index.yaml index b57f1262..ba5049f7 100644 --- a/src/projects/tusima/index.yaml +++ b/src/projects/tusima/index.yaml @@ -1,6 +1,6 @@ name: Tusima categories: - - infrastructure +- infrastructure description: Privacy Financial Infrastructure For Blockchain links: web: https://tusima.network @@ -10,6 +10,7 @@ links: twitter: https://x.com/TusimaNetwork discord: https://discord.com/invite/tusimanetwork telegram: https://t.me/tusimaofficial - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/umbra/index.yaml b/src/projects/umbra/index.yaml index 056def93..ded2a55e 100644 --- a/src/projects/umbra/index.yaml +++ b/src/projects/umbra/index.yaml @@ -1,5 +1,7 @@ name: Umbra -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/unijoin/index.yaml b/src/projects/unijoin/index.yaml index 95f85a19..21889a91 100644 --- a/src/projects/unijoin/index.yaml +++ b/src/projects/unijoin/index.yaml @@ -1,10 +1,12 @@ name: UniJoin categories: - - applications -description: "help you regain and maintain your anonymity by mixing your cryptos in a pool using CoinJoin technology" +- applications +description: help you regain and maintain your anonymity by mixing your cryptos in + a pool using CoinJoin technology links: web: https://unijoin.io sunset: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/universal-privacy-alliance/index.yaml b/src/projects/universal-privacy-alliance/index.yaml index 2836cec7..e8e50bd2 100644 --- a/src/projects/universal-privacy-alliance/index.yaml +++ b/src/projects/universal-privacy-alliance/index.yaml @@ -1,12 +1,13 @@ name: Universal Privacy Alliance categories: - - social-and-communications - -description: "seeks to advance the understanding of privacy as the very basis of free and flourishing digital societies" +- social-and-communications +description: seeks to advance the understanding of privacy as the very basis of free + and flourishing digital societies links: web: https://privacyalliance.com blog: https://nymtech.medium.com/press-release-universal-privacy-alliance-launches-privacy-legal-defence-fund-at-devcon-c80af393ab11 twitter: https://twitter.com/priv_alliance - usecases: - - alliances +- alliances +have_token: false +third_party_dependency: false diff --git a/src/projects/universal-reputation/index.yaml b/src/projects/universal-reputation/index.yaml index 35dd6059..452c186a 100644 --- a/src/projects/universal-reputation/index.yaml +++ b/src/projects/universal-reputation/index.yaml @@ -1,17 +1,16 @@ name: Universal Reputation categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/unova/index.yaml b/src/projects/unova/index.yaml index 163ab9ad..16fbe738 100644 --- a/src/projects/unova/index.yaml +++ b/src/projects/unova/index.yaml @@ -1,19 +1,21 @@ name: Unova categories: - - infrastructure -description: Unova is a blockchain network with privacy-enabled data distribution clusters and cross-cluster distribution capabilities, made possible by the Web3 data distribution privacy protocol and multi-layer architecture. +- 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 +have_token: false tokens: - - symbol: UON +- symbol: UON project_status: live_status: true version: Mainnet testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/utopia/index.yaml b/src/projects/utopia/index.yaml index 0d9aaaec..ad9d5faa 100644 --- a/src/projects/utopia/index.yaml +++ b/src/projects/utopia/index.yaml @@ -1,10 +1,11 @@ name: Utopia categories: - - infrastructure -description: "All-in-one kit for secure instant messaging, encrypted email, anonymous payments and private browsing" +- 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 - +have_token: false usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/valid-id/index.yaml b/src/projects/valid-id/index.yaml index e7bb658e..cff09a01 100644 --- a/src/projects/valid-id/index.yaml +++ b/src/projects/valid-id/index.yaml @@ -1,11 +1,12 @@ name: Valid.id categories: - - applications -description: "Build the root of trust for your entity in a way that is both cryptographic and legally binding" +- applications +description: Build the root of trust for your entity in a way that is both cryptographic + and legally binding links: web: https://valid3.id docs: https://valid3.id/tutorial/ -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/vault1317/index.yaml b/src/projects/vault1317/index.yaml index 9546206d..cb682f52 100644 --- a/src/projects/vault1317/index.yaml +++ b/src/projects/vault1317/index.yaml @@ -1,19 +1,21 @@ name: Vault1317 categories: - - infrastructure -description: "An Off-chain secure communication protocol with deniability via ZKP (Ring Signature)" +- infrastructure +description: An Off-chain secure communication protocol with deniability via ZKP (Ring + Signature) team: anonymous: false teammembers: - - name: Shawn Chang - role: Founder & CEO - - name: Ming Xu - role: COO - - name: cybernaut.eth - role: CTO + - name: Shawn Chang + role: Founder & CEO + - name: Ming Xu + role: COO + - name: cybernaut.eth + role: CTO links: web: https://hardenedvault.net/blog/2021-06-02-vault1317-thesis/ github: https://github.com/hardenedvault/vault1317 - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/verida/index.yaml b/src/projects/verida/index.yaml index ee86d915..540d67d5 100644 --- a/src/projects/verida/index.yaml +++ b/src/projects/verida/index.yaml @@ -1,14 +1,16 @@ name: Verida categories: - - infrastructure -description: "Verida is a multi-chain protocol for interoperable database storage and messaging built on decentralized identity where personal data is owned and controlled by users" +- 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: anonymous: false teammembers: - - name: Chris Were - role: Co-Founder & CEO - - name: Ryan Kris - role: Co-Founder & COO + - 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/ @@ -21,6 +23,7 @@ project_status: version: Mainnet testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/verusid/index.yaml b/src/projects/verusid/index.yaml index 117d17bc..8d371b61 100644 --- a/src/projects/verusid/index.yaml +++ b/src/projects/verusid/index.yaml @@ -1,25 +1,27 @@ name: VerusID categories: - - applications -description: "for self-sovereign individuals, and conscious organizations that value their data" -ecosystem: [multichain] +- applications +description: for self-sovereign individuals, and conscious organizations that value + their data +ecosystem: +- multichain links: web: https://verus.io/verusid github: https://github.com/VerusCoin 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: + anonymous: false company: link: https://verus.io/people -have_token: true +have_token: false token_link: https://coinmarketcap.com/it/currencies/veruscoin/ - usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/void-protocol/index.yaml b/src/projects/void-protocol/index.yaml index bf7b095a..4901dc9f 100644 --- a/src/projects/void-protocol/index.yaml +++ b/src/projects/void-protocol/index.yaml @@ -1,10 +1,12 @@ name: Void protocol categories: - - applications -description: "Void protocol gives users control over financial anonymity, as a non-custodial opt-in financial privacy service" +- applications +description: Void protocol gives users control over financial anonymity, as a non-custodial + opt-in financial privacy service links: web: https://protocolvoid.gitbook.io/void-protocol/ sunset: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/vult/index.yaml b/src/projects/vult/index.yaml index e1dcedfd..6ba666c0 100644 --- a/src/projects/vult/index.yaml +++ b/src/projects/vult/index.yaml @@ -1,6 +1,6 @@ name: vult categories: - - applications +- applications description: Your private cloud team: anonymous: true @@ -14,6 +14,7 @@ project_status: version: v1.14.10 testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/vup/index.yaml b/src/projects/vup/index.yaml index 1ecbf6c3..f226447d 100644 --- a/src/projects/vup/index.yaml +++ b/src/projects/vup/index.yaml @@ -1,6 +1,6 @@ name: VUP categories: - - applications +- applications description: Private and decentralized cloud storage team: anonymous: true @@ -14,6 +14,7 @@ project_status: version: v0.15.0 BETA testnet: false mainnet: true - usecases: - - storage +- storage +have_token: false +third_party_dependency: false diff --git a/src/projects/waku/index.yaml b/src/projects/waku/index.yaml index 0dd1884e..ff14fb77 100644 --- a/src/projects/waku/index.yaml +++ b/src/projects/waku/index.yaml @@ -1,12 +1,11 @@ name: Waku categories: - - applications -ecosystem: [ethereum] -description: "the communication layer for Web3. Decentralized communication that scales" - +- applications +ecosystem: +- ethereum +description: the communication layer for Web3. Decentralized communication that scales team: anonymous: false - links: web: https://waku.org github: https://github.com/waku-org @@ -15,16 +14,15 @@ links: blog: https://blog.waku.org twitter: https://x.com/waku_org discord: https://discord.waku.org - farcaster: "https://farcaster/waku" - + farcaster: https://farcaster/waku project_status: live_status: true version: The Waku Network Gen 0 testnet: true mainnet: false - traceability: kyc: false - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/wasabi-wallet/index.yaml b/src/projects/wasabi-wallet/index.yaml index 94b40592..0700b49a 100644 --- a/src/projects/wasabi-wallet/index.yaml +++ b/src/projects/wasabi-wallet/index.yaml @@ -1,13 +1,15 @@ name: Wasabi Wallet categories: - - applications +- applications description: Open-source, non-custodial Bitcoin Wallet for desktop -ecosystem: [bitcoin] +ecosystem: +- bitcoin links: web: https://wasabiwallet.io/ github: https://github.com/zkSNACKs/WalletWasabi team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/weavemail/index.yaml b/src/projects/weavemail/index.yaml index d9ff4e19..11fba1c7 100644 --- a/src/projects/weavemail/index.yaml +++ b/src/projects/weavemail/index.yaml @@ -1,9 +1,11 @@ name: Weavemail categories: - - applications -description: "The mail that cannot be lost, censored, or read by Google: Weavemail is mail that you own" +- applications +description: 'The mail that cannot be lost, censored, or read by Google: Weavemail + is mail that you own' links: web: https://docs.arweave.org/info/tools/weavemail - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/web3id/index.yaml b/src/projects/web3id/index.yaml index 3af29f03..efb71782 100644 --- a/src/projects/web3id/index.yaml +++ b/src/projects/web3id/index.yaml @@ -1,23 +1,24 @@ name: Web3ID categories: - - applications +- applications description: Privacy-preserving user verification for Web3 -ecosystem: [multichain] +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: + anonymous: false company: link: https://www.dock.io/verifiable-credentials-company -have_token: true +have_token: false token_link: https://coinmarketcap.com/it/currencies/dock/ - usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/webb/index.yaml b/src/projects/webb/index.yaml index 2c344f5f..ecc0373a 100644 --- a/src/projects/webb/index.yaml +++ b/src/projects/webb/index.yaml @@ -1,11 +1,13 @@ name: Webb -categories: [defi] -ecosystem: [tangle] -description: "an interoperable private bridge" +categories: +- defi +ecosystem: +- tangle +description: an interoperable private bridge technology: type: zk features: - - Anchor System + - Anchor System links: web: https://app.webb.tools/#/tornado github: https://github.com/webb-tools @@ -13,8 +15,11 @@ links: project_status: live_status: false beta: true + mainnet: false + testnet: false team: anonymous: true - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/whirlpool/index.yaml b/src/projects/whirlpool/index.yaml index ac8ae7ac..2562b609 100644 --- a/src/projects/whirlpool/index.yaml +++ b/src/projects/whirlpool/index.yaml @@ -1,8 +1,10 @@ name: Whirlpool categories: - - applications -description: "Break the link your coins leave behind with built-in CoinJoin available on any platform" +- applications +description: Break the link your coins leave behind with built-in CoinJoin available + on any platform sunset: true - usecases: - - mixing-service +- mixing-service +have_token: false +third_party_dependency: false diff --git a/src/projects/whonix/index.yaml b/src/projects/whonix/index.yaml index 838df2c1..1cb260e1 100644 --- a/src/projects/whonix/index.yaml +++ b/src/projects/whonix/index.yaml @@ -1,7 +1,9 @@ name: Whonix categories: - - applications -description: "Software designed to preserve privacy and anonymity by helping users run applications anonymously. Whonix™ can be installed on Windows, macOS, Linux, and Qubes" +- applications +description: "Software designed to preserve privacy and anonymity by helping users\ + \ run applications anonymously. Whonix\u2122 can be installed on Windows, macOS,\ + \ Linux, and Qubes" team: anonymous: true links: @@ -17,6 +19,7 @@ project_status: version: 17.0.4.5 testnet: false mainnet: false - usecases: - - operation-systems +- operation-systems +have_token: false +third_party_dependency: false diff --git a/src/projects/wiremin/index.yaml b/src/projects/wiremin/index.yaml index 2fb55a28..66ef9612 100644 --- a/src/projects/wiremin/index.yaml +++ b/src/projects/wiremin/index.yaml @@ -1,13 +1,13 @@ name: WireMin categories: - - applications +- applications description: A decentralized social network. links: web: https://wiremin.org/#/ - blog: https://wiremin.org/#/blog twitter: https://x.com/WireMin facebook: https://www.facebook.com/WireMinApp/ - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/wownero/index.yaml b/src/projects/wownero/index.yaml index ed70b343..cc31e462 100644 --- a/src/projects/wownero/index.yaml +++ b/src/projects/wownero/index.yaml @@ -1,21 +1,24 @@ name: Wownero categories: - - defi -description: "Privacy-respecting memecoin, no pre-mine, no dev tax, software fork of Monero with fixed supply of 184 million coins" -ecosystem: [wownero] +- defi +description: Privacy-respecting memecoin, no pre-mine, no dev tax, software fork of + Monero with fixed supply of 184 million coins +ecosystem: +- wownero product_launch_day: 01 April 2018 project_type: Memecoin technology: type: Privacy features: - - Ring Signatures (21 decoys) - - Ring Confidential Transactions (RingCT) - - Stealth Addresses - - Bulletproofs+ - - Dynamic Block Size + - Ring Signatures (21 decoys) + - Ring Confidential Transactions (RingCT) + - Stealth Addresses + - Bulletproofs+ + - Dynamic Block Size blockchain_features: p2p: true network: Dandelion++, RandomX PoW (lite variant) + opensource: false links: web: https://wownero.org github: https://git.wownero.com/wownero/wownero @@ -23,7 +26,6 @@ links: docs: https://wownerodocs.org/ forum: https://forum.wownero.com whitepapper: https://wownero.org/whitepaper.pdf - twitter: https://twitter.com/W0wn3r0 discord: https://discord.gg/ykZyAzJhDK telegram: https://t.me/wownero @@ -42,6 +44,8 @@ project_status: live_status: true version: v0.11.1.0 mainnet: true - + testnet: false usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/x-cash/index.yaml b/src/projects/x-cash/index.yaml index e52a3cc5..9bb1ef66 100644 --- a/src/projects/x-cash/index.yaml +++ b/src/projects/x-cash/index.yaml @@ -1,21 +1,24 @@ name: x-cash categories: - - defi -description: Web3’s Private Public Computing Platform -ecosystem: [xcash] +- defi +description: "Web3\u2019s Private Public Computing Platform" +ecosystem: +- xcash project_status: version: Mainnet + live_status: true + mainnet: true + testnet: false 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: false - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/xata/index.yaml b/src/projects/xata/index.yaml index c981757b..579c6b05 100644 --- a/src/projects/xata/index.yaml +++ b/src/projects/xata/index.yaml @@ -1,12 +1,15 @@ name: XATA -categories: [defi] -ecosystem: [automata] -description: "A MEV Minimization solution to survive the Dark Forest" +categories: +- 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 - usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/xmtp-x-lens/index.yaml b/src/projects/xmtp-x-lens/index.yaml index 86e5c8d3..736298b0 100644 --- a/src/projects/xmtp-x-lens/index.yaml +++ b/src/projects/xmtp-x-lens/index.yaml @@ -1,7 +1,8 @@ name: XMTP x Lens categories: - - social-and-communications -description: "Lens Protocol has adopted XMTP to provide a secure and private direct messaging layer for the entire Lens ecosystem" +- social-and-communications +description: Lens Protocol has adopted XMTP to provide a secure and private direct + messaging layer for the entire Lens ecosystem team: anonymous: true links: @@ -17,6 +18,7 @@ project_status: version: Mainnet testnet: true mainnet: true - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/xx-messenger/index.yaml b/src/projects/xx-messenger/index.yaml index 175163ce..c33d5776 100644 --- a/src/projects/xx-messenger/index.yaml +++ b/src/projects/xx-messenger/index.yaml @@ -1,7 +1,8 @@ name: xx messenger categories: - - social-and-communications -description: "An ultra-private messaging app, powered by the quantum-resistant and decentralized xx network" +- social-and-communications +description: An ultra-private messaging app, powered by the quantum-resistant and + decentralized xx network team: anonymous: false links: @@ -18,6 +19,7 @@ project_status: version: Mainnet testnet: true mainnet: true - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/xx-network/index.yaml b/src/projects/xx-network/index.yaml index ce56339a..ceea0da3 100644 --- a/src/projects/xx-network/index.yaml +++ b/src/projects/xx-network/index.yaml @@ -1,6 +1,6 @@ name: XX network categories: - - infrastructure +- infrastructure description: The first and only quantum-resistant and privacy-focused blockchain ecosystem links: web: https://xx.network @@ -8,14 +8,14 @@ links: whitepaper: https://xx.network/whitepapers/ docs: https://blockchainapi.xx.network/ twitter: https://twitter.com/xx_network -have_token: true +have_token: false tokens: - - symbol: XX +- symbol: XX project_status: live_status: true version: Mainnet testnet: true mainnet: true - usecases: - - infrastructure +- infrastructure +third_party_dependency: false diff --git a/src/projects/yellow-submarine/index.yaml b/src/projects/yellow-submarine/index.yaml index 62b41966..38d589f4 100644 --- a/src/projects/yellow-submarine/index.yaml +++ b/src/projects/yellow-submarine/index.yaml @@ -1,5 +1,7 @@ name: Yellow Submarine -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/ywallet/index.yaml b/src/projects/ywallet/index.yaml index 8bcdbce8..1cd9f5e4 100644 --- a/src/projects/ywallet/index.yaml +++ b/src/projects/ywallet/index.yaml @@ -1,12 +1,15 @@ name: YWallet categories: - - applications +- applications description: YWallet is a privacy-oriented wallet and messenger for Ycash and Zcash. -ecosystem: [ycash, zcash] +ecosystem: +- ycash +- zcash links: web: https://ywallet.app/ team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/zano/index.yaml b/src/projects/zano/index.yaml index d882421f..d47c5546 100644 --- a/src/projects/zano/index.yaml +++ b/src/projects/zano/index.yaml @@ -1,8 +1,9 @@ name: Zano categories: - - defi +- defi description: A scalable and secure coin, with confidential assets support -ecosystem: [zano] +ecosystem: +- zano project_status: live_status: true version: Mainnet @@ -13,13 +14,13 @@ links: 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/zcash/index.yaml b/src/projects/zcash/index.yaml index fb344bd6..e7ac277b 100644 --- a/src/projects/zcash/index.yaml +++ b/src/projects/zcash/index.yaml @@ -1,12 +1,14 @@ name: Zcash -categories: [defi] -description: "A simple, secure digital currency that protects your privacy. For everyday purchases, sending money to a friend, and your favorite crypto applications, too." +categories: +- defi +description: A simple, secure digital currency that protects your privacy. For everyday + purchases, sending money to a friend, and your favorite crypto applications, too. project_type: transaction technology: type: halo2 zk-SNARK features: - - private - - trustless proof system + - private + - trustless proof system links: web: https://z.cash/ twitter: https://twitter.com/zcash @@ -20,7 +22,6 @@ blockchain_features: p2p: true encryption: zksnark network: Zcash - opensource: true viewing_key: true dissapearing_tx: false @@ -30,52 +31,50 @@ blockchain_features: revealed_recipient: false revealed_sender: false revealed_ammount: false - reversability_condition: viewing key, 51% attack (rollback limit = 100 blocks), payment disclosure + 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 - storage: decentralized: true - 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 +- 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 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/ +- 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 +- name: Zebra + link: https://zfnd.org/zebra/ +- name: zcashd + link: https://github.com/Zcash/zcash default_privacy: true funding: name: DCG type: Investments - link: "https://zfnd.org/zebra/" - value: "" - time: "2024-09-15" - + link: https://zfnd.org/zebra/ + value: '' + time: '2024-09-15' project_status: live_status: true - version: "Mainnet" + version: Mainnet testnet: false mainnet: true - usecases: - - currency +- currency +have_token: false diff --git a/src/projects/zcloak/index.yaml b/src/projects/zcloak/index.yaml index 4bc033ef..7cc85a6e 100644 --- a/src/projects/zcloak/index.yaml +++ b/src/projects/zcloak/index.yaml @@ -1,16 +1,15 @@ name: zCloak categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/zeal/index.yaml b/src/projects/zeal/index.yaml index 27198e92..4062e3ef 100644 --- a/src/projects/zeal/index.yaml +++ b/src/projects/zeal/index.yaml @@ -1,12 +1,14 @@ name: Zeal categories: - - applications +- applications description: The web3 wallet that defends your crypto and privacy -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://www.zeal.app/ team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/zecrey-wallet/index.yaml b/src/projects/zecrey-wallet/index.yaml index d02c94f2..0458e3a3 100644 --- a/src/projects/zecrey-wallet/index.yaml +++ b/src/projects/zecrey-wallet/index.yaml @@ -1,13 +1,17 @@ name: Zecrey Wallet categories: - - applications -description: "a portal to the new & open Internet. Zecrey is an all-in-one wallet that not only provides a multi-chain layer-1 wallet but also a private cross-chain layer-2 wallet" -ecosystem: [multichain] +- applications +description: a portal to the new & open Internet. Zecrey is an all-in-one wallet that + not only provides a multi-chain layer-1 wallet but also a private cross-chain layer-2 + wallet +ecosystem: +- multichain links: web: https://www.zecrey.com/ github: https://github.com/Zecrey-Labs team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/zecrey/index.yaml b/src/projects/zecrey/index.yaml index aaa7edc0..cc967cb3 100644 --- a/src/projects/zecrey/index.yaml +++ b/src/projects/zecrey/index.yaml @@ -1,8 +1,9 @@ name: Zecrey categories: - - infrastructure +- infrastructure description: zkRollup basedLayer 2 protocol featuring privacy and scalability -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://www.zecrey.com github: https://github.com/Zecrey-Labs @@ -10,9 +11,9 @@ links: blog: https://zecrey.medium.com/ twitter: https://x.com/ZecreyLabs discord: https://discord.com/invite/MdajwkVZE4 - team: anonymous: true - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/zengo/index.yaml b/src/projects/zengo/index.yaml index 1c5b1158..87f2a87b 100644 --- a/src/projects/zengo/index.yaml +++ b/src/projects/zengo/index.yaml @@ -1,13 +1,16 @@ name: ZenGo categories: - - applications -description: "The only self-custodial wallet with no seed phrase vulnerability (shielded transactions)" -ecosystem: [multichain] +- applications +description: The only self-custodial wallet with no seed phrase vulnerability (shielded + transactions) +ecosystem: +- multichain links: web: https://zengo.com/ github: https://github.com/ZenGo-X team: anonymous: false - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/zephyr-protocol/index.yaml b/src/projects/zephyr-protocol/index.yaml index fab5ddd1..304b04c1 100644 --- a/src/projects/zephyr-protocol/index.yaml +++ b/src/projects/zephyr-protocol/index.yaml @@ -1,8 +1,9 @@ name: Zephyr Protocol categories: - - defi -description: "The Untraceable Stablecoin Protocol" -ecosystem: [zephyr] +- defi +description: The Untraceable Stablecoin Protocol +ecosystem: +- zephyr links: web: https://zephyrprotocol.com/ github: https://github.com/monero-ecosystem @@ -17,10 +18,11 @@ team: technology: type: Monero features: - - Bulletproofs - - Ring signatures + - Bulletproofs + - Ring signatures blockchain_features: p2p: true + opensource: false encryption: Cryptonote data_masking: Ring signature viewing_key: true @@ -32,15 +34,15 @@ blockchain_features: default_privacy: true storage: decentralized: true - project_status: live_status: true testnet: false mainnet: true audits: - - name: Cyberscope - link: https://www.cyberscope.io/audits/coin-zephyr-protocol - time: Apr. 2024 - +- name: Cyberscope + link: https://www.cyberscope.io/audits/coin-zephyr-protocol + time: Apr. 2024 usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/zero-knowledge-verifiable-credential/index.yaml b/src/projects/zero-knowledge-verifiable-credential/index.yaml index cb8d41d9..c81a423b 100644 --- a/src/projects/zero-knowledge-verifiable-credential/index.yaml +++ b/src/projects/zero-knowledge-verifiable-credential/index.yaml @@ -1,10 +1,11 @@ name: Zero Knowledge Verifiable Credential categories: - - applications -description: "Sketching out verifiable credential selective disclosure presentation on Mina with snarky.js" +- applications +description: Sketching out verifiable credential selective disclosure presentation + on Mina with snarky.js links: web: https://github.com/mono-koto/zkcred -have_token: true - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/zero/index.yaml b/src/projects/zero/index.yaml index f152191d..f0c1a833 100644 --- a/src/projects/zero/index.yaml +++ b/src/projects/zero/index.yaml @@ -1,18 +1,18 @@ name: Zero categories: - - defi +- defi 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 - usecases: - - currency +- currency +have_token: false +third_party_dependency: false diff --git a/src/projects/zerochain/index.yaml b/src/projects/zerochain/index.yaml index 580aa2a3..15164918 100644 --- a/src/projects/zerochain/index.yaml +++ b/src/projects/zerochain/index.yaml @@ -1,9 +1,10 @@ name: Zerochain categories: - - applications +- applications description: Zerochain is a generic, privacy-protecting layer on top of Substrate. links: web: https://layerxcom.github.io/zerochain-book/ - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/zeronet/index.yaml b/src/projects/zeronet/index.yaml index dfc4e1a2..3d1acbd3 100644 --- a/src/projects/zeronet/index.yaml +++ b/src/projects/zeronet/index.yaml @@ -1,10 +1,12 @@ name: ZeroNet categories: - - infrastructure -description: "Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network" +- infrastructure +description: Open, free and uncensorable websites, using Bitcoin cryptography and + BitTorrent network links: web: https://zeronet.io github: https://github.com/HelloZeroNet/ZeroNet - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/zeropool/index.yaml b/src/projects/zeropool/index.yaml index d83ff134..108b24de 100644 --- a/src/projects/zeropool/index.yaml +++ b/src/projects/zeropool/index.yaml @@ -1,7 +1,8 @@ name: ZeroPool categories: - - infrastructure -description: "Is fully private multi-blockchain solution. Low transaction fees, atomic swaps and common anonymity set" +- infrastructure +description: Is fully private multi-blockchain solution. Low transaction fees, atomic + swaps and common anonymity set team: anonymous: true links: @@ -15,6 +16,7 @@ project_status: version: Testnet testnet: true mainnet: false - usecases: - - infrastructure +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/zion/index.yaml b/src/projects/zion/index.yaml index 5add4616..0579d30a 100644 --- a/src/projects/zion/index.yaml +++ b/src/projects/zion/index.yaml @@ -1,7 +1,8 @@ name: Zion categories: - - applications -description: The Zion app is a peer-governed social network where members are the true owners of their data with BTC lightning integration. +- applications +description: The Zion app is a peer-governed social network where members are the + true owners of their data with BTC lightning integration. team: anonymous: true links: @@ -12,6 +13,7 @@ links: blog: https://medium.com/@zion-fyi twitter: https://twitter.com/get_Zion telegram: https://t.me/getZION - usecases: - - messaging +- messaging +have_token: false +third_party_dependency: false diff --git a/src/projects/zk-kit/index.yaml b/src/projects/zk-kit/index.yaml index 3ee4fe5b..e4a29438 100644 --- a/src/projects/zk-kit/index.yaml +++ b/src/projects/zk-kit/index.yaml @@ -1,8 +1,11 @@ name: zk-kit -categories: ["infrastructure"] -description: "A set of reusable libraries for zero-knowledge technologies." +categories: +- infrastructure +description: A set of reusable libraries for zero-knowledge technologies. project_status: live_status: true + mainnet: false + testnet: false team: anonymous: true links: @@ -10,6 +13,9 @@ links: web: https://zkkit.pse.dev/ technology: type: javascript, circom, solidity, noir - features: [""] - -usecases: [infrastructure] + features: + - '' +usecases: +- infrastructure +have_token: false +third_party_dependency: false diff --git a/src/projects/zkchaos/index.yaml b/src/projects/zkchaos/index.yaml index c12de315..0fd8cbe1 100644 --- a/src/projects/zkchaos/index.yaml +++ b/src/projects/zkchaos/index.yaml @@ -1,14 +1,17 @@ name: ZKCHAOS categories: - - infrastructure -description: "ZKCHAOS is a layer2-based anonymous transaction protocol, and a fair game platform, which is built to enhance privacy for all kinds of cryptocurrency" -ecosystem: [tbd] +- infrastructure +description: ZKCHAOS is a layer2-based anonymous transaction protocol, and a fair + game platform, which is built to enhance privacy for all kinds of cryptocurrency +ecosystem: +- tbd links: web: https://www.zkchaos.com github: https://github.com/zkchaos blog: https://zkchaos.medium.com/ twitter: https://x.com/zkchaos2020 telegram: https://t.me/zkchaos - usecases: - - eth-layer-2 +- eth-layer-2 +have_token: false +third_party_dependency: false diff --git a/src/projects/zkcloud/index.yaml b/src/projects/zkcloud/index.yaml index 09ba89ed..1230339e 100644 --- a/src/projects/zkcloud/index.yaml +++ b/src/projects/zkcloud/index.yaml @@ -1,14 +1,16 @@ name: ZkCloud categories: - - infrastructure +- infrastructure description: Decentralized, Private Computing. -ecosystem: [aleo] +ecosystem: +- aleo links: web: https://aleo.academy/ecosystem/aleo-toolkit/zkcloud/ team: anonymous: false company: link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2242785598%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=6tr - usecases: - - computing +- computing +have_token: false +third_party_dependency: false diff --git a/src/projects/zkmaps/index.yaml b/src/projects/zkmaps/index.yaml index 499d9005..2ee30826 100644 --- a/src/projects/zkmaps/index.yaml +++ b/src/projects/zkmaps/index.yaml @@ -1,10 +1,11 @@ name: ZkMaps categories: - - applications +- applications description: Protecting users location with ZK proofs links: web: https://gitcoin.co/grants/5781/zkmaps-proof-of-location github: https://github.com/zkMaps - usecases: - - dapps +- dapps +have_token: false +third_party_dependency: false diff --git a/src/projects/zkmoney/index.yaml b/src/projects/zkmoney/index.yaml index 4f870346..e5f99ce4 100644 --- a/src/projects/zkmoney/index.yaml +++ b/src/projects/zkmoney/index.yaml @@ -1,5 +1,7 @@ name: zk.money -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/zkpass/index.yaml b/src/projects/zkpass/index.yaml index 8c7edb45..8fbd026c 100644 --- a/src/projects/zkpass/index.yaml +++ b/src/projects/zkpass/index.yaml @@ -1,17 +1,16 @@ name: zkPass categories: - - applications +- applications 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 - +have_token: false usecases: - - did +- did +third_party_dependency: false diff --git a/src/projects/zkusd/index.yaml b/src/projects/zkusd/index.yaml index a7aee2eb..c216087e 100644 --- a/src/projects/zkusd/index.yaml +++ b/src/projects/zkusd/index.yaml @@ -1,5 +1,7 @@ name: zkUSD -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/zkvalidator/index.yaml b/src/projects/zkvalidator/index.yaml index 7c216c2c..8ef1c2f0 100644 --- a/src/projects/zkvalidator/index.yaml +++ b/src/projects/zkvalidator/index.yaml @@ -1,5 +1,7 @@ name: ZKValidator -categories: [defi] - +categories: +- defi usecases: - - defi +- defi +have_token: false +third_party_dependency: false diff --git a/src/projects/zoci/index.yaml b/src/projects/zoci/index.yaml index ccd9d106..5e57e6ad 100644 --- a/src/projects/zoci/index.yaml +++ b/src/projects/zoci/index.yaml @@ -1,6 +1,6 @@ name: Zoci categories: - - infrastructure +- infrastructure description: Private RPC services links: web: https://zoci.io @@ -9,13 +9,13 @@ links: twitter: https://x.com/Zoci_io discord: https://discord.com/invite/vv3HXAVmMq telegram: https://t.me/zoci_io -have_token: true +have_token: false token_link: https://arbiscan.io/token/0x45d780CfE839b8a8f292C9E26aa5D1805bc536dc tokens: - - name: ZociToken - symbol: ZOCI - network: Arbitrum - contract_address: "0x45d780cfe839b8a8f292c9e26aa5d1805bc536dc" - +- name: ZociToken + symbol: ZOCI + network: Arbitrum + contract_address: '0x45d780cfe839b8a8f292c9e26aa5d1805bc536dc' usecases: - - rpc-provider +- rpc-provider +third_party_dependency: false diff --git a/src/projects/zoker/index.yaml b/src/projects/zoker/index.yaml index 43424786..e34ad32b 100644 --- a/src/projects/zoker/index.yaml +++ b/src/projects/zoker/index.yaml @@ -1,13 +1,15 @@ name: Zoker categories: - - applications +- applications description: The foremost ZK-based Wallet in Web3 -ecosystem: [multichain] +ecosystem: +- multichain links: web: https://zoker.tech/ docs: https://zoker.tech/wp.pdf team: anonymous: true - usecases: - - wallets +- wallets +have_token: false +third_party_dependency: false diff --git a/src/projects/zus/index.yaml b/src/projects/zus/index.yaml index 44bf62a8..b1657ac6 100644 --- a/src/projects/zus/index.yaml +++ b/src/projects/zus/index.yaml @@ -1,7 +1,7 @@ -name: Züs +name: "Z\xFCs" categories: - - applications -description: "A high-performance storage network powering limitless applications" +- applications +description: A high-performance storage network powering limitless applications team: anonymous: true links: @@ -19,13 +19,13 @@ project_status: version: Mainnet testnet: false mainnet: true -have_token: true +have_token: false token_link: https://etherscan.io/token/0xb9ef770b6a5e12e45983c5d80545258aa38f3b78 tokens: - - name: ZCN Token - symbol: ZCN - network: Ethereum - contract_address: "0xb9ef770b6a5e12e45983c5d80545258aa38f3b78" - +- name: ZCN Token + symbol: ZCN + network: Ethereum + contract_address: '0xb9ef770b6a5e12e45983c5d80545258aa38f3b78' usecases: - - storage +- storage +third_party_dependency: false