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 title: ID
description: | description: |
Unique project identifier Unique project identifier
pattern: '^[a-z0-9-]+$' pattern: "^[a-z0-9-]+$"
#PROJECT DESCRIPTION ------------------------------------------------------------- #PROJECT DESCRIPTION -------------------------------------------------------------
name: name:
type: string type: string
@ -18,17 +18,17 @@ properties:
type: array type: array
items: items:
type: string type: string
pattern: '^[a-z0-9-]+$' pattern: "^[a-z0-9-]+$"
assets_used: assets_used:
type: array type: array
items: items:
type: string type: string
pattern: '^[A-Z0-9-]+$' pattern: "^[A-Z0-9-]+$"
ecosystem: ecosystem:
type: array type: array
items: items:
type: string type: string
pattern: '^[a-z0-9-]+$' pattern: "^[a-z0-9-]+$"
project_type: project_type:
type: string type: string
description: description:
@ -215,7 +215,7 @@ properties:
type: string type: string
link: link:
type: string type: string
format: uli format: uri
p2p: p2p:
type: boolean type: boolean
data_masking: data_masking:
@ -273,13 +273,16 @@ properties:
type: boolean type: boolean
sign_in_type_requirments: sign_in_type_requirments:
type: string type: string
required:
- kyc
compliance: compliance:
anyOf: [{type: boolean}, {type: string}] anyOf: [{ type: boolean }, { type: string }]
storage: storage:
type: object type: object
properties: properties:
decentralized: decentralized:
type: boolean type: boolean
# SECURITY --------------------------------------------------------------------- # SECURITY ---------------------------------------------------------------------
third_party_dependency: third_party_dependency:
type: boolean type: boolean
@ -320,4 +323,4 @@ properties:
type: array type: array
items: items:
type: string 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 name: 01 Labs
categories: [ rd ] categories: [applications]
description: 'Catalyzing a new generation of applications powered by zero knowledge cryptography.' description: "Catalyzing a new generation of applications powered by zero knowledge cryptography."
links: links:
web: https://o1labs.org web: https://o1labs.org
github: https://github.com/o1-labs github: https://github.com/o1-labs
blog: https://www.o1labs.org/blog blog: https://www.o1labs.org/blog
twitter: https://x.com/o1_labs twitter: https://x.com/o1_labs
usecases:
- research-and-development

View file

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

View file

@ -1,8 +1,11 @@
name: '1984' name: "1984"
categories: [ infrastructure ] 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.' 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: team:
anonymous: true anonymous: true
links: links:
web: https://1984.hosting/ web: https://1984.hosting/
docs: https://kb.1984hosting.com/doku.php?id=start docs: https://kb.1984hosting.com/doku.php?id=start
usecases:
- infrastructure

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,9 +1,10 @@
id: codex
name: Codex name: Codex
categories: categories:
- Storage - applications
ecosystem: ecosystem:
- Ethereum - 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.' 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: team:
anonymous: false anonymous: false
@ -16,7 +17,7 @@ links:
blog: https://blog.codex.storage blog: https://blog.codex.storage
twitter: https://x.com/codex_storage twitter: https://x.com/codex_storage
discord: https://discord.com/invite/codex-storage discord: https://discord.com/invite/codex-storage
farcaster: "@codexstorage" farcaster: "https://farcaster/@codexstorage"
project_status: project_status:
live_status: true live_status: true
@ -24,7 +25,8 @@ project_status:
testnet: false testnet: false
mainnet: false mainnet: false
licenses: Apache 2.0 and MIT
traceability: traceability:
kyc: false kyc: false
usecases:
- storage

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,9 +1,10 @@
id: intmax
name: Intmax name: Intmax
categories: categories:
- layer-2 - infrastructure
ecosystem: [ Ethereum ] ecosystem: [ethereum]
project_type: Layer2 zk-rollup 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: team:
anonymous: false anonymous: false
@ -28,3 +29,6 @@ project_status:
mainnet: false mainnet: false
have_token: false have_token: false
usecases:
- eth-layer-2

