Merge pull request #776 from web3privacy/pb/fix-tests

Pb/fix tests
This commit is contained in:
DanielKlein 2024-09-19 16:34:34 +02:00 committed by GitHub
commit c6783076ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
501 changed files with 2988 additions and 1678 deletions

View file

@ -10,7 +10,7 @@ properties:
title: ID
description: |
Unique project identifier
pattern: '^[a-z0-9-]+$'
pattern: "^[a-z0-9-]+$"
#PROJECT DESCRIPTION -------------------------------------------------------------
name:
type: string
@ -18,17 +18,17 @@ properties:
type: array
items:
type: string
pattern: '^[a-z0-9-]+$'
pattern: "^[a-z0-9-]+$"
assets_used:
type: array
items:
type: string
pattern: '^[A-Z0-9-]+$'
pattern: "^[A-Z0-9-]+$"
ecosystem:
type: array
items:
type: string
pattern: '^[a-z0-9-]+$'
pattern: "^[a-z0-9-]+$"
project_type:
type: string
description:
@ -215,7 +215,7 @@ properties:
type: string
link:
type: string
format: uli
format: uri
p2p:
type: boolean
data_masking:
@ -273,13 +273,16 @@ properties:
type: boolean
sign_in_type_requirments:
type: string
required:
- kyc
compliance:
anyOf: [{type: boolean}, {type: string}]
anyOf: [{ type: boolean }, { type: string }]
storage:
type: object
properties:
decentralized:
type: boolean
# SECURITY ---------------------------------------------------------------------
third_party_dependency:
type: boolean
@ -320,4 +323,4 @@ properties:
type: array
items:
type: string
pattern: '^[a-z0-9-]+$'
pattern: "^[a-z0-9-]+$"

64
script.py Normal file
View file

@ -0,0 +1,64 @@
import yaml
import os
# Funkce pro načtení YAML souboru
def load_yaml(file_path):
with open(file_path, 'r', encoding='utf-8') as file:
return yaml.safe_load(file)
# Funkce pro zápis YAML souboru
def save_yaml(file_path, data):
with open(file_path, 'w', encoding='utf-8') as file:
yaml.dump(data, file, allow_unicode=True)
# Funkce pro odstranění všeho kromě 'usecase'
def keep_only_usecase(file_path):
try:
# Načti YAML soubor
data = load_yaml(file_path)
# Ponechej jen klíč 'usecase', pokud existuje
if 'usecase' in data:
filtered_data = {'usecase': data['usecase']}
else:
filtered_data = {}
# Ulož upravený soubor zpět
save_yaml(file_path, filtered_data)
return True
except Exception as e:
print(f"Chyba při zpracování souboru {file_path}: {e}")
return False
# Funkce pro procházení složek a zpracování souborů index.yaml
def process_yaml_projects(projects_dir):
total_files = 0
processed_files = 0
for project in os.listdir(projects_dir):
project_path = os.path.join(projects_dir, project)
index_file_path = os.path.join(project_path, 'index.yaml')
# Ověř, že cesta je složka a obsahuje soubor 'index.yaml'
if os.path.isdir(project_path):
total_files += 1
if os.path.isfile(index_file_path):
success = keep_only_usecase(index_file_path)
if success:
print(f"Zpracováno: {index_file_path}")
processed_files += 1
else:
print(f"Nelze zpracovat: {index_file_path}")
else:
print(f"Složka {project_path} neobsahuje soubor 'index.yaml'")
print(f"Celkový počet složek: {total_files}")
print(f"Úspěšně zpracovaných souborů: {processed_files}")
print(f"Nepřepsaných složek (bez 'index.yaml' nebo s chybou): {total_files - processed_files}")
# Použití
# Zde nastav složku, kde jsou tvé projekty (src/projects)
projects_dir = "src/projects"
# Spusť zpracování
process_yaml_projects(projects_dir)

View file

@ -1,8 +1,11 @@
name: 01 Labs
categories: [ rd ]
description: 'Catalyzing a new generation of applications powered by zero knowledge cryptography.'
categories: [applications]
description: "Catalyzing a new generation of applications powered by zero knowledge cryptography."
links:
web: https://o1labs.org
github: https://github.com/o1-labs
blog: https://www.o1labs.org/blog
twitter: https://x.com/o1_labs
usecases:
- research-and-development

View file

@ -1,5 +1,8 @@
name: 0xTIP
categories: [ mixing-service ]
description: '0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers.'
categories: [applications]
description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers."
links:
web: https://0xmonero.com/mixer
usecases:
- mixing-service

View file

@ -1,8 +1,11 @@
name: '1984'
categories: [ infrastructure ]
description: 'High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero.'
name: "1984"
categories: [infrastructure]
description: "High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero."
team:
anonymous: true
links:
web: https://1984.hosting/
docs: https://kb.1984hosting.com/doku.php?id=start
usecases:
- infrastructure

View file

@ -1,7 +1,10 @@
name: 1RPC
categories: [ rpc ]
description: 'The Web3 Private RPC Relay'
categories: [infrastructure]
description: "The Web3 Private RPC Relay"
links:
web: https://www.1rpc.io
docs: https://docs.ata.network/1rpc/introduction/
twitter: https://x.com/1rpc_
usecases:
- rpc-provider

View file

@ -1,6 +1,9 @@
name: 2FA Guru
categories: [ dapps ]
description: 'A simple solution to interact with DApps by enforcing an additional signature check before each transaction'
categories: [applications]
description: "A simple solution to interact with DApps by enforcing an additional signature check before each transaction"
links:
web: https://www.2fa.guru
github: https://github.com/skiff-org/skiff-mail
usecases:
- dapps

View file

@ -1,6 +1,7 @@
id: aioz-network
name: Aioz network
categories: [ AI ]
description: 'DePIN for Web3 AI, Storage & Streaming'
categories: [applications]
description: "DePIN for Web3 AI, Storage & Streaming"
links:
web: https://aioz.network/
block_explorer: https://t.me/aioznetwork
@ -8,3 +9,6 @@ links:
blog: https://aioz.network/blog
twitter: https://x.com/AIOZNetwork
telegram: https://t.me/aioznetwork
usecases:
- ai

View file

@ -1,6 +1,7 @@
id: adamant
name: Adamant
categories: [ messaging ]
description: 'Decentralized anonymous blockchain Messenger & crypto Wallet'
categories: [social-and-communications]
description: "Decentralized anonymous blockchain Messenger & crypto Wallet"
team:
anonymous: true
@ -27,3 +28,5 @@ tokens:
symbol: $ADM
network: Ethereum
usecases:
- messaging

