Merge pull request #794 from web3privacy/pb/required-fields

Pb/required-fields
This commit is contained in:
DanielKlein 2024-09-20 12:13:45 +02:00 committed by GitHub
commit 0d18804db7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
491 changed files with 4069 additions and 3343 deletions

View file

@ -4,6 +4,9 @@ required:
- id
- name
- categories
- have_token
- third_party_dependency
properties:
id:
type: string
@ -39,6 +42,7 @@ properties:
type: string
have_token:
type: boolean
token_link:
type: string
format: uri
@ -64,6 +68,9 @@ properties:
type: string
team:
type: object
required:
- anonymous
properties:
anonymous:
type: boolean
@ -115,8 +122,12 @@ properties:
link:
type: string
format: uri
sunset:
type: boolean
required:
- sunset
# LINKS ---------------------------------------------------------------------
links:
type: object
@ -201,6 +212,9 @@ properties:
- features
blockchain_features:
type: object
required:
- opensource
- p2p
properties:
encryption:
type: string
@ -224,6 +238,11 @@ properties:
type: string
upgradability:
type: object
required:
- enabled
- viewing_key
- dissapearing_tx
- connected_tx
properties:
enabled:
type: boolean
@ -256,6 +275,8 @@ properties:
type: string
privacy_policy:
type: object
required:
- defined
properties:
defined:
type: boolean
@ -310,6 +331,10 @@ properties:
type: boolean
project_status:
type: object
required:
- live_status
- testnet
- mainnet
properties:
live_status:
type: boolean

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,11 +1,10 @@
id: adamant
name: Adamant
categories: [social-and-communications]
description: "Decentralized anonymous blockchain Messenger & crypto Wallet"
categories:
- social-and-communications
description: Decentralized anonymous blockchain Messenger & crypto Wallet
team:
anonymous: true
links:
web: https://adamant.im/
github: https://github.com/adamant-im
@ -14,19 +13,17 @@ links:
blog: https://news.adamant.im/
twitter: https://x.com/adamant_im
telegram: https://t.me/adamant_eng
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: true
have_token: false
token_link: https://www.coingecko.com/en/coins/adamant-messenger
tokens:
- name: ADMToken
symbol: $ADM
network: Ethereum
- name: ADMToken
symbol: $ADM
network: Ethereum
usecases:
- messaging
- messaging
third_party_dependency: false

View file

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

View file

@ -1,7 +1,8 @@
id: arcium
name: "Arcium"
categories: [infrastructure]
description: "The first parallelized confidential computing network"
name: Arcium
categories:
- infrastructure
description: The first parallelized confidential computing network
links:
web: https://arcium.com/
github: https://github.com/elusiv-privacy
@ -9,3 +10,5 @@ links:
blog: https://blog.arcium.com/
twitter: https://x.com/ArciumHQ
discord: https://discord.com/invite/arcium
have_token: false
third_party_dependency: false

View file

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

View file

@ -1,15 +1,19 @@
id: blockblend
name: BlockBlend
categories: [applications]
ecosystem: [ethereum, polygon, base, bnb, solana]
description: "Privacy Cross-Chain Decentralized Services"
categories:
- applications
ecosystem:
- ethereum
- polygon
- base
- bnb
- solana
description: Privacy Cross-Chain Decentralized Services
team:
anonymous: false
teammembers:
- name: Tom
link: https://x.com/TomBlockBlend
- name: Tom
link: https://x.com/TomBlockBlend
links:
web: https://blockblend.io/
docs: https://docs.blockblend.io/
@ -17,20 +21,18 @@ links:
blog: https://blockblendio.medium.com/
twitter: https://x.com/blockblendio
telegram: https://t.me/blockblendIO
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: true
have_token: false
token_link: https://etherscan.io/address/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124
tokens:
- name: BBL Tpken
symbol: $BBL
network: Ethereum
contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124"
- name: BBL Tpken
symbol: $BBL
network: Ethereum
contract_address: '0x0a44a7ccea34a7563ba1d45a5f757d0b02281124'
usecases:
- bridge
- bridge
third_party_dependency: false

View file

@ -1,25 +1,23 @@
id: broearn
name: Broearn
categories: [applications]
description: "Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser"
categories:
- applications
description: Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3
browser
team:
anonymous: true
links:
web: https://www.broearn.com/
docs: https://docs.broearn.com/
twitter: https://x.com/broearn
discord: https://discord.com/invite/vsfqexDTDK
telegram: https://t.me/broearn_browser
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: false
usecases:
- browser
- browser
third_party_dependency: false

View file

@ -1,15 +1,22 @@
id: chainport
name: ChainPort
categories: [infrastructure]
ecosystem: [ethereum, arbitrum, optimism, base, bnb, fantom, polygon, avalanche]
description: "next-gen custodian secure bridge"
categories:
- infrastructure
ecosystem:
- ethereum
- arbitrum
- optimism
- base
- bnb
- fantom
- polygon
- avalanche
description: next-gen custodian secure bridge
team:
anonymous: false
teammembers:
- name: DcentraLab
link: https://x.com/DcentraLab
- name: DcentraLab
link: https://x.com/DcentraLab
links:
web: https://www.chainport.io/private-bridge
github: https://github.com/chainport
@ -17,20 +24,18 @@ links:
blog: https://medium.com/chainport
twitter: https://x.com/chain_port
telegram: https://t.me/chainport_news
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: true
have_token: false
token_link: https://etherscan.io/token/0x104f3152d8ebfc3f679392977356962ff36566ac
tokens:
- name: PORTX Token
symbol: $PORTX
network: Ethereum
contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac"
- name: PORTX Token
symbol: $PORTX
network: Ethereum
contract_address: '0x104f3152d8ebfc3f679392977356962ff36566ac'
usecases:
- bridge
- bridge
third_party_dependency: false

View file

@ -1,12 +1,15 @@
id: chainback
name: Chainback
categories: [applications]
ecosystem: [ethereum, solana, bsc, polygon]
description: "Ultimate Cloud Computing & File Storage"
categories:
- applications
ecosystem:
- ethereum
- solana
- bsc
- polygon
description: Ultimate Cloud Computing & File Storage
team:
anonymous: true
links:
web: https://chainback.org/
docs: https://chainback.gitbook.io/chainback-whitepaper
@ -15,38 +18,31 @@ links:
blog: https://medium.com/@chainback.archive
twitter: https://x.com/ChainbackWeb3
telegram: https://t.me/chainback_archive
sunset: false
tokens:
- name: ARCHIVE Token
symbol: $ARCHIVE
network: Ethereum
contract_address: "0xC7f950271d118A5bdF250dFfc39128DCCED8472C"
token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C
- name: ARCHIVE Token
symbol: $ARCHIVE
network: Ethereum
contract_address: '0xC7f950271d118A5bdF250dFfc39128DCCED8472C'
token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C
funding:
name: Summus Capital
link: https://summus.capital/
blockchain_features:
opensource: false
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: true
link: https://chainback.gitbook.io/chainback-whitepaper/company-policy/privacy-policy
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
storage:
decentralized: true
usecases:
- storage
- storage
have_token: false

View file