View file

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

View file

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

View file

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

View file

@ -1,6 +1,7 @@
id: nuco-cloud
name: Nuco-cloud name: Nuco-cloud
categories: [ AI ] categories: [applications]
description: 'Enabling tomorrows tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction.' description: "Enabling tomorrows tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction."
links: links:
web: https://www.nuco.cloud/ web: https://www.nuco.cloud/
github: https://github.com/IronEagleCapital github: https://github.com/IronEagleCapital
@ -18,3 +19,5 @@ tokens:
network: Ethereum network: Ethereum
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b" contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
sunset: false sunset: false
usecases: [ai]

View file

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

View file

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

View file

@ -1,9 +1,8 @@
id: oxo
name: OxO name: OxO
categories: [ AI ] categories: [applications]
ecosystem: [ Ethereum ] ecosystem: [ethereum]
usecases: [ Audit, mixer ] description: "All-in-One Privacy Exchange"
description: 'All-in-One Privacy Exchange'
product_lunch_day: "2023-01"
team: team:
anonymous: false anonymous: false
@ -26,7 +25,6 @@ links:
telegram: https://t.me/Portal0x0 telegram: https://t.me/Portal0x0
discord: https://discord.com/invite/0x0exchange discord: https://discord.com/invite/0x0exchange
project_phase: Mainnet
sunset: false sunset: false
tokens: tokens:
@ -39,8 +37,6 @@ tokens:
blockchain_features: blockchain_features:
opensource: true opensource: true
asset_custody_type: non-custody asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy: privacy_policy:
defined: false defined: false
@ -53,3 +49,4 @@ traceability:
third_party_dependency: false third_party_dependency: false
compliance: 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 name: Preserch
categories: [ browser ] categories: [applications]
ecosystem: [ Ethereum ] ecosystem: [ethereum]
usecases: [ browser ] description: "The Decentralized Search Engine with more than 4 million members"
description: 'The Decentralized Search Engine with more than 4 million members'
product_lunch_day: "2017"
team: team:
anonymous: false anonymous: false
@ -38,7 +37,6 @@ links:
telegram: https://t.me/presearch telegram: https://t.me/presearch
discord: https://discord.com/invite/KUpshRZz2n discord: https://discord.com/invite/KUpshRZz2n
project_phase: Mainnet
sunset: false sunset: false
tokens: tokens:
@ -51,8 +49,6 @@ tokens:
blockchain_features: blockchain_features:
opensource: true opensource: true
asset_custody_type: non-custody asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy: privacy_policy:
defined: true defined: true
@ -71,6 +67,8 @@ audits:
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
time: 2023-10 time: 2023-10
storage: storage:
decentralized: true decentralized: true
usecases:
- browser

View file

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

View file

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

View file

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

View file

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

View file

@ -1,8 +1,8 @@
id: ritual
name: Ritual name: Ritual
categories: [ ai ] categories: [applications]
ecosystem: [ Ethereum, Solana, Polygon ] 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."
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" product_launch_day: "2023"
team: team:
@ -33,10 +33,8 @@ links:
twitter: https://x.com/ritualnet twitter: https://x.com/ritualnet
discord: https://discord.com/invite/ritual-net discord: https://discord.com/invite/ritual-net
project_phase: Testnet
sunset: false sunset: false
funding: funding:
name: archetype name: archetype
link: https://ritual.net/blog/introducing-ritual link: https://ritual.net/blog/introducing-ritual
@ -44,9 +42,6 @@ funding:
blockchain_features: blockchain_features:
opensource: true opensource: true
asset_custody_type: non-custody asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy: privacy_policy:
defined: false defined: false
@ -57,3 +52,4 @@ traceability:
third_party_dependency: false third_party_dependency: false
compliance: false compliance: false
usecases: [ai]

View file

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

View file

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

View file