View file

@ -1,7 +1,12 @@
id: anon-club
name: AnonKlub
categories: [ DID ]
description: 'AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership.'
project_status: testnet
categories: [applications]
description: "AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership."
project_status:
live_status: false
version: testnet
testnet: true
mainnet: false
team:
anonymous: true
links:
@ -10,3 +15,7 @@ links:
github: https://github.com/anonklub/anonklub
technology:
type: circom, snarkjs, halo2
features: ["zkp"]
usecases:
- did

View file

@ -1,6 +1,7 @@
name: 'Arcium'
categories: [ FHE ]
description: 'The first parallelized confidential computing network'
id: arcium
name: "Arcium"
categories: [infrastructure]
description: "The first parallelized confidential computing network"
links:
web: https://arcium.com/
github: https://github.com/elusiv-privacy

View file

@ -1,7 +1,9 @@
id: bandada
name: Bandada
categories: [ DID ]
description: 'An open-source system for managing privacy-preserving groups of anonymous individuals.'
project_status: testnet
categories: [applications]
description: "An open-source system for managing privacy-preserving groups of anonymous individuals."
project_status:
version: "testnet"
team:
anonymous: true
links:
@ -9,3 +11,6 @@ links:
docs: https://docs.bandada.pse.dev/
github: https://github.com/bandada-infra/bandada
type: semaphore, zk-kit
usecases:
- did

View file

@ -1,7 +1,8 @@
id: blockblend
name: BlockBlend
categories: [ bridge ]
ecosystem: [ Ethereum, Polygon, Base, Bnb, Solana ]
description: 'Privacy Cross-Chain Decentralized Services'
categories: [applications]
ecosystem: [ethereum, polygon, base, bnb, solana]
description: "Privacy Cross-Chain Decentralized Services"
team:
anonymous: false
@ -30,3 +31,6 @@ tokens:
symbol: $BBL
network: Ethereum
contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124"
usecases:
- bridge

View file

@ -1,6 +1,7 @@
id: broearn
name: Broearn
categories: [ browser ]
description: 'Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser'
categories: [applications]
description: "Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser"
team:
anonymous: true
@ -19,3 +20,6 @@ project_status:
mainnet: true
have_token: false
usecases:
- browser

View file

@ -1,7 +1,8 @@
id: chainport
name: ChainPort
categories: [ bridge ]
ecosystem: [ Ethereum, Arbitrum, Optimism, Base, Bnb, Fantom, Polygon, Avalanche ]
description: 'next-gen custodian secure bridge'
categories: [infrastructure]
ecosystem: [ethereum, arbitrum, optimism, base, bnb, fantom, polygon, avalanche]
description: "next-gen custodian secure bridge"
team:
anonymous: false
@ -30,3 +31,6 @@ tokens:
symbol: $PORTX
network: Ethereum
contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac"
usecases:
- bridge

View file

@ -1,9 +1,8 @@
id: chainback
name: Chainback
categories: [ storage ]
ecosystem: [ Ethereum, Solana, Bsc, Polygon]
usecases: [storage, cloud ]
description: 'Ultimate Cloud Computing & File Storage'
product_lunch_day: "2022-12"
categories: [applications]
ecosystem: [ethereum, solana, bsc, polygon]
description: "Ultimate Cloud Computing & File Storage"
team:
anonymous: true
@ -17,7 +16,6 @@ links:
twitter: https://x.com/ChainbackWeb3
telegram: https://t.me/chainback_archive
project_phase: Alpha
sunset: false
tokens:
@ -34,8 +32,6 @@ funding:
blockchain_features:
opensource: false
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
@ -52,3 +48,5 @@ compliance: false
storage:
decentralized: true
usecases:
- storage

View file

@ -1,6 +1,7 @@
id: cloak-ai
name: Cloak Ai
categories: [ AI ]
description: 'The purpose-built Web3 GenAI engine for the privacy conscious individual or business'
categories: [applications]
description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business"
links:
web: https://www.cloakai.xyz/
twitter: https://x.com/Cloak_xyz
@ -13,3 +14,5 @@ tokens:
network: Ethereum
contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da"
sunset: false
usecases: [ai]

View file

@ -1,9 +1,10 @@
id: codex
name: Codex
categories:
- Storage
- applications
ecosystem:
- Ethereum
description: 'Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship.'
- ethereum
description: "Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship."
team:
anonymous: false
@ -16,7 +17,7 @@ links:
blog: https://blog.codex.storage
twitter: https://x.com/codex_storage
discord: https://discord.com/invite/codex-storage
farcaster: "@codexstorage"
farcaster: "https://farcaster/@codexstorage"
project_status:
live_status: true
@ -24,7 +25,8 @@ project_status:
testnet: false
mainnet: false
licenses: Apache 2.0 and MIT
traceability:
kyc: false
usecases:
- storage

View file

@ -1,6 +1,7 @@
id: coti
name: Coti
categories: [ layer-2 ]
description: 'EVM L2 solving blockchain privacy with Garbled Circuits'
categories: [infrastructure]
description: "EVM L2 solving blockchain privacy with Garbled Circuits"
team:
anonymous: false
@ -35,3 +36,6 @@ tokens:
symbol: $COTI
network: Ethereum
contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5"
usecases:
- eth-layer-2

View file

@ -1,6 +1,7 @@
name: 'Cursive'
categories: [ FHE ]
description: 'A cryptography lab focused on human-first applications of signed data.'
id: cursive
name: "Cursive"
categories: [applications]
description: "A cryptography lab focused on human-first applications of signed data."
links:
web: https://www.cursive.team/
github: https://github.com/cursive-team

View file

@ -1,6 +1,7 @@
id: dechat
name: DeChat
categories: [ messaging ]
description: 'open and secure web3 communications protocol that powers decentralized user interactions'
categories: [social-and-communications]
description: "open and secure web3 communications protocol that powers decentralized user interactions"
team:
anonymous: false
@ -35,3 +36,6 @@ tokens:
symbol: $DeChat
network: BSC
contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519"
usecases:
- messaging

View file

@ -1,6 +1,7 @@
id: deguard
name: DeGuard
categories: [ VPN ]
description: 'Provide utimate privacy based on web3'
categories: [applications]
description: "Provide utimate privacy based on web3"
team:
anonymous: false
@ -23,3 +24,6 @@ project_status:
mainnet: true
have_token: false
usecases:
- vpn

View file