@ -1,18 +1,21 @@
id: cloak-ai
name: Cloak Ai
categories: [applications]
description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business"
categories:
- applications
description: The purpose-built Web3 GenAI engine for the privacy conscious individual
or business
links:
web: https://www.cloakai.xyz/
twitter: https://x.com/Cloak_xyz
telegram: https://t.me/cloakai
have_token: true
have_token: false
token_link: https://etherscan.io/token/0x13f7b4581df403542286563c2f762077b2a368da
tokens:
- name: Cloak
symbol: CLOAK
network: Ethereum
contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da"
- name: Cloak
symbol: CLOAK
network: Ethereum
contract_address: '0x13f7B4581dF403542286563C2F762077B2a368Da'
sunset: false
usecases: [ai]
usecases:
- ai
third_party_dependency: false

View file

@ -1,14 +1,13 @@
id: codex
name: Codex
categories:
- applications
- applications
ecosystem:
- ethereum
description: "Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship."
- ethereum
description: Codex is a durable, decentralised data storage protocol, created so the
world community can preserve its most important knowledge without risk of censorship.
team:
anonymous: false
links:
web: https://codex.storage
github: https://github.com/codex-storage
@ -17,16 +16,15 @@ links:
blog: https://blog.codex.storage
twitter: https://x.com/codex_storage
discord: https://discord.com/invite/codex-storage
farcaster: "https://farcaster/@codexstorage"
farcaster: https://farcaster/@codexstorage
project_status:
live_status: true
version: Codex Devnet
testnet: false
mainnet: false
traceability:
kyc: false
usecases:
- storage
- storage
have_token: false
third_party_dependency: false

View file

@ -1,18 +1,17 @@
id: coti
name: Coti
categories: [infrastructure]
description: "EVM L2 solving blockchain privacy with Garbled Circuits"
categories:
- infrastructure
description: EVM L2 solving blockchain privacy with Garbled Circuits
team:
anonymous: false
teammembers:
- name: Joshua Maddox
role: CEPO
link: https://x.com/JoshuaBMaddox
- name: Shaf Bar-Geffen
role: CEO
link: https://x.com/shahafbg
- name: Joshua Maddox
role: CEPO
link: https://x.com/JoshuaBMaddox
- name: Shaf Bar-Geffen
role: CEO
link: https://x.com/shahafbg
links:
web: https://coti.io/
github: https://github.com/coti-io
@ -22,20 +21,18 @@ links:
twitter: https://x.com/COTInetwork
discord: https://discord.com/invite/wfAQfbc3Df
telegram: https://t.me/COTInetwork
project_status:
live_status: true
version: Testnet
testnet: true
mainnet: false
have_token: true
have_token: false
token_link: https://etherscan.io/token/0xddb3422497e61e13543bea06989c0789117555c5
tokens:
- name: CotiToken
symbol: $COTI
network: Ethereum
contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5"
- name: CotiToken
symbol: $COTI
network: Ethereum
contract_address: '0xDDB3422497E61e13543BeA06989C0789117555c5'
usecases:
- eth-layer-2
- eth-layer-2
third_party_dependency: false

View file

@ -1,10 +1,13 @@
id: cursive
name: "Cursive"
categories: [applications]
description: "A cryptography lab focused on human-first applications of signed data."
name: Cursive
categories:
- applications
description: A cryptography lab focused on human-first applications of signed data.
links:
web: https://www.cursive.team/
github: https://github.com/cursive-team
blog: https://www.cursive.team/blog
twitter: https://x.com/cursive_team
telegram: https://t.me/+z5REVOBXp_hmNDIx
have_token: false
third_party_dependency: false

View file

@ -1,41 +1,39 @@
id: dechat
name: DeChat
categories: [social-and-communications]
description: "open and secure web3 communications protocol that powers decentralized user interactions"
categories:
- social-and-communications
description: open and secure web3 communications protocol that powers decentralized
user interactions
team:
anonymous: false
teammembers:
- name: JAMES I. RADFORD
role: CEO
link: https://www.linkedin.com/in/james-r-aa8989165/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app
- name: ANDY DEMETRIOU
role: CMO
link: https://www.linkedin.com/in/andy-demetriou-a57778177/
- name: DANIEL DRESCHER
role: COO
link: https://www.linkedin.com/in/danieldrescher/
- name: JAMES I. RADFORD
role: CEO
link: https://www.linkedin.com/in/james-r-aa8989165/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app
- name: ANDY DEMETRIOU
role: CMO
link: https://www.linkedin.com/in/andy-demetriou-a57778177/
- name: DANIEL DRESCHER
role: COO
link: https://www.linkedin.com/in/danieldrescher/
links:
web: https://www.dechat.io/home
docs: https://dechat.gitbook.io/dechat
twitter: https://x.com/dechat_io
discord: https://discord.com/invite/dechat
telegram: https://t.me/dechat_community
project_status:
live_status: true
version: Testnet
testnet: true
mainnet: false
have_token: true
have_token: false
token_link: https://bscscan.com/token/0xd69ee2e508363fed57f89917d5ca03e715ee5519
tokens:
- name: DeChat Token
symbol: $DeChat
network: BSC
contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519"
- name: DeChat Token
symbol: $DeChat
network: BSC
contract_address: '0xD69ee2e508363FEd57f89917D5ca03e715ee5519'
usecases:
- messaging
- messaging
third_party_dependency: false

View file

@ -1,14 +1,13 @@
id: deguard
name: DeGuard
categories: [applications]
description: "Provide utimate privacy based on web3"
categories:
- applications
description: Provide utimate privacy based on web3
team:
anonymous: false
teammembers:
- name: Niktim
link: https://x.com/Crypto_Niktim
- name: Niktim
link: https://x.com/Crypto_Niktim
links:
web: https://deguard.io/
github: https://github.com/deguardvpn
@ -16,14 +15,12 @@ links:
twitter: https://x.com/DeGuardVPN
discord: https://discord.com/invite/agv3a9wGUn
telegram: https://t.me/DeGuardVPN
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: false
usecases:
- vpn
- vpn
third_party_dependency: false

View file

@ -1,17 +1,17 @@
id: denet
name: DeNet
categories: [applications]
ecosystem: [polygon]
description: "Decentralized Storage Protocol for Web3 services "
categories:
- applications
ecosystem:
- polygon
description: 'Decentralized Storage Protocol for Web3 services '
team:
anonymous: false
teammembers:
- name: Denis Shelestov
link: https://x.com/djdeniro1
- name: Daniil Maslov
link: https://x.com/tttcrp
- name: Denis Shelestov
link: https://x.com/djdeniro1
- name: Daniil Maslov
link: https://x.com/tttcrp
links:
web: https://denet.pro/
github: https://github.com/denetpro
@ -20,32 +20,26 @@ links:
twitter: https://x.com/DeNetPro
telegram: https://t.me/denetnews
discord: https://discord.com/invite/PSnjPCq4x5
sunset: false
tokens:
- name: DeNet File Token
symbol: $DE
network: Polygon
contract_address: "0x081ec4c0e30159c8259bad8f4887f83010a681dc"
token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc
- name: DeNet File Token
symbol: $DE
network: Polygon
contract_address: '0x081ec4c0e30159c8259bad8f4887f83010a681dc'
token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: false
privacy_policy:
defined: false
default_privacy: true
traceability:
kyc: false
compliance: false
storage:
decentralized: true
usecases:
- storage
- storage
have_token: false
third_party_dependency: false

View file