@ -1,8 +1,7 @@
id: sentz
name: Sentz name: Sentz
categories: [ dapps ] categories: [applications]
usecases: [ payment ] description: "Global payments app for Freelancers & Creators"
description: 'Global payments app for Freelancers & Creators'
product_lunch_day: "2022"
team: team:
anonymous: false anonymous: false
@ -21,7 +20,6 @@ links:
twitter: https://x.com/sentzapp twitter: https://x.com/sentzapp
discord: https://discord.com/invite/mobilecoin discord: https://discord.com/invite/mobilecoin
project_phase: Mainet
sunset: false sunset: false
tokens: tokens:
@ -29,13 +27,9 @@ tokens:
symbol: $MOB symbol: $MOB
token_link: https://www.coingecko.com/en/coins/mobilecoin token_link: https://www.coingecko.com/en/coins/mobilecoin
blockchain_features: blockchain_features:
opensource: true opensource: true
asset_custody_type: non-custody asset_custody_type: non-custody
upgradability:
enabled: true
privacy_policy: privacy_policy:
defined: true defined: true
link: https://www.sentz.com/privacy-policy link: https://www.sentz.com/privacy-policy
@ -52,5 +46,7 @@ audits:
- name: Trail of Bits - name: Trail of Bits
link: https://www.sentz.com/developers/audits 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 name: SightAI
categories: [ AI ] categories: [applications]
description: 'Decentralized AI inference with FHE' description: "Decentralized AI inference with FHE"
team: team:
anonymous: true anonymous: true
links: links:
@ -12,3 +13,5 @@ links:
telegram: https://t.me/sightai telegram: https://t.me/sightai
have_token: false have_token: false
sunset: false sunset: false
usecases: [ai]

View file

@ -1,8 +1,8 @@
id: summa
name: Summa name: Summa
categories: infrastructure categories: [infrastructure]
description: 'Protocol enabling centralized exchanges to prove solvency without compromising private information.' description: "Protocol enabling centralized exchanges to prove solvency without compromising private information."
project_status: project_status:
live_status: true live_status: true
team: team:
anonymous: true anonymous: true
@ -10,3 +10,6 @@ links:
github: https://github.com/summa-dev github: https://github.com/summa-dev
technology: technology:
type: halo2 type: halo2
features: [""]
usecases: [infrastructure]

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
name: Aleo name: Aleo
categories: [ infrastructure ] 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.' 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: team:
anonymous: true anonymous: true
links: links:
@ -28,14 +28,13 @@ blockchain_features:
dissapearing_tx: true dissapearing_tx: true
connected_tx: true connected_tx: true
client_diversability: client_diversability:
name: address - name: address
link: https://explorer.aleo.org/validators link: https://explorer.aleo.org/validators
default_privacy: true default_privacy: true
tracebility:
kyc: false
sign_in_type_requirements: wallet
tracked_data: non
storage: storage:
decentralized: true decentralized: true
compliance: false compliance: false
third_party_dependency: false third_party_dependency: false
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: Aleph Zero name: Aleph Zero
categories: [ computing-network ] categories: [infrastructure]
description: 'Privacy-enhancing public blockchain with instant finality.' description: "Privacy-enhancing public blockchain with instant finality."
ecosystem: Aleph ecosystem: [aleph]
project_status: project_status:
live_status: true live_status: true
version: Mainnet version: Mainnet
@ -20,3 +20,6 @@ team:
anonymous: false anonymous: false
company: company:
link: https://alephzero.org/the-team link: https://alephzero.org/the-team
usecases:
- computing

View file

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

View file

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

View file

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

View file