@ -1,9 +1,8 @@
id: denet
name: DeNet
categories: [ storage ]
ecosystem: [ Polygon ]
usecases: [storage, Depin ]
description: 'Decentralized Storage Protocol for Web3 services '
product_lunch_day: "2017"
categories: [applications]
ecosystem: [polygon]
description: "Decentralized Storage Protocol for Web3 services "
team:
anonymous: false
@ -22,7 +21,6 @@ links:
telegram: https://t.me/denetnews
discord: https://discord.com/invite/PSnjPCq4x5
project_phase: Mainet
sunset: false
tokens:
@ -32,12 +30,9 @@ tokens:
contract_address: "0x081ec4c0e30159c8259bad8f4887f83010a681dc"
token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: false
@ -52,6 +47,5 @@ compliance: false
storage:
decentralized: true
usecases:
- storage

View file

@ -1,9 +1,8 @@
id: ergo-platform
name: Ergo Platform
categories: [ infrastructure ]
ecosystem: [ Ergo, Btc ]
usecases: [ wallet, mining, mixer ]
description: 'Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools'
product_lunch_day: "2017"
categories: [infrastructure]
ecosystem: [ergo, btc]
description: "Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools"
team:
anonymous: false
@ -24,7 +23,6 @@ links:
telegram: https://t.me/Ergo_Chats
discord: https://discord.com/invite/ergo-platform-668903786361651200
project_phase: Testnet
sunset: false
tokens:
@ -36,9 +34,6 @@ tokens:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
link: https://ergoplatform.org/en/privacy-policy/
@ -56,7 +51,5 @@ audits:
link: https://www.aumasson.jp/
time: 2019-12
tecnology:
type: vpn, mixer
usecases:
- infrastructure

View file

@ -1,6 +1,7 @@
id: exabits
name: Exabits
categories: [ AI ]
description: 'Simplified Access to the Currency of the Future '
categories: [applications]
description: "Simplified Access to the Currency of the Future "
team:
anonymous: true
links:
@ -12,3 +13,5 @@ links:
telegram: https://t.me/+D0CulDl9udZjMWIx
have_token: false
sunset: false
usecases: [ai]

View file

@ -1,6 +1,7 @@
name: 'FairMath'
categories: [ FHE ]
description: 'Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)'
id: fairmath
name: "FairMath"
categories: [applications]
description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)"
links:
web: https://fairmath.xyz/
github: https://github.com/fairmath

View file

@ -1,6 +1,7 @@
name: 'Fhenix'
categories: [ FHE ]
description: 'Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality.'
id: fhenix
name: "Fhenix"
categories: [applications]
description: "Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality."
links:
web: https://www.fhenix.io/
github: https://github.com/FhenixProtocol

View file

@ -1,9 +1,8 @@
id: humanode
name: Humanode
categories: [ did]
ecosystem: [ Polkadot ]
usecases: [ biometrically verified nodes ]
description: '1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web'
product_lunch_day: "2020"
categories: [applications]
ecosystem: [polkadot]
description: "1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web"
team:
anonymous: false
teammembers:
@ -27,7 +26,6 @@ links:
telegram: https://t.me/humanode
discord: https://discord.com/invite/8my5gbgptx
project_phase: Mainnet
sunset: false
tokens:
@ -39,8 +37,6 @@ tokens:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: false
@ -55,8 +51,7 @@ compliance: false
audits:
- name: Certik
link: https://skynet.certik.com/projects/humanode
time: 2023-01-30
tecnology:
type: ZKP
time: "2023-01-30"
usecases:
- did

View file

@ -1,6 +1,7 @@
id: ivpn
name: IVPN
categories: [ VPN ]
description: 'Audited, privacy focused VPN service.'
categories: [applications]
description: "Audited, privacy focused VPN service."
team:
anonymous: false
@ -40,3 +41,6 @@ project_status:
mainnet: true
have_token: false
usecases:
- vpn

View file

@ -1,6 +1,7 @@
name: 'Inco'
categories: [ FHE ]
description: 'Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains '
id: inco
name: "Inco"
categories: [infrastructure]
description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains "
team:
anonymous: false
links:

View file

@ -1,9 +1,10 @@
id: intmax
name: Intmax
categories:
- layer-2
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
@ -28,3 +29,6 @@ project_status:
mainnet: false
have_token: false
usecases:
- eth-layer-2

View file

@ -1,6 +1,7 @@
id: kinto
name: Kinto
categories: [ Layer-2 ]
description: 'The safety-first L2 for Finance'
categories: [infrastructure]
description: "The safety-first L2 for Finance"
team:
anonymous: false
@ -32,3 +33,6 @@ tokens:
symbol: $KINTO
network: Kinto
contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87"
usecases:
- eth-layer-2

View file

@ -1,9 +1,8 @@
id: mailchain
name: Mailchain
categories: [ dapps ]
ecosystem: [ Ethereum ]
usecases: [ mail ]
description: 'Web3 communication layer & web3 email for everyone'
product_lunch_day: "2019"
categories: [applications]
ecosystem: [ethereum]
description: "Web3 communication layer & web3 email for everyone"
team:
anonymous: false
@ -41,14 +40,11 @@ links:
lens: https://hey.xyz/u/mailchain
farcaster: https://warpcast.com/mailchain
project_phase: Mainnet
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
@ -62,3 +58,5 @@ traceability:
third_party_dependency: false
compliance: false
usecases:
- dapps

View file

@ -1,9 +1,8 @@
id: media-network
name: Media Network
categories: [ computing-network ]
ecosystem: [ Ethereum, Solana, Base, Bnb, Optimist ]
usecases: [ cloud, DePin]
description: 'The Web3 replacement for AWS and Google Cloud'
product_lunch_day: "2021"
categories: [infrastructure]
ecosystem: [ethereum, solana, base, bnb, optimist]
description: "The Web3 replacement for AWS and Google Cloud"
team:
anonymous: true
@ -17,7 +16,6 @@ links:
telegram: https://t.me/Media_FDN
discord: https://discord.com/invite/nyCS7ePWzf
project_phase: Beta Mainet
sunset: false
tokens:
@ -30,8 +28,6 @@ tokens:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: false
@ -42,3 +38,6 @@ traceability:
kyc: false
third_party_dependency: false
compliance: false
usecases:
- computing

View file