@ -1,17 +1,19 @@
id: ergo-platform
name: Ergo Platform
categories: [infrastructure]
ecosystem: [ergo, btc]
description: "Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools"
categories:
- infrastructure
ecosystem:
- ergo
- btc
description: Ergo is the next-gen smart contract platform! Bringing economic freedom
to ordinary people through decentralized financial tools
team:
anonymous: false
teammembers:
- name: Alex Chepurnoy
link: https://x.com/chepurnoy
- name: qx
link: https://x.com/qx_ergo
- name: Alex Chepurnoy
link: https://x.com/chepurnoy
- name: qx
link: https://x.com/qx_ergo
links:
web: https://ergoplatform.org/en/
github: https://github.com/ergoplatform
@ -22,34 +24,29 @@ links:
twitter: https://x.com/ergo_platform
telegram: https://t.me/Ergo_Chats
discord: https://discord.com/invite/ergo-platform-668903786361651200
sunset: false
tokens:
- name: Ergo Token
symbol: $ERG
network: Ergochain
token_link: https://www.coingecko.com/en/coins/ergo
- name: Ergo Token
symbol: $ERG
network: Ergochain
token_link: https://www.coingecko.com/en/coins/ergo
blockchain_features:
opensource: true
p2p: false
asset_custody_type: non-custody
privacy_policy:
defined: true
link: https://ergoplatform.org/en/privacy-policy/
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
audits:
- name: Jean-Philipee Aumasson
link: https://www.aumasson.jp/
time: 2019-12
- name: Jean-Philipee Aumasson
link: https://www.aumasson.jp/
time: 2019-12
usecases:
- infrastructure
- infrastructure
have_token: false

View file

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

View file

@ -1,9 +1,13 @@
id: fairmath
name: "FairMath"
categories: [applications]
description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)"
name: FairMath
categories:
- applications
description: Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption
(FHE)
links:
web: https://fairmath.xyz/
github: https://github.com/fairmath
twitter: https://x.com/FairMath
discord: https://discord.com/invite/NfhXwyr9M5
have_token: false
third_party_dependency: false

View file

@ -1,7 +1,8 @@
id: fhenix
name: "Fhenix"
categories: [applications]
description: "Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality."
name: Fhenix
categories:
- applications
description: Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality.
links:
web: https://www.fhenix.io/
github: https://github.com/FhenixProtocol
@ -10,3 +11,5 @@ links:
blog: https://medium.com/@Fhenix
twitter: https://x.com/FhenixIO
discord: https://discord.com/invite/FuVgxrvJMY
have_token: false
third_party_dependency: false

View file

@ -1,20 +1,22 @@
id: humanode
name: Humanode
categories: [applications]
ecosystem: [polkadot]
description: "1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web"
categories:
- applications
ecosystem:
- polkadot
description: 1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for
the web
team:
anonymous: false
teammembers:
- name: Dato Kavazi
link: https://x.com/DatoKavazi
- name: Sasha Shilina
link: https://x.com/sshshln
- name: Andrei Kraciun
link: https://x.com/andreikraciun
- name: Victor
link: https://x.com/tech_mingler
- name: Dato Kavazi
link: https://x.com/DatoKavazi
- name: Sasha Shilina
link: https://x.com/sshshln
- name: Andrei Kraciun
link: https://x.com/andreikraciun
- name: Victor
link: https://x.com/tech_mingler
links:
web: https://humanode.io/
github: https://github.com/humanode-network
@ -25,33 +27,27 @@ links:
twitter: https://x.com/humanode_io
telegram: https://t.me/humanode
discord: https://discord.com/invite/8my5gbgptx
sunset: false
tokens:
- name: Humanode Token
symbol: $HMND
network: Humanodechain
token_link: https://coinmarketcap.com/currencies/humanode/
- name: Humanode Token
symbol: $HMND
network: Humanodechain
token_link: https://coinmarketcap.com/currencies/humanode/
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: false
privacy_policy:
defined: false
default_privacy: true
traceability:
kyc: false
third_party_dependency: false
compliance: false
audits:
- name: Certik
link: https://skynet.certik.com/projects/humanode
time: "2023-01-30"
- name: Certik
link: https://skynet.certik.com/projects/humanode
time: '2023-01-30'
usecases:
- did
- did
have_token: false

View file

@ -1,46 +1,43 @@
id: ivpn
name: IVPN
categories: [applications]
description: "Audited, privacy focused VPN service."
categories:
- applications
description: Audited, privacy focused VPN service.
team:
anonymous: false
teammembers:
- name: Nicholas Pestell
role: CEO
link: https://github.com/cipheromega
- name: Edward De
role: Technical Support Lead
link: https://www.linkedin.com/in/edward-de-91793b163/
- name: Iain Douglas
link: https://github.com/Iain-ivpn
- name: Gorka Pernas
role: Senior QA Engineer
link: https://github.com/gorkapernas
- name: Natanael Rodriguez
link: https://github.com/nathanrod
- name: Juraj Hilje
role: Dev
link: https://github.com/jurajhilje
- name: Alexandr Stelnykovych
role: Dev
link: https://github.com/stenya
- name: Jordan Sullivan
link: https://github.com/jordan-ivpn
- name: Nicholas Pestell
role: CEO
link: https://github.com/cipheromega
- name: Edward De
role: Technical Support Lead
link: https://www.linkedin.com/in/edward-de-91793b163/
- name: Iain Douglas
link: https://github.com/Iain-ivpn
- name: Gorka Pernas
role: Senior QA Engineer
link: https://github.com/gorkapernas
- name: Natanael Rodriguez
link: https://github.com/nathanrod
- name: Juraj Hilje
role: Dev
link: https://github.com/jurajhilje
- name: Alexandr Stelnykovych
role: Dev
link: https://github.com/stenya
- name: Jordan Sullivan
link: https://github.com/jordan-ivpn
links:
web: https://www.ivpn.net/en/
github: https://github.com/ivpn
blog: https://www.ivpn.net/en/blog/
twitter: https://x.com/ivpnnet
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: false
usecases:
- vpn
- vpn
third_party_dependency: false

View file

@ -1,7 +1,9 @@
id: inco
name: "Inco"
categories: [infrastructure]
description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains "
name: Inco
categories:
- infrastructure
description: 'Universal confidentiality layer for Web3, enabling the development of
next-generation dApps, providing confidentiality to existing blockchains '
team:
anonymous: false
links:
@ -13,3 +15,5 @@ links:
twitter: https://x.com/inconetwork
discord: https://discord.com/invite/fnKZp2qHPQ
telgram: https://t.me/inconetwork
have_token: false
third_party_dependency: false

View file

@ -1,18 +1,18 @@
id: intmax
name: Intmax
categories:
- infrastructure
ecosystem: [ethereum]
- infrastructure
ecosystem:
- ethereum
project_type: Layer2 zk-rollup
description: "A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time."
description: A zkRollup with a stateless architecture. Achieving hyper-scaling and
privacy at the same time.
team:
anonymous: false
teammembers:
- name: Leona Hioki
role: Co-founder
link: https://x.com/HiokiLeona
- name: Leona Hioki
role: Co-founder
link: https://x.com/HiokiLeona
links:
web: https://www.intmax.io/
github: https://github.com/InternetMaximalism
@ -21,14 +21,12 @@ links:
twitter: https://x.com/intmaxIO
discord: https://discord.com/invite/N7kYGUPDEE
telegram: https://t.me/QM1EbIzxACsxMDk1
project_status:
live_status: true
version: testnet2
testnet: true
mainnet: false
have_token: false
usecases:
- eth-layer-2
- eth-layer-2
third_party_dependency: false

View file