@ -1,8 +1,8 @@
name: Anon Aadhaar name: Anon Aadhaar
categories: [ DID ] 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.' 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 project_status:
live_status: true version: "testnet"
team: team:
anonymous: true anonymous: true
links: links:
@ -12,3 +12,7 @@ links:
github: https://github.com/anon-aadhaar/anon-aadhaar github: https://github.com/anon-aadhaar/anon-aadhaar
technology: technology:
type: zk, circom, rsa type: zk, circom, rsa
features: [""]
usecases:
- did

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
name: Arcana name: Arcana
categories: [ infrastructure ] categories: [infrastructure]
description: 'Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption' description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption"
team: team:
anonymous: false anonymous: false
teammembers: teammembers:
@ -27,3 +27,6 @@ links:
have_token: true have_token: true
tokens: tokens:
- symbol: XAR - symbol: XAR
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: ARPA name: ARPA
categories: [ computing-network ] 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' 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 ecosystem: [multichain]
project_status: project_status:
live_status: true live_status: true
version: Mainnet version: Mainnet
@ -18,3 +18,6 @@ links:
telegram: https://t.me/arpa_community telegram: https://t.me/arpa_community
team: team:
anonymous: true anonymous: true
usecases:
- computing

View file

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

View file

@ -1,7 +1,9 @@
name: Asterizm name: Asterizm
categories: [ infrastructure ] 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' 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: team:
anonymous: false
teammembers:
- name: Artem Avdeev - name: Artem Avdeev
role: CEO role: CEO
- name: Denis Polulyakhov - name: Denis Polulyakhov
@ -15,3 +17,6 @@ links:
twitter: https://twitter.com/Asterizm_layer twitter: https://twitter.com/Asterizm_layer
discord: https://discord.gg/z5QVerD48C discord: https://discord.gg/z5QVerD48C
telegram: https://t.me/asterizm_protocol telegram: https://t.me/asterizm_protocol
usecases:
- infrastructure

View file

@ -1,7 +1,7 @@
name: Auth3 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: team:
anonymous: true anonymous: true
@ -17,3 +17,5 @@ project_status:
testnet: false testnet: false
mainnet: false mainnet: false
usecases:
- infrastructure

View file

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

View file

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

View file

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

View file

@ -1,8 +1,11 @@
name: Aztec Connect name: Aztec Connect
categories: [bridge] categories: [applications]
links: links:
github: https://github.com/AztecProtocol/aztec-connect-bridges github: https://github.com/AztecProtocol/aztec-connect-bridges
docs: https://docs.aztec.network/misc/aztec_connect_sunset docs: https://docs.aztec.network/misc/aztec_connect_sunset
blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/ blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/
discord: https://discord.com/invite/aztec discord: https://discord.com/invite/aztec
education: https://twitter.com/aztecnetwork/status/1575662728395358208 education: https://twitter.com/aztecnetwork/status/1575662728395358208
usecases:
- bridge

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,7 +1,9 @@
name: Beepo name: Beepo
categories: [ messaging ] 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' 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: team:
anonymous: false
teammembers:
- name: Michael Jimoh - name: Michael Jimoh
role: Co-Founder & CEO role: Co-Founder & CEO
- name: Clement Hochart - name: Clement Hochart
@ -13,3 +15,6 @@ links:
twitter: https://x.com/beepoapp twitter: https://x.com/beepoapp
discord: https://discord.com/invite/DhYJGgAVzR discord: https://discord.com/invite/DhYJGgAVzR
telegram: https://t.me/beepoapp telegram: https://t.me/beepoapp
usecases:
- messaging

View file

@ -1,7 +1,7 @@
name: Beldex name: Beldex
categories: [ currency ] 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' 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 ecosystem: [beldex]
project_status: project_status:
live_status: true live_status: true
verion: Mainnet verion: Mainnet
@ -18,3 +18,6 @@ links:
telegram: https://t.me/official_beldex telegram: https://t.me/official_beldex
team: team:
anonymous: false anonymous: false
usecases:
- currency

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,7 +1,7 @@
name: BlockWallet name: BlockWallet
categories: [ wallets ] 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.' 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 ecosystem: [ethereum]
links: links:
web: https://blockwallet.io/ web: https://blockwallet.io/
github: https://github.com/block-wallet github: https://github.com/block-wallet
@ -14,3 +14,6 @@ project_status:
version: v.1.2.9 version: v.1.2.9
testnet: false testnet: false
mainnet: false mainnet: false
usecases:
- wallets

View file

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

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