@ -1,11 +0,0 @@
name: 'MindNetwork'
categories: [ FHE ]
description: 'An FHE Restaking Layer for PoS and AI Networks '
links:
web: https://www.mindnetwork.xyz/
github: https://github.com/mind-network
docs: https://docs.mindnetwork.xyz/minddocs
blog: https://mindnetwork.medium.com/
twitter: https://x.com/mindnetwork_xyz
discord: https://discord.com/invite/UYj94MJdGJ
telegram: https://t.me/MindNetwork_xyz

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

View file

@ -1,6 +1,7 @@
id: nata-network
name: Nata network
categories: [ bridge ]
description: 'Nata Network is your portal to private cross-chain transactions.'
categories: [infrastructure]
description: "Nata Network is your portal to private cross-chain transactions."
team:
anonymous: true
@ -21,3 +22,6 @@ project_status:
mainnet: true
have_token: false
usecases:
- bridge

View file

@ -1,6 +1,7 @@
id: nuco-cloud
name: Nuco-cloud
categories: [ AI ]
description: 'Enabling tomorrows tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction.'
categories: [applications]
description: "Enabling tomorrows 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
@ -18,3 +19,5 @@ tokens:
network: Ethereum
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
sunset: false
usecases: [ai]

View file

@ -1,6 +1,7 @@
id: opsec
name: OpSec
categories: [ AI ]
description: ' AI-powered decentralized cloud security.'
categories: [applications]
description: " AI-powered decentralized cloud security."
links:
web: https://opsec.computer/
docs: https://docs.opsec.computer/
@ -15,3 +16,5 @@ tokens:
network: Ethereum
contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98"
sunset: false
usecases: [ai]

View file

@ -1,7 +1,7 @@
id: origin-trail
name: OriginTrail
categories: [ AI ]
description: 'Powering Verifiable Internet for Artificial Intelligence
'
categories: [applications]
description: "Powering Verifiable Internet for Artificial Intelligence "
links:
web: https://origintrail.io/
github: https://github.com/OriginTrail
@ -11,3 +11,5 @@ links:
twitter: https://x.com/origin_trail
discord: https://discord.com/invite/QctFuPCMew
telegram: https://t.me/origintrail
usecases: [ai]

View file

@ -1,9 +1,8 @@
id: oxo
name: OxO
categories: [ AI ]
ecosystem: [ Ethereum ]
usecases: [ Audit, mixer ]
description: 'All-in-One Privacy Exchange'
product_lunch_day: "2023-01"
categories: [applications]
ecosystem: [ethereum]
description: "All-in-One Privacy Exchange"
team:
anonymous: false
@ -26,7 +25,6 @@ links:
telegram: https://t.me/Portal0x0
discord: https://discord.com/invite/0x0exchange
project_phase: Mainnet
sunset: false
tokens:
@ -39,8 +37,6 @@ tokens:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: false
@ -53,3 +49,4 @@ traceability:
third_party_dependency: false
compliance: false
usecases: [ai]

View file

@ -1,51 +0,0 @@
name: Particl
categories: [ dapps ]
ecosystem: [ Particl ]
usecases: [ marketplace ]
description: 'The only marketplace for private and unrestricted e-commerce'
product_lunch_day: "2017"
team:
anonymous: false
teammembers:
- name: Gerlof van Ek
link: https://x.com/gerlof
- name: Henk Swardt
link: https://www.linkedin.com/in/hswardt/
links:
web: https://particl.io/marketplace
github: https://github.com/particl
whitepaper: https://github.com/particl/whitepaper
docs: https://particl.wiki/
block_explorer: https://explorer.particl.io/
blog: https://particl.news/
twitter: https://x.com/particlproject
telegram: https://t.me/particltg
discord: https://discord.me/particl
project_phase: Alpha
sunset: false
tokens:
- name: Particl Part
symbol: Part
network: Particl Blockchain
token_link: https://explorer.particl.io/
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
link: https://academy.particl.io/en/latest/particl-blockchain/blockchain_privacy.html
default_privacy: true
traceability:
kyc: false
third_party_dependency: false
compliance: false

View file

@ -1,9 +1,8 @@
id: presearch
name: Preserch
categories: [ browser ]
ecosystem: [ Ethereum ]
usecases: [ browser ]
description: 'The Decentralized Search Engine with more than 4 million members'
product_lunch_day: "2017"
categories: [applications]
ecosystem: [ethereum]
description: "The Decentralized Search Engine with more than 4 million members"
team:
anonymous: false
@ -38,7 +37,6 @@ links:
telegram: https://t.me/presearch
discord: https://discord.com/invite/KUpshRZz2n
project_phase: Mainnet
sunset: false
tokens:
@ -51,8 +49,6 @@ tokens:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
@ -71,6 +67,8 @@ audits:
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
time: 2023-10
storage:
decentralized: true
usecases:
- browser

View file

@ -1,6 +1,7 @@
name: 'Privasea'
categories: [ FHE ]
description: 'An AI + DePIN Network enabled through FHEML'
id: privasea
name: "Privasea"
categories: [infrastructure]
description: "An AI + DePIN Network enabled through FHEML"
links:
web: https://www.privasea.ai/
github: https://github.com/Privasea

View file

@ -1,9 +1,8 @@
id: privy
name: Privy
categories: [ wallets ]
ecosystem: [Solana ]
usecases: [ wallet]
description: 'Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe.'
product_lunch_day: "2021"
categories: [applications]
ecosystem: [solana]
description: "Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe."
team:
anonymous: false
@ -20,14 +19,11 @@ links:
blog: https://www.privy.io/blog
twitter: https://x.com/privy_io
project_phase: Mainet
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
@ -46,7 +42,5 @@ audits:
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
time: 2023-08
tecnology:
type: AA
usecases:
- wallets

View file

@ -1,7 +1,8 @@
id: raw-box
name: RawBox
categories: [ Hardware ]
ecosystem: [ Nym ]
description: 'Redefined privacy-enabled router.'
categories: [hardware]
ecosystem: [nym]
description: "Redefined privacy-enabled router."
team:
anonymous: false
@ -27,3 +28,6 @@ project_status:
mainnet: false
have_token: false
usecases:
- hardware

View file

@ -1,6 +1,7 @@
id: rido
name: Rido
categories: [ AI ]
description: 'Web3 Personal Data Layer for AI '
categories: [applications]
description: "Web3 Personal Data Layer for AI "
team:
anonymous: true
links:
@ -12,3 +13,5 @@ links:
telegram: https://t.me/+N6HLxnRL_WE5ZDVl
have_token: false
sunset: false
usecases: [ai]

View file