@ -1,15 +1,14 @@
id: kinto
name: Kinto
categories: [infrastructure]
description: "The safety-first L2 for Finance"
categories:
- infrastructure
description: The safety-first L2 for Finance
team:
anonymous: false
teammembers:
- name: Ramon Recuero
role: CEO
link: https://x.com/ramonrecuero
- name: Ramon Recuero
role: CEO
link: https://x.com/ramonrecuero
links:
web: https://www.kinto.xyz/
github: https://github.com/kintoxyz
@ -19,20 +18,18 @@ links:
blog: https://mirror.xyz/kintoxyz.eth
twitter: https://x.com/KintoXYZ
discord: https://discord.com/invite/kinto?a=1
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: true
have_token: false
token_link: https://kintoscan.io/token/0x010700808D59d2bb92257fCafACfe8e5bFF7aB87?chainid=7887
tokens:
- name: KINTO
symbol: $KINTO
network: Kinto
contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87"
- name: KINTO
symbol: $KINTO
network: Kinto
contract_address: '0x010700808D59d2bb92257fCafACfe8e5bFF7aB87'
usecases:
- eth-layer-2
- eth-layer-2
third_party_dependency: false

View file

@ -1,35 +1,35 @@
id: mailchain
name: Mailchain
categories: [applications]
ecosystem: [ethereum]
description: "Web3 communication layer & web3 email for everyone"
categories:
- applications
ecosystem:
- ethereum
description: Web3 communication layer & web3 email for everyone
team:
anonymous: false
teammembers:
- name: Tim Boeckmann
link: https://x.com/t_boeckmann
- name: Rob De Feo
link: https://x.com/robdefeo
- name: Misha Deville
link: https://x.com/MishaDV_
- name: Elizabeth Stuart-Morris
link: https://x.com/esm_iam
- name: Hannah Anderson
link: https://www.linkedin.com/in/hannahsanderson/
- name: Alexandru Velicu
link: https://www.linkedin.com/in/velicu-a-73794348/
- name: Zubeyir O.
link: https://github.com/zubeyiro
- name: Antonio Ivanovski
link: https://github.com/toteto
- name: Nathan Sorochan
link: https://x.com/nathansorochan
- name: Tom Sargent
link: https://x.com/expensive_jpeg
- name: Becky Prunty
link: https://www.linkedin.com/in/becky-prunty-b93406a9/
- name: Tim Boeckmann
link: https://x.com/t_boeckmann
- name: Rob De Feo
link: https://x.com/robdefeo
- name: Misha Deville
link: https://x.com/MishaDV_
- name: Elizabeth Stuart-Morris
link: https://x.com/esm_iam
- name: Hannah Anderson
link: https://www.linkedin.com/in/hannahsanderson/
- name: Alexandru Velicu
link: https://www.linkedin.com/in/velicu-a-73794348/
- name: Zubeyir O.
link: https://github.com/zubeyiro
- name: Antonio Ivanovski
link: https://github.com/toteto
- name: Nathan Sorochan
link: https://x.com/nathansorochan
- name: Tom Sargent
link: https://x.com/expensive_jpeg
- name: Becky Prunty
link: https://www.linkedin.com/in/becky-prunty-b93406a9/
links:
web: https://mailchain.com/
github: https://github.com/mailchain
@ -39,24 +39,20 @@ links:
twitter: https://x.com/Mailchain_xyz
lens: https://hey.xyz/u/mailchain
farcaster: https://warpcast.com/mailchain
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: true
link: https://mailchain.com/terms
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
usecases:
- dapps
- dapps
have_token: false

View file

@ -1,12 +1,16 @@
id: media-network
name: Media Network
categories: [infrastructure]
ecosystem: [ethereum, solana, base, bnb, optimist]
description: "The Web3 replacement for AWS and Google Cloud"
categories:
- infrastructure
ecosystem:
- ethereum
- solana
- base
- bnb
- optimist
description: The Web3 replacement for AWS and Google Cloud
team:
anonymous: true
links:
web: https://www.media.network/
github: https://github.com/mediafoundation
@ -15,29 +19,24 @@ links:
twitter: https://x.com/Media_FDN
telegram: https://t.me/Media_FDN
discord: https://discord.com/invite/nyCS7ePWzf
sunset: false
tokens:
- name: Media Token
symbol: $MEDIA
network: Ethereum
contract_address: "0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1"
token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1
- name: Media Token
symbol: $MEDIA
network: Ethereum
contract_address: '0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1'
token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: false
default_privacy: true
traceability:
kyc: false
third_party_dependency: false
compliance: false
usecases:
- computing
- computing
have_token: false

View file

@ -1,11 +1,10 @@
id: nata-network
name: Nata network
categories: [infrastructure]
description: "Nata Network is your portal to private cross-chain transactions."
categories:
- infrastructure
description: Nata Network is your portal to private cross-chain transactions.
team:
anonymous: true
links:
web: https://app.natarouter.com/
github: https://github.com/shichiro-nakahara
@ -14,14 +13,12 @@ links:
blog: https://mirror.xyz/natanetwork.eth
twitter: https://x.com/nata_network_io
discord: https://discord.com/invite/m9Ma7PbFwb
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: false
usecases:
- bridge
- bridge
third_party_dependency: false

View file

@ -1,7 +1,9 @@
id: nuco-cloud
name: Nuco-cloud
categories: [applications]
description: "Enabling tomorrows tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction."
categories:
- applications
description: "Enabling tomorrow\u2019s tech like Ai with scalable, sustainable computing\
\ power and up to a 90% cost reduction."
links:
web: https://www.nuco.cloud/
github: https://github.com/IronEagleCapital
@ -11,13 +13,14 @@ links:
discord: https://discord.com/invite/5fSC5aEhpm
facebook: https://www.facebook.com/nuco.cloud.distributedcloudcomputing/
telegram: https://t.me/officialnucocloudgroup
have_token: true
have_token: false
token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B
tokens:
- name: nuco.cloud
symbol: NCDT
network: Ethereum
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
- name: nuco.cloud
symbol: NCDT
network: Ethereum
contract_address: '0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b'
sunset: false
usecases: [ai]
usecases:
- ai
third_party_dependency: false

View file

@ -1,20 +1,22 @@
id: opsec
name: OpSec
categories: [applications]
description: " AI-powered decentralized cloud security."
categories:
- applications
description: ' AI-powered decentralized cloud security.'
links:
web: https://opsec.computer/
docs: https://docs.opsec.computer/
twitter: https://x.com/OpSecCloud
discord: https://discord.com/invite/opseccloud
telegram: https://t.me/OpSecCloud
have_token: true
have_token: false
token_link: https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98
tokens:
- name: Opsec
symbol: OPSEC
network: Ethereum
contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98"
- name: Opsec
symbol: OPSEC
network: Ethereum
contract_address: '0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98'
sunset: false
usecases: [ai]
usecases:
- ai
third_party_dependency: false

View file

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

View file

@ -1,21 +1,21 @@
id: oxo
name: OxO
categories: [applications]
ecosystem: [ethereum]
description: "All-in-One Privacy Exchange"
categories:
- applications
ecosystem:
- ethereum
description: All-in-One Privacy Exchange
team:
anonymous: false
teammembers:
- name: Sir Enigma
link: https://x.com/abdel_hhh
- name: Smokey
link: https://x.com/Smokey_0x0
- name: Jay
link: https://x.com/xcyb0rg
- name: Andy
link: https://t.me/Andy_0x0
- name: Sir Enigma
link: https://x.com/abdel_hhh
- name: Smokey
link: https://x.com/Smokey_0x0
- name: Jay
link: https://x.com/xcyb0rg
- name: Andy
link: https://t.me/Andy_0x0
links:
web: https://0x0.ai/
github: https://github.com/0x0exchange
@ -24,29 +24,25 @@ links:
twitter: https://x.com/0x0exchange
telegram: https://t.me/Portal0x0
discord: https://discord.com/invite/0x0exchange
sunset: false
tokens:
- name: OxO Token
symbol: $OxO
network: Ethereum
contract_address: "0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5"
token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5
- name: OxO Token
symbol: $OxO
network: Ethereum
contract_address: '0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5'
token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: false
privacy_policy:
defined: false
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
usecases: [ai]
usecases:
- ai
have_token: false

View file

@ -1,31 +1,31 @@
id: presearch
name: Preserch
categories: [applications]
ecosystem: [ethereum]
description: "The Decentralized Search Engine with more than 4 million members"
categories:
- applications
ecosystem:
- ethereum
description: The Decentralized Search Engine with more than 4 million members
team:
anonymous: false
teammembers:
- name: Tim Enneking
link: https://www.linkedin.com/in/timothy-enneking-a725905/
- name: Mark Torelli
link: https://www.linkedin.com/in/mark-torelli
- name: Jeff Hunt
link: https://www.linkedin.com/in/jeff-hunt-b302631b
- name: Ed Reese
link: https://www.linkedin.com/in/edreese/
- name: Brenden Tacon
link: https://www.linkedin.com/in/brenden-tacon-81abb211/
- name: Todd Enneking
link: https://www.linkedin.com/in/toddenneking/
- name: Colin Pape
link: https://www.linkedin.com/in/colinpape
- name: Trey Grainger
link: https://www.linkedin.com/in/treygrainger/
- name: Luís Dalmolin
link: https://www.linkedin.com/in/luisdalmolin/
- name: Tim Enneking
link: https://www.linkedin.com/in/timothy-enneking-a725905/
- name: Mark Torelli
link: https://www.linkedin.com/in/mark-torelli
- name: Jeff Hunt
link: https://www.linkedin.com/in/jeff-hunt-b302631b
- name: Ed Reese
link: https://www.linkedin.com/in/edreese/
- name: Brenden Tacon
link: https://www.linkedin.com/in/brenden-tacon-81abb211/
- name: Todd Enneking
link: https://www.linkedin.com/in/toddenneking/
- name: Colin Pape
link: https://www.linkedin.com/in/colinpape
- name: Trey Grainger
link: https://www.linkedin.com/in/treygrainger/
- name: "Lu\xEDs Dalmolin"
link: https://www.linkedin.com/in/luisdalmolin/
links:
web: https://presearch.com/
github: https://github.com/presearchofficial
@ -36,39 +36,32 @@ links:
twitter: https://x.com/presearchnews
telegram: https://t.me/presearch
discord: https://discord.com/invite/KUpshRZz2n
sunset: false
tokens:
- name: Pre Token
symbol: $PRE
network: Ethereum
contract_address: "0xEC213F83defB583af3A000B1c0ada660b1902A0F"
token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F
- name: Pre Token
symbol: $PRE
network: Ethereum
contract_address: '0xEC213F83defB583af3A000B1c0ada660b1902A0F'
token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: true
link: https://presearch.com/privacy
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
audits:
- name: Mantisec Lab
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
time: 2023-10
- name: Mantisec Lab
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
time: 2023-10
storage:
decentralized: true
usecases:
- browser
- browser
have_token: false

View file

@ -1,7 +1,8 @@
id: privasea
name: "Privasea"
categories: [infrastructure]
description: "An AI + DePIN Network enabled through FHEML"
name: Privasea
categories:
- infrastructure
description: An AI + DePIN Network enabled through FHEML
links:
web: https://www.privasea.ai/
github: https://github.com/Privasea
@ -11,3 +12,5 @@ links:
twitter: https://x.com/Privasea_ai
discord: https://discord.com/invite/yRtQGvWkvG
telegram: https://t.me/Privasea_ai
have_token: false
third_party_dependency: false

View file

@ -1,46 +1,42 @@
id: privy
name: Privy
categories: [applications]
ecosystem: [solana]
description: "Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe."
categories:
- applications
ecosystem:
- solana
description: Privy builds authentication, authorization and data control tooling so
developers can deliver amazing products that keep users safe.
team:
anonymous: false
teammembers:
- name: Colfax
link: https://x.com/colfaxselby
- name: Jainil Sutaria
link: https://x.com/jainilsutaria1
- name: Colfax
link: https://x.com/colfaxselby
- name: Jainil Sutaria
link: https://x.com/jainilsutaria1
links:
web: https://www.privy.io/
github: https://github.com/privy-io
docs: https://docs.privy.io/
blog: https://www.privy.io/blog
twitter: https://x.com/privy_io
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: true
link: https://www.privy.io/privacy-policy
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
audits:
- name: Zellic
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
time: 2023-08
- name: Zellic
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
time: 2023-08
usecases:
- wallets
- wallets
have_token: false

View file

@ -1,33 +1,31 @@
id: raw-box
name: RawBox
categories: [hardware]
ecosystem: [nym]
description: "Redefined privacy-enabled router."
categories:
- hardware
ecosystem:
- nym
description: Redefined privacy-enabled router.
team:
anonymous: false
teammembers:
- name: Oleksandr
link: https://x.com/oleksky
- name: crptcpchk
link: https://x.com/the01100011
- name: Yana Matrosova
link: https://x.com/yana_tnfl
- name: Beyond
link: https://x.com/Beyond_Karto
- name: Oleksandr
link: https://x.com/oleksky
- name: crptcpchk
link: https://x.com/the01100011
- name: Yana Matrosova
link: https://x.com/yana_tnfl
- name: Beyond
link: https://x.com/Beyond_Karto
links:
github: https://github.com/Raw-Box/
twitter: https://x.com/rawbox_tech
telegram: https://t.me/+G4ixLEgYBXJkZWRi
project_status:
live_status: true
version: Testnet
testnet: true
mainnet: false
have_token: false
usecases:
- hardware
- hardware
third_party_dependency: false

View file

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

View file

@ -1,30 +1,33 @@
id: ritual
name: Ritual
categories: [applications]
ecosystem: [ethereum, solana, polygon]
description: "We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code."
product_launch_day: "2023"
categories:
- applications
ecosystem:
- ethereum
- solana
- polygon
description: We are building a way for any protocol, application, or smart contract
to integrate AI models with a few lines of code.
product_launch_day: '2023'
team:
anonymous: false
teammembers:
- name: Niraj Pant
link: https://x.com/niraj
- name: Akilesh Potti
link: https://x.com/akileshpotti
- name: Anish Agnihotri
link: https://x.com/_anishagnihotri
- name: Eva Zhang
link: https://www.linkedin.com/in/evazhang612/
- name: Saneel Sreeni
link: https://x.com/sanlsrni
- name: Maryam Bahrani
link: https://www.mbahrani.net/
- name: Yahya Hassanzadeh
link: https://www.linkedin.com/in/yhassanzadeh/
- name: Praveen Palanisamy
link: https://www.linkedin.com/in/praveenpalanisamy/
- name: Niraj Pant
link: https://x.com/niraj
- name: Akilesh Potti
link: https://x.com/akileshpotti
- name: Anish Agnihotri
link: https://x.com/_anishagnihotri
- name: Eva Zhang
link: https://www.linkedin.com/in/evazhang612/
- name: Saneel Sreeni
link: https://x.com/sanlsrni
- name: Maryam Bahrani
link: https://www.mbahrani.net/
- name: Yahya Hassanzadeh
link: https://www.linkedin.com/in/yhassanzadeh/
- name: Praveen Palanisamy
link: https://www.linkedin.com/in/praveenpalanisamy/
links:
web: https://ritual.net/
github: https://github.com/ritual-net
@ -32,24 +35,21 @@ links:
blog: https://ritual.net/blog
twitter: https://x.com/ritualnet
discord: https://discord.com/invite/ritual-net
sunset: false
funding:
name: archetype
link: https://ritual.net/blog/introducing-ritual
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: false
default_privacy: true
traceability:
kyc: false
third_party_dependency: false
compliance: false
usecases: [ai]
usecases:
- ai
have_token: false