@ -1,8 +1,8 @@
id: ritual
name: Ritual
categories: [ ai ]
ecosystem: [ Ethereum, Solana, Polygon ]
usecases: [ ai, node ]
description: 'We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code.'
categories: [applications]
ecosystem: [ethereum, solana, polygon]
description: "We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code."
product_launch_day: "2023"
team:
@ -33,10 +33,8 @@ links:
twitter: https://x.com/ritualnet
discord: https://discord.com/invite/ritual-net
project_phase: Testnet
sunset: false
funding:
name: archetype
link: https://ritual.net/blog/introducing-ritual
@ -44,9 +42,6 @@ funding:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: false
@ -57,3 +52,4 @@ traceability:
third_party_dependency: false
compliance: false
usecases: [ai]

View file

@ -1,9 +1,8 @@
id: rotki
name: Rotki
categories: [ dapps ]
ecosystem: [ Ethereum, Bitcoin, Base, Optimist, Gnosis, Scroll, ZkSync ]
usecases: [ os portfolio management ]
description: 'rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy'
product_lunch_day: "2017"
categories: [applications]
ecosystem: [ethereum, bitcoin, base, optimist, gnosis, scroll, zksync]
description: "rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy"
team:
anonymous: false
@ -19,14 +18,11 @@ links:
twitter: https://x.com/rotkiapp
discord: https://discord.rotki.com/
project_phase: Mainet
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
@ -40,3 +36,5 @@ traceability:
third_party_dependency: false
compliance: false
usecases:
- dapps

View file

@ -1,8 +1,7 @@
id: self
name: Self
categories: [ did ]
usecases: [ digital identity, personal data ]
description: 'Build identification and personal data management for everything'
product_lunch_day: "2019"
categories: [applications]
description: "Build identification and personal data management for everything"
team:
anonymous: false
@ -20,15 +19,11 @@ links:
docs: https://docs.joinself.com/
twitter: https://x.com/futureoftrust
project_phase: testnet
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
link: https://www.joinself.com/company/legal
@ -43,5 +38,5 @@ compliance: false
storage:
decentralized: true
tecnology:
type: ZK
usecases:
- did

View file

@ -1,8 +1,7 @@
id: sentz
name: Sentz
categories: [ dapps ]
usecases: [ payment ]
description: 'Global payments app for Freelancers & Creators'
product_lunch_day: "2022"
categories: [applications]
description: "Global payments app for Freelancers & Creators"
team:
anonymous: false
@ -21,7 +20,6 @@ links:
twitter: https://x.com/sentzapp
discord: https://discord.com/invite/mobilecoin
project_phase: Mainet
sunset: false
tokens:
@ -29,13 +27,9 @@ tokens:
symbol: $MOB
token_link: https://www.coingecko.com/en/coins/mobilecoin
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: true
link: https://www.sentz.com/privacy-policy
@ -52,5 +46,7 @@ audits:
- name: Trail of Bits
link: https://www.sentz.com/developers/audits
assets_used: [ eUSD ]
assets_used: [EUSD]
usecases:
- dapps

View file

@ -1,6 +1,7 @@
id: sightai
name: SightAI
categories: [ AI ]
description: 'Decentralized AI inference with FHE'
categories: [applications]
description: "Decentralized AI inference with FHE"
team:
anonymous: true
links:
@ -12,3 +13,5 @@ links:
telegram: https://t.me/sightai
have_token: false
sunset: false
usecases: [ai]

View file

@ -1,8 +1,8 @@
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
team:
anonymous: true
@ -10,3 +10,6 @@ links:
github: https://github.com/summa-dev
technology:
type: halo2
features: [""]
usecases: [infrastructure]

View file

@ -1,6 +1,7 @@
name: 'Sunsscreen'
categories: [ FHE ]
description: 'Privacy engine of the new web.'
id: sunscreen
name: "Sunsscreen"
categories: [applications]
description: "Privacy engine of the new web."
links:
web: https://sunscreen.tech/
blog: https://blog.sunscreen.tech/

View file

@ -1,6 +1,7 @@
id: super-protocol
name: SuperProtocol
categories: [ AI ]
description: 'The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts'
categories: [applications]
description: "The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts"
team:
anonymous: true
links:
@ -11,3 +12,5 @@ links:
telegram: https://t.me/superprotocol
have_token: false
sunset: false
usecases: [ai]

View file

@ -1,6 +1,7 @@
id: synaps
name: Synaps
categories: [ kyc ]
description: 'KYC provider and verifiable credential issuer for DID protocols.'
categories: [applications]
description: "KYC provider and verifiable credential issuer for DID protocols."
team:
anonymous: false
@ -23,3 +24,6 @@ project_status:
mainnet: true
have_token: false
usecases:
- kyc-solution

View file

@ -1,6 +1,7 @@
id: taceo
name: Taceo
categories: [ computing-network ]
description: 'Encrypted Computation Layer; MPC + ZK'
categories: [infrastructure]
description: "Encrypted Computation Layer; MPC + ZK"
team:
anonymous: false
@ -16,7 +17,6 @@ links:
web: https://taceo.io/
github: https://github.com/TaceoLabs
docs: https://docs.taceo.io/
whitepaper:
blog: https://blog.taceo.io/
twitter: https://x.com/TACEO_IO
discord: https://discord.com/invite/gWZW2TANpk
@ -25,3 +25,6 @@ project_status:
live_status: true
have_token: false
usecases:
- computing

View file

@ -1,6 +1,7 @@
id: the-4th-pillar
name: The 4th Pillar
categories: [ messaging ]
description: 'Web3 Aligned Email & Chat Super App'
categories: [social-and-communications]
description: "Web3 Aligned Email & Chat Super App"
team:
anonymous: true
@ -28,3 +29,6 @@ tokens:
symbol: $FOUR
network: Ethereum
contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0"
usecases:
- messaging

View file

@ -1,8 +1,11 @@
id: venice
name: Venice
categories: [ AI ]
description: 'a generative AI app focused on privacy'
categories: [applications]
description: "a generative AI app focused on privacy"
links:
web: https://venice.ai
blog: https://venice.ai/blog
twitter: https://x.com/askvenice
farcaster: venice-ai
farcaster: https://forecaster.com/venice-ai
usecases: [ai]

View file

@ -1,9 +1,8 @@
id: vocdoni
name: Vocdoni
categories: [ dapps ]
ecosystem: [ Ethereum ]
usecases: [ voting ]
description: 'To build open source solutions to facilitate decision making in any organization.'
product_lunch_day: "2017"
categories: [applications]
ecosystem: [ethereum]
description: "To build open source solutions to facilitate decision making in any organization."
team:
anonymous: false
@ -31,7 +30,6 @@ links:
twitter: https://x.com/vocdoni
discord: https://discord.com/invite/Qjm7krrFBf
project_phase: Mainnet
sunset: false
funding:
@ -41,22 +39,17 @@ funding:
blockchain_features:
opensource: true
asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy:
defined: false
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
storage:
decentralized: true
tecnology:
type: zkSNARKs
usecases:
- dapps

View file

@ -1,6 +1,7 @@
name: 'Zama'
categories: [ FHE ]
description: 'an open source cryptography company building FHE solutions for blockchain and AI.'
id: zama
name: "Zama"
categories: [infrastructure]
description: "an open source cryptography company building FHE solutions for blockchain and AI."
team:
anonymous: false
links:

View file

@ -1,6 +1,7 @@
id: zkagi
name: ZkAGI
categories: [ AI ]
description: 'Pioneering Privacy AI with Decentralized Infrastructure (DePIN)'
categories: [applications]
description: "Pioneering Privacy AI with Decentralized Infrastructure (DePIN)"
links:
web: https://www.zkagi.ai/
docs: https://zkagi.gitbook.io/introduction
@ -11,3 +12,5 @@ links:
telegram: https://t.me/ZkAGI_AI
have_token: false
sunset: false
usecases: [ai]

View file

@ -1,6 +1,6 @@
name: Actilist
categories: [ nft ]
description: 'Secret NFT auctions.'
categories: [applications]
description: "Secret NFT auctions."
links:
web: https://test.actilist.io
github: https://github.com/actilabs
@ -16,3 +16,6 @@ project_status:
mainnet: false
have_token: false
sunset: false
usecases:
- nft-community

View file

@ -1,6 +1,6 @@
name: AesirX WEB3 ID
categories: [ did ]
description: 'an advanced identity management solution that protects users personal data and ensures privacy on the internet.'
categories: [applications]
description: "an advanced identity management solution that protects users personal data and ensures privacy on the internet."
links:
web: https://web3id.aesirx.io
github: https://github.com/aesirxio
@ -11,3 +11,6 @@ links:
facebook: https://www.facebook.com/aesirxio
telegram: https://t.me/aesirx_official_community
have_token: true
usecases:
- did

View file

@ -1,8 +1,9 @@
name: Alaya
categories: [ computing-network ]
description: 'Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON.'
ecosystem: Ethereum
project_status: Mainnet, 2022
categories: [infrastructure]
description: "Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON."
ecosystem: [ethereum]
project_status:
version: Mainnet
links:
web: https://alaya.network/en
github: https://github.com/AlayaNetwork
@ -11,3 +12,6 @@ links:
blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e
team:
anonymous: true
usecases:
- computing

View file

@ -1,6 +1,6 @@
name: Aleo
categories: [ infrastructure ]
description: 'An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1.'
categories: [infrastructure]
description: "An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1."
team:
anonymous: true
links:
@ -28,14 +28,13 @@ blockchain_features:
dissapearing_tx: true
connected_tx: true
client_diversability:
name: address
link: https://explorer.aleo.org/validators
- name: address
link: https://explorer.aleo.org/validators
default_privacy: true
tracebility:
kyc: false
sign_in_type_requirements: wallet
tracked_data: non
storage:
decentralized: true
compliance: false
third_party_dependency: false
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: Aleph Zero
categories: [ computing-network ]
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,3 +20,6 @@ team:
anonymous: false
company:
link: https://alephzero.org/the-team
usecases:
- computing

View file

@ -1,6 +1,6 @@
name: ALTER
categories: [ messaging ]
description: 'Private & Secure Communication App Utilizing Secret Nework secret contract technology.'
categories: [social-and-communications]
description: "Private & Secure Communication App Utilizing Secret Nework secret contract technology."
team:
anonymous: true
links:
@ -15,3 +15,6 @@ project_status:
version: mainnet
testnet: false
mainnet: true
usecases:
- messaging

View file

@ -1,6 +1,6 @@
name: Anagolay
categories: [ did ]
description: 'Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P'
categories: [applications]
description: "Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P"
links:
web: https://anagolay.network
github: https://github.com/anagolay
@ -11,3 +11,6 @@ links:
twitter: https://x.com/AnagolayNet
discord: https://discord.com/invite/WHe4EuY
have_token: true
usecases:
- did

View file

@ -1,7 +1,8 @@
name: Anoma
categories: [ infrastructure ]
description: 'An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement'
project_status: testnet
categories: [infrastructure]
description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement"
project_status:
version: "testnet"
team:
anonymous: false
teammembers:
@ -24,7 +25,9 @@ technology:
- privacy for content
blockchain_features:
p2p: true
tracebility:
kyc: false
storage:
decentralized: true
usecases:
- infrastructure

View file

@ -1,8 +1,8 @@
name: Anon Aadhaar
categories: [ DID ]
description: 'Anon Aadhaar is a project that allows individuals to prove their citizenship anonymously. The project provides circuits, an SDK, and demo applications that generate and verify proofs of valid Aadhaar cards, integrating with the PCD framework to support a wide range of applications.'
project_status: testnet
live_status: true
categories: [applications]
description: "Anon Aadhaar is a project that allows individuals to prove their citizenship anonymously. The project provides circuits, an SDK, and demo applications that generate and verify proofs of valid Aadhaar cards, integrating with the PCD framework to support a wide range of applications."
project_status:
version: "testnet"
team:
anonymous: true
links:
@ -12,3 +12,7 @@ links:
github: https://github.com/anon-aadhaar/anon-aadhaar
technology:
type: zk, circom, rsa
features: [""]
usecases:
- did

View file

@ -1,5 +1,8 @@
name: Anon/Nero
categories: [ wallets ]
description: 'Private wallet'
categories: [applications]
description: "Private wallet"
links:
web: https://t.me/anoneroapks
usecases:
- wallets

View file

@ -1,10 +1,13 @@
name: Anonybit
categories: [ did ]
description: 'Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)'
ecosystem: multichain
categories: [applications]
description: "Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)"
ecosystem: [multichain]
links:
web: https://www.anonybit.io/team/
blog: https://www.anonybit.io/blog/
twitter: https://x.com/Anonybit1
have_token: true
usecases:
- did

View file

@ -1,5 +1,8 @@
name: AnonZK Incognito
categories: [ mixing-service ]
description: 'A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity.'
categories: [applications]
description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity."
links:
web: https://incognito.anonzk.io
usecases:
- mixing-service

View file