View file

@ -1,15 +1,22 @@
id: rotki
name: Rotki
categories: [applications]
ecosystem: [ethereum, bitcoin, base, optimist, gnosis, scroll, zksync]
description: "rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy"
categories:
- applications
ecosystem:
- ethereum
- bitcoin
- base
- optimist
- gnosis
- scroll
- zksync
description: rotki is an open source portfolio tracker, accounting and analytics tool
that protects your privacy
team:
anonymous: false
teammembers:
- name: Lefteris Karapetsas
link: https://x.com/LefterisJP
- name: Lefteris Karapetsas
link: https://x.com/LefterisJP
links:
web: https://rotki.com/
github: https://github.com/rotki/rotki
@ -17,24 +24,20 @@ links:
blog: https://blog.rotki.com/
twitter: https://x.com/rotkiapp
discord: https://discord.rotki.com/
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: true
privacy_policy:
defined: true
link: https://rotki.com/privacy-policy
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
usecases:
- dapps
- dapps
have_token: false

View file

@ -1,42 +1,37 @@
id: self
name: Self
categories: [applications]
description: "Build identification and personal data management for everything"
categories:
- applications
description: Build identification and personal data management for everything
team:
anonymous: false
teammembers:
- name: Dan Sutherland
link: https://www.linkedin.com/in/dansuth/
- name: Sena Gbeckor-Kove
link: https://www.linkedin.com/in/senagbe/
- name: Jason Reid
link: https://www.linkedin.com/in/jason-reid-1a12833/
- name: Dan Sutherland
link: https://www.linkedin.com/in/dansuth/
- name: Sena Gbeckor-Kove
link: https://www.linkedin.com/in/senagbe/
- name: Jason Reid
link: https://www.linkedin.com/in/jason-reid-1a12833/
links:
web: https://www.joinself.com/
github: https://github.com/joinself
docs: https://docs.joinself.com/
twitter: https://x.com/futureoftrust
sunset: false
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: false
privacy_policy:
defined: true
link: https://www.joinself.com/company/legal
default_privacy: true
traceability:
kyc: false
third_party_dependency: false
compliance: false
storage:
decentralized: true
usecases:
- did
- did
have_token: false

View file

@ -1,16 +1,15 @@
id: sentz
name: Sentz
categories: [applications]
description: "Global payments app for Freelancers & Creators"
categories:
- applications
description: Global payments app for Freelancers & Creators
team:
anonymous: false
teammembers:
- name: Sara Drakeley
link: https://www.linkedin.com/in/sara-drakeley/
- name: Henry Holtzman
link: https://www.linkedin.com/in/holtzmanh/?original_referer=https%3A%2F%2Fwww.sentz.com%2F
- name: Sara Drakeley
link: https://www.linkedin.com/in/sara-drakeley/
- name: Henry Holtzman
link: https://www.linkedin.com/in/holtzmanh/?original_referer=https%3A%2F%2Fwww.sentz.com%2F
links:
web: https://www.sentz.com/
github: https://github.com/mobilecoinofficial
@ -19,34 +18,29 @@ links:
blog: https://www.sentz.com/blog
twitter: https://x.com/sentzapp
discord: https://discord.com/invite/mobilecoin
sunset: false
tokens:
- name: Mobile Coin
symbol: $MOB
token_link: https://www.coingecko.com/en/coins/mobilecoin
- name: Mobile Coin
symbol: $MOB
token_link: https://www.coingecko.com/en/coins/mobilecoin
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: false
privacy_policy:
defined: true
link: https://www.sentz.com/privacy-policy
default_privacy: true
traceability:
kyc: false
sign_in_type_requirments: wallet
third_party_dependency: false
compliance: false
audits:
- name: Trail of Bits
link: https://www.sentz.com/developers/audits
assets_used: [EUSD]
- name: Trail of Bits
link: https://www.sentz.com/developers/audits
assets_used:
- EUSD
usecases:
- dapps
- dapps
have_token: false

View file

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

View file

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

View file

@ -1,9 +1,12 @@
id: sunscreen
name: "Sunsscreen"
categories: [applications]
description: "Privacy engine of the new web."
name: Sunsscreen
categories:
- applications
description: Privacy engine of the new web.
links:
web: https://sunscreen.tech/
blog: https://blog.sunscreen.tech/
twitter: https://x.com/sunscreentech
discord: https://discord.com/invite/WHCs6jNNDS
have_token: false
third_party_dependency: false

View file

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

View file

@ -1,29 +1,26 @@
id: synaps
name: Synaps
categories: [applications]
description: "KYC provider and verifiable credential issuer for DID protocols."
categories:
- applications
description: KYC provider and verifiable credential issuer for DID protocols.
team:
anonymous: false
teammembers:
- name: Florian Le Goff
role: CEO
link: https://x.com/0xAnimaniac
- name: Florian Le Goff
role: CEO
link: https://x.com/0xAnimaniac
links:
web: https://synaps.io/
github: https://github.com/synaps-io
docs: https://docs.synaps.io/
blog: https://synaps.io/blog
twitter: https://x.com/synaps_id
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: false
usecases:
- kyc-solution
- kyc-solution
third_party_dependency: false

View file

@ -1,18 +1,17 @@
id: taceo
name: Taceo
categories: [infrastructure]
description: "Encrypted Computation Layer; MPC + ZK"
categories:
- infrastructure
description: Encrypted Computation Layer; MPC + ZK
team:
anonymous: false
teammembers:
- name: Roman Walch
role: Co-founder
link: https://x.com/rw0x0
- name: Lukas Helminger
role: CEO
link: https://x.com/luhelminger
- name: Roman Walch
role: Co-founder
link: https://x.com/rw0x0
- name: Lukas Helminger
role: CEO
link: https://x.com/luhelminger
links:
web: https://taceo.io/
github: https://github.com/TaceoLabs
@ -20,11 +19,11 @@ links:
blog: https://blog.taceo.io/
twitter: https://x.com/TACEO_IO
discord: https://discord.com/invite/gWZW2TANpk
project_status:
live_status: true
mainnet: true
testnet: true
have_token: false
usecases:
- computing
- computing
third_party_dependency: false

View file