@ -1,9 +1,12 @@
name: AnyDAO
categories: [ dao ]
description: 'Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting'
categories: [applications]
description: "Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting"
links:
web: https://app.anydao.io/bsc/explore
docs: https://docs.anydao.io/
blog: https://anydao.medium.com/
twitter: https://x.com/0xAnyDAO
telegram: https://t.me/AnyDAO
usecases:
- dao

View file

@ -1,7 +1,6 @@
name: Anytype
categories: [ infrastructure ]
description: 'local-first, E2E encrypted software designed as a secure place to create and store digital assets. You can use Anytype to create and connect your tasks, notes, ideas, documents, workflows, and more'
team: 56 members
categories: [infrastructure]
description: "local-first, E2E encrypted software designed as a secure place to create and store digital assets. You can use Anytype to create and connect your tasks, notes, ideas, documents, workflows, and more"
links:
web: https://anytype.io/en
github: https://github.com/anytypeio
@ -10,3 +9,6 @@ links:
twitter: https://twitter.com/anytypelabs
telegram: https://t.me/anytype
youtube: https://www.youtube.com/c/anytype
usecases:
- infrastructure

View file

@ -1,6 +1,9 @@
name: Arcana's Private NFT
categories: [ nft ]
description: 'New supported format by Arcana preserving privacy within NFT minting.'
categories: [applications]
description: "New supported format by Arcana preserving privacy within NFT minting."
links:
web: https://arcana.network/blog/launching-private-nfts-on-arcana/
github: https://docs.beta.arcana.network/docs/conceptpvtnft/
usecases:
- nft-community

View file

@ -1,19 +1,19 @@
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
@ -27,3 +27,6 @@ links:
have_token: true
tokens:
- symbol: XAR
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: ARPA
categories: [ computing-network ]
description: 'Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc'
ecosystem: multichain
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,3 +18,6 @@ links:
telegram: https://t.me/arpa_community
team:
anonymous: true
usecases:
- computing

View file

@ -1,6 +1,6 @@
name: AsMatch
categories: [ dapps ]
description: 'The only Web3 matching app that uses ZKPs to authenticate users on-chain credentials'
categories: [applications]
description: "The only Web3 matching app that uses ZKPs to authenticate users on-chain credentials"
links:
web: https://www.asmatch.app
whitepaper: https://whitepaper.asmatch.app/
@ -8,3 +8,6 @@ links:
blog: https://asmatch.medium.com/
twitter: https://x.com/AsMatchApp
discord: https://discord.com/invite/yqUWDdyfX9
usecases:
- dapps

View file

@ -1,11 +1,13 @@
name: Asterizm
categories: [ infrastructure ]
description: 'Plug and play blockchain interoperability solution for enterprises, web3 protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions with their core modules - asset bridge, NFT bridge, native cross-chain token & NFT'
categories: [infrastructure]
description: "Plug and play blockchain interoperability solution for enterprises, web3 protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions with their core modules - asset bridge, NFT bridge, native cross-chain token & NFT"
team:
- name: Artem Avdeev
role: CEO
- name: Denis Polulyakhov
role: Co-Founder
anonymous: false
teammembers:
- name: Artem Avdeev
role: CEO
- name: Denis Polulyakhov
role: Co-Founder
links:
web: https://asterizm.io
github: https://github.com/Asterizm-Protocol
@ -15,3 +17,6 @@ links:
twitter: https://twitter.com/Asterizm_layer
discord: https://discord.gg/z5QVerD48C
telegram: https://t.me/asterizm_protocol
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: Auth3
categories: [ infrastructure ]
categories: [infrastructure]
description: 'a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data.'
description: "a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data."
team:
anonymous: true
@ -17,3 +17,5 @@ project_status:
testnet: false
mainnet: false
usecases:
- infrastructure

View file

@ -1,6 +1,6 @@
name: Automata Network
categories: [ infrastructure ]
description: 'The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA'
categories: [infrastructure]
description: "The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA"
team:
anonymous: true
links:
@ -13,6 +13,9 @@ tokens:
- symbol: ATA
project_status:
live_status: true
version: false
version: ""
testnet: true
mainnet: false
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: Avado
categories: [ hardware ]
description: 'A plug-and-play hardware device that connects users to many different kinds of blockchains'
ecosystem: multichain
categories: [hardware]
description: "A plug-and-play hardware device that connects users to many different kinds of blockchains"
ecosystem: [multichain]
links:
web: https://ava.do/
github: https://github.com/mysteriumnetwork/AVADO-DNP-Mysterium-Server
@ -14,3 +14,6 @@ team:
anonymous: false
company:
link: https://www.mysterium.network/team
usecases:
- hardware

View file

@ -1,9 +1,12 @@
name: AXIAtel
categories: [ hardware ]
description: 'a privacy first mobile service for everyone'
ecosystem: multichain
categories: [hardware]
description: "a privacy first mobile service for everyone"
ecosystem: [multichain]
links:
web: https://axiatel.co
blog: https://medium.com/@axiatel
team:
anonymous: true
usecases:
- hardware

View file

@ -1,8 +1,11 @@
name: Aztec Connect
categories: [bridge]
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
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

View file

@ -1,7 +1,7 @@
name: Basic Attention Token
categories: [ currency ]
description: 'Making Crypto and DeFi accessible and usable for everyone (powered by Brave)'
ecosystem: Solana
categories: [defi]
description: "Making Crypto and DeFi accessible and usable for everyone (powered by Brave)"
ecosystem: [solana]
links:
web: https://basicattentiontoken.org
whitepaper: https://basicattentiontoken.org/static-assets/documents/BasicAttentionTokenWhitePaper-4.pdf
@ -10,3 +10,6 @@ links:
discord: https://discord.com/invite/BATBrigade
team:
anonymous: false
usecases:
- currency

View file

@ -1,7 +1,7 @@
name: Basic Swap
categories: [ defi ]
ecosystem: Multichain
description: 'A private and cross-chain DEX'
categories: [defi]
ecosystem: [multichain]
description: "A private and cross-chain DEX"
project_type: DeFi
product_launch_day: "2022-12-08"
technology:
@ -19,9 +19,6 @@ links:
blockchain_features:
p2p: true
encryption: P2P, AtomicSwaps
upgradability:
enabled: true
type: fork
opensource: true
dissapearing_tx: true
frontend_anonymity: self-hosted
@ -53,3 +50,6 @@ project_status:
version: Mainnet
testnet: false
mainnet: true
usecases:
- defi

View file