@ -1,11 +1,10 @@
id: the-4th-pillar
name: The 4th Pillar
categories: [social-and-communications]
description: "Web3 Aligned Email & Chat Super App"
categories:
- social-and-communications
description: Web3 Aligned Email & Chat Super App
team:
anonymous: true
links:
web: https://the4thpillar.io/
github: https://github.com/4P-project/
@ -15,20 +14,18 @@ links:
twitter: https://x.com/4pfour
discord: https://discord.com/invite/WaZZXeBhg4
telegram: https://t.me/the4thpillarofficial
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
have_token: true
have_token: false
token_link: https://etherscan.io/token/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0
tokens:
- name: The 4th Pillar Token
symbol: $FOUR
network: Ethereum
contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0"
- name: The 4th Pillar Token
symbol: $FOUR
network: Ethereum
contract_address: '0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0'
usecases:
- messaging
- messaging
third_party_dependency: false

View file

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

View file

@ -1,26 +1,26 @@
id: vocdoni
name: Vocdoni
categories: [applications]
ecosystem: [ethereum]
description: "To build open source solutions to facilitate decision making in any organization."
categories:
- applications
ecosystem:
- ethereum
description: To build open source solutions to facilitate decision making in any organization.
team:
anonymous: false
teammembers:
- name: Joan Arus
link: https://x.com/Joan_Arus
- name: Jordi Aulet
link: https://x.com/jp_aulet
- name: Pau Escrich
link: https://x.com/wildp4u
- name: Jordi Pinyana
- name: Marta Sancho
link: https://x.com/MartaMordis
- name: Guido Iribarren
link: https://github.com/altergui
- name: Lucas Menéndez
link: https://github.com/lucasmenendez
- name: Joan Arus
link: https://x.com/Joan_Arus
- name: Jordi Aulet
link: https://x.com/jp_aulet
- name: Pau Escrich
link: https://x.com/wildp4u
- name: Jordi Pinyana
- name: Marta Sancho
link: https://x.com/MartaMordis
- name: Guido Iribarren
link: https://github.com/altergui
- name: "Lucas Men\xE9ndez"
link: https://github.com/lucasmenendez
links:
web: https://www.vocdoni.io/
github: https://github.com/vocdoni
@ -29,27 +29,21 @@ links:
blog: https://blog.vocdoni.io/
twitter: https://x.com/vocdoni
discord: https://discord.com/invite/Qjm7krrFBf
sunset: false
funding:
name: Aragon grant 2021/2022
link: https://x.com/AragonProject
blockchain_features:
opensource: true
asset_custody_type: non-custody
p2p: false
privacy_policy:
defined: false
default_privacy: true
third_party_dependency: false
compliance: false
storage:
decentralized: true
usecases:
- dapps
- dapps
have_token: false

View file

@ -1,9 +1,13 @@
id: zama
name: "Zama"
categories: [infrastructure]
description: "an open source cryptography company building FHE solutions for blockchain and AI."
name: Zama
categories:
- infrastructure
description: an open source cryptography company building FHE solutions for blockchain
and AI.
team:
anonymous: false
links:
web: https://www.zama.ai
docs: https://docs.zama.ai/
have_token: false
third_party_dependency: false

View file

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

View file

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

View file

@ -1,16 +1,17 @@
name: AesirX WEB3 ID
categories: [applications]
description: "an advanced identity management solution that protects users personal data and ensures privacy on the internet."
categories:
- applications
description: "an advanced identity management solution that protects users\u2019 personal\
\ data and ensures privacy on the internet."
links:
web: https://web3id.aesirx.io
github: https://github.com/aesirxio
whitepaper: https://whitepaper.aesirx.io/
blog: https://aesirx.io/blog/aesirx
twitter: https://x.com/aesirxio
facebook: https://www.facebook.com/aesirxio
telegram: https://t.me/aesirx_official_community
have_token: true
have_token: false
usecases:
- did
- did
third_party_dependency: false

View file

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

View file

@ -1,6 +1,9 @@
name: Aleo
categories: [infrastructure]
description: "An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1."
categories:
- infrastructure
description: An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy,
and run your apps in a single place. Build full-stack, private applications with
ZK on layer 1.
team:
anonymous: true
links:
@ -13,28 +16,30 @@ links:
docs: https://developer.aleo.org/getting_started/
blog: https://aleo.org/blog/
project_status:
live_status: true
version: Testnet
open_source: true
testnet: true
mainnet: false
live_status: true
technology:
type: zk-SNARKs
features:
- ZK circuit programming
- SNARK validator network
- ZK circuit programming
- SNARK validator network
blockchain_features:
opensource: true
p2p: true
viewing_key: true
dissapearing_tx: true
connected_tx: true
client_diversability:
- name: address
link: https://explorer.aleo.org/validators
- name: address
link: https://explorer.aleo.org/validators
default_privacy: true
storage:
decentralized: true
compliance: false
third_party_dependency: false
usecases:
- infrastructure
- infrastructure
have_token: false

View file

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

View file

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

View file

@ -1,16 +1,17 @@
name: Anagolay
categories: [applications]
description: "Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P"
categories:
- applications
description: Web3 Framework for Original Creators to claim and verify ownership of
online identities and multimedia content and license creative works P2P
links:
web: https://anagolay.network
github: https://github.com/anagolay
docs: https://anagolay.dev/docs/
whitepaper: https://kelp.notion.site/Anagolay-White-Paper-v_0-3-fd9ca46a2f524e83b46ed8a0242d618d
blog: https://anagolay.dev/blog/
twitter: https://x.com/AnagolayNet
discord: https://discord.com/invite/WHe4EuY
have_token: true
have_token: false
usecases:
- did
- did
third_party_dependency: false

View file

@ -1,17 +1,22 @@
name: Anoma
categories: [infrastructure]
description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement"
categories:
- infrastructure
description: An intent-centric, privacy-preserving protocol for decentralized counterparty
discovery, solving, and multi-chain atomic settlement
project_status:
version: "testnet"
version: testnet
testnet: true
mainnet: false
live_status: true
team:
anonymous: false
teammembers:
- name: Christopher Goes
role: CTO
- name: Adrian Brink
role: Co-founder
- name: Awa Sun Yin
role: CEO
- name: Christopher Goes
role: CTO
- name: Adrian Brink
role: Co-founder
- name: Awa Sun Yin
role: CEO
links:
web: https://anoma.net
docs: https://github.com/anoma/anoma-archive/tree/main/docs
@ -22,12 +27,13 @@ links:
technology:
type: ZK, FHE
features:
- privacy for content
- privacy for content
blockchain_features:
p2p: true
opensource: true
storage:
decentralized: true
usecases:
- infrastructure
- infrastructure
have_token: false
third_party_dependency: false

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,19 +1,20 @@
name: Arcana
categories: [infrastructure]
description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption"
categories:
- infrastructure
description: Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption
team:
anonymous: false
teammembers:
- name: Mayur Relekar
role: Co-Founder
- name: Aravindh Kumar
role: Co-Founder
- name: Ajay Shetty
role: Chief Operating Officer
- name: Abhishek Chaudhary
role: Chief Technology Officer
- name: Sharan Grandigae
role: Sharan Grandigae
- name: Mayur Relekar
role: Co-Founder
- name: Aravindh Kumar
role: Co-Founder
- name: Ajay Shetty
role: Chief Operating Officer
- name: Abhishek Chaudhary
role: Chief Technology Officer
- name: Sharan Grandigae
role: Sharan Grandigae
links:
web: https://arcana.network
github: https://docs.beta.arcana.network
@ -24,9 +25,9 @@ links:
docs: https://docs.arcana.network/
blog: https://arcana.network/blog
whitepaper: https://www.notion.so/arcananetwork/Arcana-Technical-Docs-a1d7fd0d2970452586c693e4fee14d08
have_token: true
have_token: false
tokens:
- symbol: XAR
- symbol: XAR
usecases:
- infrastructure
- infrastructure
third_party_dependency: false

View file

@ -1,7 +1,11 @@
name: ARPA
categories: [infrastructure]
description: "Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc"
ecosystem: [multichain]
categories:
- infrastructure
description: Threshold BLS network can serve as the infrastructure of verifiable random
number generator (RNG), secure wallet, cross-chain bridge, decentralized custody
etc
ecosystem:
- multichain
project_status:
live_status: true
version: Mainnet
@ -18,6 +22,7 @@ links:
telegram: https://t.me/arpa_community
team:
anonymous: true
usecases:
- computing
- computing
have_token: false
third_party_dependency: false

View file

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

View file

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

View file

@ -1,21 +1,20 @@
name: Auth3
categories: [infrastructure]
description: "a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data."
categories:
- infrastructure
description: a privacy-preserved computing network into Web 3.0 that aims to unlock
the value of data.
team:
anonymous: true
links:
web: https://auth3.network
whitepaper: https://auth3.network/Auth3-Whitepaper_v1.0.pdf
twitter: https://twitter.com/auth3_network
project_status:
live_status: false
version: TBD
testnet: false
mainnet: false
usecases:
- infrastructure
- infrastructure
have_token: false
third_party_dependency: false

View file

@ -1,6 +1,8 @@
name: Automata Network
categories: [infrastructure]
description: "The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA"
categories:
- infrastructure
description: The privacy middleware layer building for a fair Web3. Its core suite
of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA
team:
anonymous: true
links:
@ -8,14 +10,14 @@ links:
docs: https://docs.ata.network
github: https://github.com/automata-network
blog: https://blog.ata.network/
have_token: true
have_token: false
tokens:
- symbol: ATA
- symbol: ATA
project_status:
live_status: true
version: ""
version: ''
testnet: true
mainnet: false
usecases:
- infrastructure
- infrastructure
third_party_dependency: false

View file

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

View file

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

View file

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

View file

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

View file

@ -1,15 +1,17 @@
name: Basic Swap
categories: [defi]
ecosystem: [multichain]
description: "A private and cross-chain DEX"
categories:
- defi
ecosystem:
- multichain
description: A private and cross-chain DEX
project_type: DeFi
product_launch_day: "2022-12-08"
product_launch_day: '2022-12-08'
technology:
type: P2P
name: peer to peer
features:
- private
- swaps
- private
- swaps
links:
web: https://basicswapdex.com/
twitter: https://twitter.com/basicswapdex
@ -42,14 +44,14 @@ traceability:
third_party_dependency: false
compliance: none
client_diversability:
- name: BasicSwap client
link: https://basicswapdex.com/
- name: BasicSwap client
link: https://basicswapdex.com/
default_privacy: false
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
usecases:
- defi
- defi
have_token: false

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,19 +1,21 @@
name: Bidshop
categories: [applications]
description: "The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs"
categories:
- applications
description: The first and only trustless marketplace with encrypted & secret bidding.
Opening a new world of gamification and liquidity for NFTs
links:
web: https://www.bidshop.io
docs: https://bidshop.gitbook.io/bidshop-platform
blog: https://medium.com/@BIDSHOP
twitter: https://x.com/BIDSHOP_io
telegram: https://t.me/BIDSHOP_TG
have_token: true
have_token: false
token_link: https://etherscan.io/token/0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F
tokens:
- name: BIDSHOP
symbol: BIDS
network: Ethereum
contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F"
- name: BIDSHOP
symbol: BIDS
network: Ethereum
contract_address: '0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F'
usecases:
- nft-community
- nft-community
third_party_dependency: false

View file

@ -1,15 +1,17 @@
name: Blackbox
categories: [defi]
ecosystem: [secret]
description: "Collection of tools allowing you send & receive SCRT anonymously"
categories:
- defi
ecosystem:
- secret
description: Collection of tools allowing you send & receive SCRT anonymously
project_type: DeFi
product_launch_day: "2021-15-02"
product_launch_day: '2021-15-02'
technology:
type: TEE
name: Trusted execution environment
features:
- Privacy
- Payments
- Privacy
- Payments
links:
web: https://blackbox.cash/
twitter: https://twitter.com/TriviumNode
@ -19,7 +21,6 @@ links:
blockchain_features:
p2p: false
encryption: TEE
opensource: true
viewing_key: true
dissapearing_tx: false
@ -41,9 +42,9 @@ team:
link: https://trivium.network/
contacts: info@trivium.network
teammembers:
- name: Xiphiar
role: rdeveloper
link: https://github.com/Xiphiar
- name: Xiphiar
role: rdeveloper
link: https://github.com/Xiphiar
storage:
decentralized: true
traceability:
@ -54,16 +55,16 @@ compliance: false
social_trust: Slabs ( MRSINGER ), Contract operator ( Trivium )
technical_spof: Can decrypt/fraud
client_diversability:
- name: Keplr
link: https://www.keplr.app/
- name: Starshell
link: https://starshell.net/
- name: Keplr
link: https://www.keplr.app/
- name: Starshell
link: https://starshell.net/
default_privacy: true
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
usecases:
- defi
- defi
have_token: false

View file

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

View file

@ -1,7 +1,9 @@
name: Blockstream Green
categories: [applications]
description: "A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream"
ecosystem: [bitcoin]
categories:
- applications
description: A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream
ecosystem:
- bitcoin
links:
web: https://blockstream.com/green/
github: https://github.com/Blockstream/green_qt
@ -10,14 +12,15 @@ links:
team:
anonymous: false
teammembers:
- name: Dr. Adam Back
role: CEO
link: https://blockstream.com/about/
- name: Dr. Adam Back
role: CEO
link: https://blockstream.com/about/
project_status:
live_status: true
version: 2.0.6
testnet: false
mainnet: false
usecases:
- wallets
- wallets
have_token: false
third_party_dependency: false

View file

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

View file

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

View file

@ -1,9 +1,11 @@
name: Bluum
categories: [applications]
description: "Enable confidentiality of NFT content."
categories:
- applications
description: Enable confidentiality of NFT content.
links:
web: https://bluumprotocol.com
github: https://github.com/BluumProtocol
usecases:
- nft-community
- nft-community
have_token: false
third_party_dependency: false

View file

@ -1,7 +1,13 @@
name: BOB Protocol
categories: [defi]
description: "A multi-chain, multi-collateral stable token enhanced with optional privacy features"
ecosystem: [polygon, optimism, bnb, ethereum]
categories:
- defi
description: A multi-chain, multi-collateral stable token enhanced with optional privacy
features
ecosystem:
- polygon
- optimism
- bnb
- ethereum
links:
web: https://zkbob.com/
github: https://github.com/zkBob
@ -13,6 +19,7 @@ links:
telegram: https://t.me/zkbobcommunity
team:
anonymous: true
usecases:
- currency
- currency
have_token: false
third_party_dependency: false

View file

@ -1,6 +1,7 @@
name: Boltz
categories: [defi]
description: "Privacy first, account-free crypto exchange"
categories:
- defi
description: Privacy first, account-free crypto exchange
links:
web: https://boltz.exchange
github: https://github.com/BoltzExchange/
@ -11,6 +12,7 @@ links:
telegram: https://t.me/boltzhq
team:
anonymous: true
usecases:
- currency
- currency
have_token: false
third_party_dependency: false

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