@ -1,6 +1,6 @@
name: BCchat
categories: [ messaging ]
description: 'A decentralized, privacy messenger built over the Beldex blockchain.'
categories: [social-and-communications]
description: "A decentralized, privacy messenger built over the Beldex blockchain."
team:
anonymous: true
links:
@ -17,3 +17,5 @@ project_status:
testnet: false
mainnet: true
usecases:
- messaging

View file

@ -1,6 +1,6 @@
name: Beam
categories: [ wallets ]
description: 'Self-custodial wallet built on eco.org'
categories: [applications]
description: "Self-custodial wallet built on eco.org"
team:
anonymous: true
links:
@ -9,6 +9,9 @@ links:
github: https://github.com/eco-association
project_status:
live_status: true
version:
version: ""
testnet: false
mainnet: false
usecases:
- wallets

View file

@ -1,6 +1,6 @@
name: Beam
categories: [ currency ]
description: 'Best in class privacy coin and confidential DeFi platform'
categories: [defi]
description: "Best in class privacy coin and confidential DeFi platform"
links:
web: https://beam.mw
github: https://github.com/BeamMW/beam
@ -10,7 +10,11 @@ links:
twitter: https://x.com/beamprivacy
discord: https://discord.com/invite/BHZvAhg
telegram: https://t.me/BeamPrivacy
ecosystem: Beam
project_status: Mainnet
ecosystem: [beam]
project_status:
version: "Mainnet"
team:
anonymous: false
usecases:
- currency

View file

@ -1,11 +1,13 @@
name: Beepo
categories: [ messaging ]
description: 'A social networking application integrated with a multichain chain crypto wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and a sales catalog section for business accounts'
categories: [social-and-communications]
description: "A social networking application integrated with a multichain chain crypto wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and a sales catalog section for business accounts"
team:
- name: Michael Jimoh
role: Co-Founder & CEO
- name: Clement Hochart
role: Co-Founder
anonymous: false
teammembers:
- name: Michael Jimoh
role: Co-Founder & CEO
- name: Clement Hochart
role: Co-Founder
links:
web: https://beepoapp.net/#features
github: https://github.com/beepo-app
@ -13,3 +15,6 @@ links:
twitter: https://x.com/beepoapp
discord: https://discord.com/invite/DhYJGgAVzR
telegram: https://t.me/beepoapp
usecases:
- messaging

View file

@ -1,7 +1,7 @@
name: Beldex
categories: [ currency ]
description: 'A privacy currency based on Monero, Beldex currently offers incentive-based Master Nodes and in the future Beldex will be using POS instead of POW'
ecosystem: Beldex
categories: [defi]
description: "A privacy currency based on Monero, Beldex currently offers incentive-based Master Nodes and in the future Beldex will be using POS instead of POW"
ecosystem: [beldex]
project_status:
live_status: true
verion: Mainnet
@ -18,3 +18,6 @@ links:
telegram: https://t.me/official_beldex
team:
anonymous: false
usecases:
- currency

View file

@ -1,6 +1,6 @@
name: Bermuda
categories: [ dapps ]
description: 'Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens'
categories: [applications]
description: "Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens"
links:
web: https://www.bmda.io
whitepaper: https://www.bmda.io/bermuda-whitepaper-1.2.pdf
@ -8,3 +8,6 @@ links:
blog: https://medium.com/@bmdaadmin
twitter: https://x.com/BermudaEth
telegram: https://t.me/bermudaportal
usecases:
- dapps

View file

@ -1,6 +1,6 @@
name: Bidshop
categories: [ nft ]
description: 'The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs'
categories: [applications]
description: "The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs"
links:
web: https://www.bidshop.io
docs: https://bidshop.gitbook.io/bidshop-platform
@ -14,3 +14,6 @@ tokens:
symbol: BIDS
network: Ethereum
contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F"
usecases:
- nft-community

View file

@ -1,7 +1,7 @@
name: Blackbox
categories: [ defi ]
ecosystem: Secret
description: 'Collection of tools allowing you send & receive SCRT anonymously'
categories: [defi]
ecosystem: [secret]
description: "Collection of tools allowing you send & receive SCRT anonymously"
project_type: DeFi
product_launch_day: "2021-15-02"
technology:
@ -19,8 +19,7 @@ links:
blockchain_features:
p2p: false
encryption: TEE
upgradability:
enabled: false
opensource: true
viewing_key: true
dissapearing_tx: false
@ -65,3 +64,6 @@ project_status:
version: Mainnet
testnet: false
mainnet: true
usecases:
- defi

View file

@ -1,8 +1,9 @@
name: BlackHat Coin
categories: [ currency ]
description: 'Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol'
ecosystem: BlackHat
project_status: Mainnet
categories: [defi]
description: "Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol"
ecosystem: [blackhat]
project_status:
version: "Mainnet"
links:
web: https://blackhatco.in
github: https://github.com/BlackHatCoin
@ -14,3 +15,6 @@ links:
telegram: https://t.me/BlackHatCoin
team:
anonymous: true
usecases:
- currency

View file

@ -1,7 +1,7 @@
name: Blockstream Green
categories: [ wallets ]
description: 'A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream'
ecosystem: Bitcoin
categories: [applications]
description: "A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream"
ecosystem: [bitcoin]
links:
web: https://blockstream.com/green/
github: https://github.com/Blockstream/green_qt
@ -18,3 +18,6 @@ project_status:
version: 2.0.6
testnet: false
mainnet: false
usecases:
- wallets

View file

@ -1,7 +1,7 @@
name: BlockWallet
categories: [ wallets ]
description: 'BlockWallet is the epitome of speed, reliability, security, and privacy in the world of digital assets. As a self-custodial Web3 wallet, it empowers you to truly own your digital currencies while eliminating concerns surrounding asset management.'
ecosystem: Ethereum
categories: [applications]
description: "BlockWallet is the epitome of speed, reliability, security, and privacy in the world of digital assets. As a self-custodial Web3 wallet, it empowers you to truly own your digital currencies while eliminating concerns surrounding asset management."
ecosystem: [ethereum]
links:
web: https://blockwallet.io/
github: https://github.com/block-wallet
@ -14,3 +14,6 @@ project_status:
version: v.1.2.9
testnet: false
mainnet: false
usecases:
- wallets

View file

@ -1,5 +1,8 @@
name: Blockyfile
categories: [ dapps ]
description: 'The new way to upload files anonymously and without censorship.'
categories: [applications]
description: "The new way to upload files anonymously and without censorship."
links:
web: https://blockyfile.org
usecases:
- dapps

Some files were not shown because too many files have changed in this diff Show more