mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
feat: usecase
This commit is contained in:
parent
37f159e63f
commit
244bf39beb
494 changed files with 712 additions and 8301 deletions
64
script.py
Normal file
64
script.py
Normal 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)
|
|
@ -1,8 +1,2 @@
|
||||||
name: 01 Labs
|
usecase:
|
||||||
usecase: [rd]
|
- rd
|
||||||
description: "Catalyzing a new generation of applications powered by zero knowledge cryptography."
|
|
||||||
links:
|
|
||||||
web: https://o1labs.org
|
|
||||||
github: https://github.com/o1-labs
|
|
||||||
blog: https://www.o1labs.org/blog
|
|
||||||
twitter: https://x.com/o1_labs
|
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
name: 0xTIP
|
usecase:
|
||||||
usecase: [mixing-service]
|
- mixing-service
|
||||||
description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers."
|
|
||||||
links:
|
|
||||||
web: https://0xmonero.com/mixer
|
|
||||||
|
|
|
@ -1,8 +1,2 @@
|
||||||
name: "1984"
|
usecase:
|
||||||
usecase: [infrastructure]
|
- 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
|
|
||||||
|
|
|
@ -1,7 +1,2 @@
|
||||||
name: 1RPC
|
usecase:
|
||||||
usecase: [rpc]
|
- rpc
|
||||||
description: "The Web3 Private RPC Relay"
|
|
||||||
links:
|
|
||||||
web: https://www.1rpc.io
|
|
||||||
docs: https://docs.ata.network/1rpc/introduction/
|
|
||||||
twitter: https://x.com/1rpc_
|
|
||||||
|
|
|
@ -1,6 +1,2 @@
|
||||||
name: 2FA Guru
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
description: "A simple solution to interact with DApps by enforcing an additional signature check before each transaction"
|
|
||||||
links:
|
|
||||||
web: https://www.2fa.guru
|
|
||||||
github: https://github.com/skiff-org/skiff-mail
|
|
||||||
|
|
|
@ -1,10 +1,2 @@
|
||||||
name: Aioz network
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "DePIN for Web3 AI, Storage & Streaming"
|
|
||||||
links:
|
|
||||||
web: https://aioz.network/
|
|
||||||
block_explorer: https://t.me/aioznetwork
|
|
||||||
docs: https://docs.aioz.network/
|
|
||||||
blog: https://aioz.network/blog
|
|
||||||
twitter: https://x.com/AIOZNetwork
|
|
||||||
telegram: https://t.me/aioznetwork
|
|
||||||
|
|
|
@ -1,28 +1,2 @@
|
||||||
name: Adamant
|
usecase:
|
||||||
usecase: [messaging]
|
- messaging
|
||||||
description: "Decentralized anonymous blockchain Messenger & crypto Wallet"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://adamant.im/
|
|
||||||
github: https://github.com/adamant-im
|
|
||||||
block_explorer: https://explorer.adamant.im/
|
|
||||||
whitepaper: https://adamant.im/whitepapers-library/
|
|
||||||
blog: https://news.adamant.im/
|
|
||||||
twitter: https://x.com/adamant_im
|
|
||||||
telegram: https://t.me/adamant_eng
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://www.coingecko.com/en/coins/adamant-messenger
|
|
||||||
tokens:
|
|
||||||
- name: ADMToken
|
|
||||||
symbol: $ADM
|
|
||||||
network: Ethereum
|
|
||||||
|
|
|
@ -1,12 +1,2 @@
|
||||||
name: AnonKlub
|
usecase:
|
||||||
usecase: [DID]
|
- DID
|
||||||
description: "AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership."
|
|
||||||
project_status: testnet
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: http://anonklub.xyz
|
|
||||||
docs: https://docs.anonklub.xyz/docs/intro
|
|
||||||
github: https://github.com/anonklub/anonklub
|
|
||||||
technology:
|
|
||||||
type: circom, snarkjs, halo2
|
|
||||||
|
|
|
@ -1,10 +1,2 @@
|
||||||
name: "Arcium"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "The first parallelized confidential computing network"
|
|
||||||
links:
|
|
||||||
web: https://arcium.com/
|
|
||||||
github: https://github.com/elusiv-privacy
|
|
||||||
docs: https://docs.arcium.com/
|
|
||||||
blog: https://blog.arcium.com/
|
|
||||||
twitter: https://x.com/ArciumHQ
|
|
||||||
discord: https://discord.com/invite/arcium
|
|
||||||
|
|
|
@ -1,11 +1,2 @@
|
||||||
name: Bandada
|
usecase:
|
||||||
usecase: [DID]
|
- DID
|
||||||
description: "An open-source system for managing privacy-preserving groups of anonymous individuals."
|
|
||||||
project_status: testnet
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://bandada.pse.dev/
|
|
||||||
docs: https://docs.bandada.pse.dev/
|
|
||||||
github: https://github.com/bandada-infra/bandada
|
|
||||||
type: semaphore, zk-kit
|
|
||||||
|
|
|
@ -1,32 +1,2 @@
|
||||||
name: BlockBlend
|
usecase:
|
||||||
usecase: [bridge]
|
- bridge
|
||||||
ecosystem: [Ethereum, Polygon, Base, Bnb, Solana]
|
|
||||||
description: "Privacy Cross-Chain Decentralized Services"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Tom
|
|
||||||
link: https://x.com/TomBlockBlend
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://blockblend.io/
|
|
||||||
docs: https://docs.blockblend.io/
|
|
||||||
whitepaper: https://blockblend.io/pitchdeck.pdf
|
|
||||||
blog: https://blockblendio.medium.com/
|
|
||||||
twitter: https://x.com/blockblendio
|
|
||||||
telegram: https://t.me/blockblendIO
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/address/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124
|
|
||||||
tokens:
|
|
||||||
- name: BBL Tpken
|
|
||||||
symbol: $BBL
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124"
|
|
||||||
|
|
|
@ -1,21 +1,2 @@
|
||||||
name: Broearn
|
usecase:
|
||||||
usecase: [browser]
|
- browser
|
||||||
description: "Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.broearn.com/
|
|
||||||
docs: https://docs.broearn.com/
|
|
||||||
twitter: https://x.com/broearn
|
|
||||||
discord: https://discord.com/invite/vsfqexDTDK
|
|
||||||
telegram: https://t.me/broearn_browser
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,32 +1,2 @@
|
||||||
name: ChainPort
|
usecase:
|
||||||
usecase: [bridge]
|
- bridge
|
||||||
ecosystem: [Ethereum, Arbitrum, Optimism, Base, Bnb, Fantom, Polygon, Avalanche]
|
|
||||||
description: "next-gen custodian secure bridge"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: DcentraLab
|
|
||||||
link: https://x.com/DcentraLab
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.chainport.io/private-bridge
|
|
||||||
github: https://github.com/chainport
|
|
||||||
docs: https://docs.chainport.io/
|
|
||||||
blog: https://medium.com/chainport
|
|
||||||
twitter: https://x.com/chain_port
|
|
||||||
telegram: https://t.me/chainport_news
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0x104f3152d8ebfc3f679392977356962ff36566ac
|
|
||||||
tokens:
|
|
||||||
- name: PORTX Token
|
|
||||||
symbol: $PORTX
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac"
|
|
||||||
|
|
|
@ -1,53 +1,2 @@
|
||||||
name: Chainback
|
usecase:
|
||||||
usecase: [storage]
|
- storage
|
||||||
ecosystem: [Ethereum, Solana, Bsc, Polygon]
|
|
||||||
usecases: [storage, cloud]
|
|
||||||
description: "Ultimate Cloud Computing & File Storage"
|
|
||||||
product_lunch_day: "2022-12"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://chainback.org/
|
|
||||||
docs: https://chainback.gitbook.io/chainback-whitepaper
|
|
||||||
block_explorer: https://app.chainback.org/explorer
|
|
||||||
whitepaper: https://drive.google.com/file/d/1wtzmijhSoJJmIO5S2PRDH3-rV3IH93xv/view
|
|
||||||
blog: https://medium.com/@chainback.archive
|
|
||||||
twitter: https://x.com/ChainbackWeb3
|
|
||||||
telegram: https://t.me/chainback_archive
|
|
||||||
|
|
||||||
project_phase: Alpha
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: ARCHIVE Token
|
|
||||||
symbol: $ARCHIVE
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0xC7f950271d118A5bdF250dFfc39128DCCED8472C"
|
|
||||||
token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C
|
|
||||||
|
|
||||||
funding:
|
|
||||||
name: Summus Capital
|
|
||||||
link: https://summus.capital/
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: false
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://chainback.gitbook.io/chainback-whitepaper/company-policy/privacy-policy
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
|
|
|
@ -1,15 +1,2 @@
|
||||||
name: Cloak Ai
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business"
|
|
||||||
links:
|
|
||||||
web: https://www.cloakai.xyz/
|
|
||||||
twitter: https://x.com/Cloak_xyz
|
|
||||||
telegram: https://t.me/cloakai
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0x13f7b4581df403542286563c2f762077b2a368da
|
|
||||||
tokens:
|
|
||||||
- name: Cloak
|
|
||||||
symbol: CLOAK
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da"
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,30 +1,2 @@
|
||||||
name: Codex
|
|
||||||
usecase:
|
usecase:
|
||||||
- Storage
|
- Storage
|
||||||
ecosystem:
|
|
||||||
- Ethereum
|
|
||||||
description: "Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship."
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://codex.storage
|
|
||||||
github: https://github.com/codex-storage
|
|
||||||
docs: https://docs.codex.storage
|
|
||||||
forum: https://forum.vac.dev/
|
|
||||||
blog: https://blog.codex.storage
|
|
||||||
twitter: https://x.com/codex_storage
|
|
||||||
discord: https://discord.com/invite/codex-storage
|
|
||||||
farcaster: "@codexstorage"
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Codex Devnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: false
|
|
||||||
|
|
||||||
licenses: Apache 2.0 and MIT
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
|
|
|
@ -1,37 +1,2 @@
|
||||||
name: Coti
|
usecase:
|
||||||
usecase: [layer-2]
|
- layer-2
|
||||||
description: "EVM L2 solving blockchain privacy with Garbled Circuits"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Joshua Maddox
|
|
||||||
role: CEPO
|
|
||||||
link: https://x.com/JoshuaBMaddox
|
|
||||||
- name: Shaf Bar-Geffen
|
|
||||||
role: CEO
|
|
||||||
link: https://x.com/shahafbg
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://coti.io/
|
|
||||||
github: https://github.com/coti-io
|
|
||||||
docs: https://docs.coti.io/coti-v2-documentation
|
|
||||||
whitepaper: https://coti.io/files/coti_v2_whitepaper.pdf
|
|
||||||
blog: https://coti.io/blog
|
|
||||||
twitter: https://x.com/COTInetwork
|
|
||||||
discord: https://discord.com/invite/wfAQfbc3Df
|
|
||||||
telegram: https://t.me/COTInetwork
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Testnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0xddb3422497e61e13543bea06989c0789117555c5
|
|
||||||
tokens:
|
|
||||||
- name: CotiToken
|
|
||||||
symbol: $COTI
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5"
|
|
||||||
|
|
|
@ -1,9 +1,2 @@
|
||||||
name: "Cursive"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "A cryptography lab focused on human-first applications of signed data."
|
|
||||||
links:
|
|
||||||
web: https://www.cursive.team/
|
|
||||||
github: https://github.com/cursive-team
|
|
||||||
blog: https://www.cursive.team/blog
|
|
||||||
twitter: https://x.com/cursive_team
|
|
||||||
telegram: https://t.me/+z5REVOBXp_hmNDIx
|
|
||||||
|
|
|
@ -1,37 +1,2 @@
|
||||||
name: DeChat
|
usecase:
|
||||||
usecase: [messaging]
|
- messaging
|
||||||
description: "open and secure web3 communications protocol that powers decentralized user interactions"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: JAMES I. RADFORD
|
|
||||||
role: CEO
|
|
||||||
link: https://www.linkedin.com/in/james-r-aa8989165/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app
|
|
||||||
- name: ANDY DEMETRIOU
|
|
||||||
role: CMO
|
|
||||||
link: https://www.linkedin.com/in/andy-demetriou-a57778177/
|
|
||||||
- name: DANIEL DRESCHER
|
|
||||||
role: COO
|
|
||||||
link: https://www.linkedin.com/in/danieldrescher/
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.dechat.io/home
|
|
||||||
docs: https://dechat.gitbook.io/dechat
|
|
||||||
twitter: https://x.com/dechat_io
|
|
||||||
discord: https://discord.com/invite/dechat
|
|
||||||
telegram: https://t.me/dechat_community
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Testnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://bscscan.com/token/0xd69ee2e508363fed57f89917d5ca03e715ee5519
|
|
||||||
tokens:
|
|
||||||
- name: DeChat Token
|
|
||||||
symbol: $DeChat
|
|
||||||
network: BSC
|
|
||||||
contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519"
|
|
||||||
|
|
|
@ -1,25 +1,2 @@
|
||||||
name: DeGuard
|
usecase:
|
||||||
usecase: [VPN]
|
- VPN
|
||||||
description: "Provide utimate privacy based on web3"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Niktim
|
|
||||||
link: https://x.com/Crypto_Niktim
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://deguard.io/
|
|
||||||
github: https://github.com/deguardvpn
|
|
||||||
docs: https://docs.deguard.io/
|
|
||||||
twitter: https://x.com/DeGuardVPN
|
|
||||||
discord: https://discord.com/invite/agv3a9wGUn
|
|
||||||
telegram: https://t.me/DeGuardVPN
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,52 +1,2 @@
|
||||||
name: DeNet
|
usecase:
|
||||||
usecase: [storage]
|
- storage
|
||||||
ecosystem: [Polygon]
|
|
||||||
usecases: [storage, Depin]
|
|
||||||
description: "Decentralized Storage Protocol for Web3 services "
|
|
||||||
product_lunch_day: "2017"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Denis Shelestov
|
|
||||||
link: https://x.com/djdeniro1
|
|
||||||
- name: Daniil Maslov
|
|
||||||
link: https://x.com/tttcrp
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://denet.pro/
|
|
||||||
github: https://github.com/denetpro
|
|
||||||
doc: https://docs.denet.pro/
|
|
||||||
blog: https://medium.com/denetpro
|
|
||||||
twitter: https://x.com/DeNetPro
|
|
||||||
telegram: https://t.me/denetnews
|
|
||||||
discord: https://discord.com/invite/PSnjPCq4x5
|
|
||||||
|
|
||||||
project_phase: Mainet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: DeNet File Token
|
|
||||||
symbol: $DE
|
|
||||||
network: Polygon
|
|
||||||
contract_address: "0x081ec4c0e30159c8259bad8f4887f83010a681dc"
|
|
||||||
token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
|
|
|
@ -1,60 +1,2 @@
|
||||||
name: Ergo Platform
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
ecosystem: [Ergo, Btc]
|
|
||||||
usecases: [wallet, mining, mixer]
|
|
||||||
description: "Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools"
|
|
||||||
product_lunch_day: "2017"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Alex Chepurnoy
|
|
||||||
link: https://x.com/chepurnoy
|
|
||||||
- name: qx
|
|
||||||
link: https://x.com/qx_ergo
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://ergoplatform.org/en/
|
|
||||||
github: https://github.com/ergoplatform
|
|
||||||
whitepaper: https://storage.googleapis.com/ergo-cms-media/Advanced_Ergo_Script_Tutorial_70ed6feddf/Advanced_Ergo_Script_Tutorial_70ed6feddf.pdf
|
|
||||||
docs: https://docs.ergoplatform.com/
|
|
||||||
blog: https://ergoplatform.org/en/blog/
|
|
||||||
forum: https://www.ergoforum.org/
|
|
||||||
twitter: https://x.com/ergo_platform
|
|
||||||
telegram: https://t.me/Ergo_Chats
|
|
||||||
discord: https://discord.com/invite/ergo-platform-668903786361651200
|
|
||||||
|
|
||||||
project_phase: Testnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: Ergo Token
|
|
||||||
symbol: $ERG
|
|
||||||
network: Ergochain
|
|
||||||
token_link: https://www.coingecko.com/en/coins/ergo
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://ergoplatform.org/en/privacy-policy/
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
audits:
|
|
||||||
- name: Jean-Philipee Aumasson
|
|
||||||
link: https://www.aumasson.jp/
|
|
||||||
time: 2019-12
|
|
||||||
|
|
||||||
tecnology:
|
|
||||||
type: vpn, mixer
|
|
||||||
|
|
|
@ -1,14 +1,2 @@
|
||||||
name: Exabits
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "Simplified Access to the Currency of the Future "
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://www.exabits.ai/
|
|
||||||
docs: https://docs.exabits.ai/introduction/what-is-exabits
|
|
||||||
blog: https://blog.exabits.ai/
|
|
||||||
twitter: https://x.com/exa_bits
|
|
||||||
discord: https://discord.com/invite/exabits
|
|
||||||
telegram: https://t.me/+D0CulDl9udZjMWIx
|
|
||||||
have_token: false
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,8 +1,2 @@
|
||||||
name: "FairMath"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)"
|
|
||||||
links:
|
|
||||||
web: https://fairmath.xyz/
|
|
||||||
github: https://github.com/fairmath
|
|
||||||
twitter: https://x.com/FairMath
|
|
||||||
discord: https://discord.com/invite/NfhXwyr9M5
|
|
||||||
|
|
|
@ -1,11 +1,2 @@
|
||||||
name: "Fhenix"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality."
|
|
||||||
links:
|
|
||||||
web: https://www.fhenix.io/
|
|
||||||
github: https://github.com/FhenixProtocol
|
|
||||||
docs: https://docs.fhenix.zone/
|
|
||||||
whitepaper: https://www.fhenix.io/wp-content/uploads/2024/04/FHE_Rollups_Paper_Final-20241404.pdf
|
|
||||||
blog: https://medium.com/@Fhenix
|
|
||||||
twitter: https://x.com/FhenixIO
|
|
||||||
discord: https://discord.com/invite/FuVgxrvJMY
|
|
||||||
|
|
|
@ -1,61 +1,2 @@
|
||||||
name: Humanode
|
usecase:
|
||||||
usecase: [did]
|
- did
|
||||||
ecosystem: [Polkadot]
|
|
||||||
usecases: [biometrically verified nodes]
|
|
||||||
description: "1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web"
|
|
||||||
product_lunch_day: "2020"
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Dato Kavazi
|
|
||||||
link: https://x.com/DatoKavazi
|
|
||||||
- name: Sasha Shilina
|
|
||||||
link: https://x.com/sshshln
|
|
||||||
- name: Andrei Kraciun
|
|
||||||
link: https://x.com/andreikraciun
|
|
||||||
- name: Victor
|
|
||||||
link: https://x.com/tech_mingler
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://humanode.io/
|
|
||||||
github: https://github.com/humanode-network
|
|
||||||
whitepaper: https://papers.humanode.io/whitepaper.pdf
|
|
||||||
docs: https://gitbook.humanode.io/docs
|
|
||||||
block_explorer: https://humanode.subscan.io/
|
|
||||||
blog: https://blog.humanode.io/
|
|
||||||
twitter: https://x.com/humanode_io
|
|
||||||
telegram: https://t.me/humanode
|
|
||||||
discord: https://discord.com/invite/8my5gbgptx
|
|
||||||
|
|
||||||
project_phase: Mainnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: Humanode Token
|
|
||||||
symbol: $HMND
|
|
||||||
network: Humanodechain
|
|
||||||
token_link: https://coinmarketcap.com/currencies/humanode/
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
audits:
|
|
||||||
- name: Certik
|
|
||||||
link: https://skynet.certik.com/projects/humanode
|
|
||||||
time: 2023-01-30
|
|
||||||
|
|
||||||
tecnology:
|
|
||||||
type: ZKP
|
|
||||||
|
|
|
@ -1,42 +1,2 @@
|
||||||
name: IVPN
|
usecase:
|
||||||
usecase: [VPN]
|
- VPN
|
||||||
description: "Audited, privacy focused VPN service."
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Nicholas Pestell
|
|
||||||
role: CEO
|
|
||||||
link: https://github.com/cipheromega
|
|
||||||
- name: Edward De
|
|
||||||
role: Technical Support Lead
|
|
||||||
link: https://www.linkedin.com/in/edward-de-91793b163/
|
|
||||||
- name: Iain Douglas
|
|
||||||
link: https://github.com/Iain-ivpn
|
|
||||||
- name: Gorka Pernas
|
|
||||||
role: Senior QA Engineer
|
|
||||||
link: https://github.com/gorkapernas
|
|
||||||
- name: Natanael Rodriguez
|
|
||||||
link: https://github.com/nathanrod
|
|
||||||
- name: Juraj Hilje
|
|
||||||
role: Dev
|
|
||||||
link: https://github.com/jurajhilje
|
|
||||||
- name: Alexandr Stelnykovych
|
|
||||||
role: Dev
|
|
||||||
link: https://github.com/stenya
|
|
||||||
- name: Jordan Sullivan
|
|
||||||
link: https://github.com/jordan-ivpn
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.ivpn.net/en/
|
|
||||||
github: https://github.com/ivpn
|
|
||||||
blog: https://www.ivpn.net/en/blog/
|
|
||||||
twitter: https://x.com/ivpnnet
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,14 +1,2 @@
|
||||||
name: "Inco"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains "
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
links:
|
|
||||||
web: https://www.inco.org/
|
|
||||||
github: https://github.com/Inco-fhevm
|
|
||||||
block_explorer: https://explorer.testnet.inco.org/
|
|
||||||
docs: https://docs.inco.org/
|
|
||||||
blog: https://www.inco.org/blog/
|
|
||||||
twitter: https://x.com/inconetwork
|
|
||||||
discord: https://discord.com/invite/fnKZp2qHPQ
|
|
||||||
telgram: https://t.me/inconetwork
|
|
||||||
|
|
|
@ -1,30 +1,2 @@
|
||||||
name: Intmax
|
|
||||||
usecase:
|
usecase:
|
||||||
- layer-2
|
- layer-2
|
||||||
ecosystem: [Ethereum]
|
|
||||||
project_type: Layer2 zk-rollup
|
|
||||||
description: "A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time."
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Leona Hioki
|
|
||||||
role: Co-founder
|
|
||||||
link: https://x.com/HiokiLeona
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.intmax.io/
|
|
||||||
github: https://github.com/InternetMaximalism
|
|
||||||
whitepaper: https://eprint.iacr.org/2023/1082.pdf
|
|
||||||
blog: https://medium.com/intmax
|
|
||||||
twitter: https://x.com/intmaxIO
|
|
||||||
discord: https://discord.com/invite/N7kYGUPDEE
|
|
||||||
telegram: https://t.me/QM1EbIzxACsxMDk1
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: testnet2
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,34 +1,2 @@
|
||||||
name: Kinto
|
usecase:
|
||||||
usecase: [Layer-2]
|
- Layer-2
|
||||||
description: "The safety-first L2 for Finance"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Ramon Recuero
|
|
||||||
role: CEO
|
|
||||||
link: https://x.com/ramonrecuero
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.kinto.xyz/
|
|
||||||
github: https://github.com/kintoxyz
|
|
||||||
block_explorer: https://kintoscan.io/
|
|
||||||
docs: https://docs.kinto.xyz/kinto-the-safe-l2
|
|
||||||
whitepaper: https://docs.kinto.xyz/kinto-the-safe-l2/general/litepaper
|
|
||||||
blog: https://mirror.xyz/kintoxyz.eth
|
|
||||||
twitter: https://x.com/KintoXYZ
|
|
||||||
discord: https://discord.com/invite/kinto?a=1
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://kintoscan.io/token/0x010700808D59d2bb92257fCafACfe8e5bFF7aB87?chainid=7887
|
|
||||||
tokens:
|
|
||||||
- name: KINTO
|
|
||||||
symbol: $KINTO
|
|
||||||
network: Kinto
|
|
||||||
contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87"
|
|
||||||
|
|
|
@ -1,63 +1,2 @@
|
||||||
name: Mailchain
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
ecosystem: [Ethereum]
|
|
||||||
usecases: [mail]
|
|
||||||
description: "Web3 communication layer & web3 email for everyone"
|
|
||||||
product_lunch_day: "2019"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Tim Boeckmann
|
|
||||||
link: https://x.com/t_boeckmann
|
|
||||||
- name: Rob De Feo
|
|
||||||
link: https://x.com/robdefeo
|
|
||||||
- name: Misha Deville
|
|
||||||
link: https://x.com/MishaDV_
|
|
||||||
- name: Elizabeth Stuart-Morris
|
|
||||||
link: https://x.com/esm_iam
|
|
||||||
- name: Hannah Anderson
|
|
||||||
link: https://www.linkedin.com/in/hannahsanderson/
|
|
||||||
- name: Alexandru Velicu
|
|
||||||
link: https://www.linkedin.com/in/velicu-a-73794348/
|
|
||||||
- name: Zubeyir O.
|
|
||||||
link: https://github.com/zubeyiro
|
|
||||||
- name: Antonio Ivanovski
|
|
||||||
link: https://github.com/toteto
|
|
||||||
- name: Nathan Sorochan
|
|
||||||
link: https://x.com/nathansorochan
|
|
||||||
- name: Tom Sargent
|
|
||||||
link: https://x.com/expensive_jpeg
|
|
||||||
- name: Becky Prunty
|
|
||||||
link: https://www.linkedin.com/in/becky-prunty-b93406a9/
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://mailchain.com/
|
|
||||||
github: https://github.com/mailchain
|
|
||||||
whitepaper: https://mailchain.com/papers/mailchain-whitepaper
|
|
||||||
docs: https://docs.mailchain.com/
|
|
||||||
blog: https://medium.com/@mailchain
|
|
||||||
twitter: https://x.com/Mailchain_xyz
|
|
||||||
lens: https://hey.xyz/u/mailchain
|
|
||||||
farcaster: https://warpcast.com/mailchain
|
|
||||||
|
|
||||||
project_phase: Mainnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://mailchain.com/terms
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
|
@ -1,44 +1,2 @@
|
||||||
name: Media Network
|
usecase:
|
||||||
usecase: [computing-network]
|
- computing-network
|
||||||
ecosystem: [Ethereum, Solana, Base, Bnb, Optimist]
|
|
||||||
usecases: [cloud, DePin]
|
|
||||||
description: "The Web3 replacement for AWS and Google Cloud"
|
|
||||||
product_lunch_day: "2021"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.media.network/
|
|
||||||
github: https://github.com/mediafoundation
|
|
||||||
docs: https://docs.media.network/
|
|
||||||
blog: https://www.media.network/blog
|
|
||||||
twitter: https://x.com/Media_FDN
|
|
||||||
telegram: https://t.me/Media_FDN
|
|
||||||
discord: https://discord.com/invite/nyCS7ePWzf
|
|
||||||
|
|
||||||
project_phase: Beta Mainet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: Media Token
|
|
||||||
symbol: $MEDIA
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1"
|
|
||||||
token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
|
@ -1,11 +1,2 @@
|
||||||
name: "MindNetwork"
|
usecase:
|
||||||
usecase: [FHE]
|
- 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
|
|
||||||
|
|
|
@ -1,23 +1,2 @@
|
||||||
name: Nata network
|
usecase:
|
||||||
usecase: [bridge]
|
- bridge
|
||||||
description: "Nata Network is your portal to private cross-chain transactions."
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://app.natarouter.com/
|
|
||||||
github: https://github.com/shichiro-nakahara
|
|
||||||
block_explorer: https://explorer.natanetwork.io/
|
|
||||||
docs: https://docs.natanetwork.io/
|
|
||||||
blog: https://mirror.xyz/natanetwork.eth
|
|
||||||
twitter: https://x.com/nata_network_io
|
|
||||||
discord: https://discord.com/invite/m9Ma7PbFwb
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,20 +1,2 @@
|
||||||
name: Nuco-cloud
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "Enabling tomorrow’s tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction."
|
|
||||||
links:
|
|
||||||
web: https://www.nuco.cloud/
|
|
||||||
github: https://github.com/IronEagleCapital
|
|
||||||
whitepaper: https://www.nuco.cloud/whitepaper
|
|
||||||
blog: https://nucocloud.medium.com/
|
|
||||||
twitter: https://x.com/nucocloud
|
|
||||||
discord: https://discord.com/invite/5fSC5aEhpm
|
|
||||||
facebook: https://www.facebook.com/nuco.cloud.distributedcloudcomputing/
|
|
||||||
telegram: https://t.me/officialnucocloudgroup
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B
|
|
||||||
tokens:
|
|
||||||
- name: nuco.cloud
|
|
||||||
symbol: NCDT
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,17 +1,2 @@
|
||||||
name: OpSec
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: " AI-powered decentralized cloud security."
|
|
||||||
links:
|
|
||||||
web: https://opsec.computer/
|
|
||||||
docs: https://docs.opsec.computer/
|
|
||||||
twitter: https://x.com/OpSecCloud
|
|
||||||
discord: https://discord.com/invite/opseccloud
|
|
||||||
telegram: https://t.me/OpSecCloud
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98
|
|
||||||
tokens:
|
|
||||||
- name: Opsec
|
|
||||||
symbol: OPSEC
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98"
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,13 +1,2 @@
|
||||||
name: OriginTrail
|
usecase:
|
||||||
usecase: [ AI ]
|
- AI
|
||||||
description: 'Powering Verifiable Internet for Artificial Intelligence
|
|
||||||
'
|
|
||||||
links:
|
|
||||||
web: https://origintrail.io/
|
|
||||||
github: https://github.com/OriginTrail
|
|
||||||
docs: https://docs.origintrail.io/
|
|
||||||
whitepaper: https://origintrail.io/documents/Verifiable_Internet_for_Artificial_Intelligence_whitepaper_v3_pre_publication.pdf
|
|
||||||
blog: https://origintrail.io/blog
|
|
||||||
twitter: https://x.com/origin_trail
|
|
||||||
discord: https://discord.com/invite/QctFuPCMew
|
|
||||||
telegram: https://t.me/origintrail
|
|
||||||
|
|
|
@ -1,54 +1,2 @@
|
||||||
name: OxO
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
ecosystem: [Ethereum]
|
|
||||||
usecases: [Audit, mixer]
|
|
||||||
description: "All-in-One Privacy Exchange"
|
|
||||||
product_lunch_day: "2023-01"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Sir Enigma
|
|
||||||
link: https://x.com/abdel_hhh
|
|
||||||
- name: Smokey
|
|
||||||
link: https://x.com/Smokey_0x0
|
|
||||||
- name: Jay
|
|
||||||
link: https://x.com/xcyb0rg
|
|
||||||
- name: Andy
|
|
||||||
link: https://t.me/Andy_0x0
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://0x0.ai/
|
|
||||||
github: https://github.com/0x0exchange
|
|
||||||
docs: https://docs.0x0.ai/
|
|
||||||
blog: https://medium.com/@0x0exchange
|
|
||||||
twitter: https://x.com/0x0exchange
|
|
||||||
telegram: https://t.me/Portal0x0
|
|
||||||
discord: https://discord.com/invite/0x0exchange
|
|
||||||
|
|
||||||
project_phase: Mainnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: OxO Token
|
|
||||||
symbol: $OxO
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5"
|
|
||||||
token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
|
@ -1,51 +1,2 @@
|
||||||
name: Particl
|
usecase:
|
||||||
usecase: [dapps]
|
- 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
|
|
||||||
|
|
|
@ -1,75 +1,2 @@
|
||||||
name: Preserch
|
usecase:
|
||||||
usecase: [browser]
|
- browser
|
||||||
ecosystem: [Ethereum]
|
|
||||||
usecases: [browser]
|
|
||||||
description: "The Decentralized Search Engine with more than 4 million members"
|
|
||||||
product_lunch_day: "2017"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Tim Enneking
|
|
||||||
link: https://www.linkedin.com/in/timothy-enneking-a725905/
|
|
||||||
- name: Mark Torelli
|
|
||||||
link: https://www.linkedin.com/in/mark-torelli
|
|
||||||
- name: Jeff Hunt
|
|
||||||
link: https://www.linkedin.com/in/jeff-hunt-b302631b
|
|
||||||
- name: Ed Reese
|
|
||||||
link: https://www.linkedin.com/in/edreese/
|
|
||||||
- name: Brenden Tacon
|
|
||||||
link: https://www.linkedin.com/in/brenden-tacon-81abb211/
|
|
||||||
- name: Todd Enneking
|
|
||||||
link: https://www.linkedin.com/in/toddenneking/
|
|
||||||
- name: Colin Pape
|
|
||||||
link: https://www.linkedin.com/in/colinpape
|
|
||||||
- name: Trey Grainger
|
|
||||||
link: https://www.linkedin.com/in/treygrainger/
|
|
||||||
- name: Luís Dalmolin
|
|
||||||
link: https://www.linkedin.com/in/luisdalmolin/
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://presearch.com/
|
|
||||||
github: https://github.com/presearchofficial
|
|
||||||
whitepaper: https://presearch.io/vision.pdf
|
|
||||||
docs: https://docs.presearch.io/
|
|
||||||
blog: https://news.presearch.io/
|
|
||||||
forum: https://community.presearch.io/
|
|
||||||
twitter: https://x.com/presearchnews
|
|
||||||
telegram: https://t.me/presearch
|
|
||||||
discord: https://discord.com/invite/KUpshRZz2n
|
|
||||||
|
|
||||||
project_phase: Mainnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: Pre Token
|
|
||||||
symbol: $PRE
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0xEC213F83defB583af3A000B1c0ada660b1902A0F"
|
|
||||||
token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://presearch.com/privacy
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
audits:
|
|
||||||
- name: Mantisec Lab
|
|
||||||
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
|
|
||||||
time: 2023-10
|
|
||||||
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
|
|
|
@ -1,12 +1,2 @@
|
||||||
name: "Privasea"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "An AI + DePIN Network enabled through FHEML"
|
|
||||||
links:
|
|
||||||
web: https://www.privasea.ai/
|
|
||||||
github: https://github.com/Privasea
|
|
||||||
docs: https://docs.privasea.ai/
|
|
||||||
whitepaper: https://drive.google.com/file/d/1jbxWMgEziupt119gvM1n0Mu8sDdM7VWF/view
|
|
||||||
blog: https://www.privasea.ai/blog
|
|
||||||
twitter: https://x.com/Privasea_ai
|
|
||||||
discord: https://discord.com/invite/yRtQGvWkvG
|
|
||||||
telegram: https://t.me/Privasea_ai
|
|
||||||
|
|
|
@ -1,50 +1,2 @@
|
||||||
name: Privy
|
usecase:
|
||||||
usecase: [wallets]
|
- wallets
|
||||||
ecosystem: [Solana]
|
|
||||||
usecases: [wallet]
|
|
||||||
description: "Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe."
|
|
||||||
product_lunch_day: "2021"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Colfax
|
|
||||||
link: https://x.com/colfaxselby
|
|
||||||
- name: Jainil Sutaria
|
|
||||||
link: https://x.com/jainilsutaria1
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.privy.io/
|
|
||||||
github: https://github.com/privy-io
|
|
||||||
docs: https://docs.privy.io/
|
|
||||||
blog: https://www.privy.io/blog
|
|
||||||
twitter: https://x.com/privy_io
|
|
||||||
|
|
||||||
project_phase: Mainet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://www.privy.io/privacy-policy
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
audits:
|
|
||||||
- name: Zellic
|
|
||||||
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
|
|
||||||
time: 2023-08
|
|
||||||
|
|
||||||
tecnology:
|
|
||||||
type: AA
|
|
||||||
|
|
|
@ -1,29 +1,2 @@
|
||||||
name: RawBox
|
usecase:
|
||||||
usecase: [Hardware]
|
- Hardware
|
||||||
ecosystem: [Nym]
|
|
||||||
description: "Redefined privacy-enabled router."
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Oleksandr
|
|
||||||
link: https://x.com/oleksky
|
|
||||||
- name: crptcpchk
|
|
||||||
link: https://x.com/the01100011
|
|
||||||
- name: Yana Matrosova
|
|
||||||
link: https://x.com/yana_tnfl
|
|
||||||
- name: Beyond
|
|
||||||
link: https://x.com/Beyond_Karto
|
|
||||||
|
|
||||||
links:
|
|
||||||
github: https://github.com/Raw-Box/
|
|
||||||
twitter: https://x.com/rawbox_tech
|
|
||||||
telegram: https://t.me/+G4ixLEgYBXJkZWRi
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Testnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,14 +1,2 @@
|
||||||
name: Rido
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "Web3 Personal Data Layer for AI "
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://www.rido.io/
|
|
||||||
github: https://github.com/ridoio/rido-dao-contract
|
|
||||||
blog: https://medium.com/@Rido_io
|
|
||||||
twitter: https://x.com/rido_crypto
|
|
||||||
discord: https://discord.com/invite/Ekb98rR3pu
|
|
||||||
telegram: https://t.me/+N6HLxnRL_WE5ZDVl
|
|
||||||
have_token: false
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,57 +1,2 @@
|
||||||
name: Ritual
|
usecase:
|
||||||
usecase: [ai]
|
- ai
|
||||||
ecosystem: [Ethereum, Solana, Polygon]
|
|
||||||
usecases: [ai, node]
|
|
||||||
description: "We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code."
|
|
||||||
product_launch_day: "2023"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Niraj Pant
|
|
||||||
link: https://x.com/niraj
|
|
||||||
- name: Akilesh Potti
|
|
||||||
link: https://x.com/akileshpotti
|
|
||||||
- name: Anish Agnihotri
|
|
||||||
link: https://x.com/_anishagnihotri
|
|
||||||
- name: Eva Zhang
|
|
||||||
link: https://www.linkedin.com/in/evazhang612/
|
|
||||||
- name: Saneel Sreeni
|
|
||||||
link: https://x.com/sanlsrni
|
|
||||||
- name: Maryam Bahrani
|
|
||||||
link: https://www.mbahrani.net/
|
|
||||||
- name: Yahya Hassanzadeh
|
|
||||||
link: https://www.linkedin.com/in/yhassanzadeh/
|
|
||||||
- name: Praveen Palanisamy
|
|
||||||
link: https://www.linkedin.com/in/praveenpalanisamy/
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://ritual.net/
|
|
||||||
github: https://github.com/ritual-net
|
|
||||||
docs: https://docs.ritual.net/
|
|
||||||
blog: https://ritual.net/blog
|
|
||||||
twitter: https://x.com/ritualnet
|
|
||||||
discord: https://discord.com/invite/ritual-net
|
|
||||||
|
|
||||||
project_phase: Testnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
funding:
|
|
||||||
name: archetype
|
|
||||||
link: https://ritual.net/blog/introducing-ritual
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
|
@ -1,41 +1,2 @@
|
||||||
name: Rotki
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
ecosystem: [Ethereum, Bitcoin, Base, Optimist, Gnosis, Scroll, ZkSync]
|
|
||||||
usecases: [os portfolio management]
|
|
||||||
description: "rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy"
|
|
||||||
product_lunch_day: "2017"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Lefteris Karapetsas
|
|
||||||
link: https://x.com/LefterisJP
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://rotki.com/
|
|
||||||
github: https://github.com/rotki/rotki
|
|
||||||
docs: https://docs.rotki.com/
|
|
||||||
blog: https://blog.rotki.com/
|
|
||||||
twitter: https://x.com/rotkiapp
|
|
||||||
discord: https://discord.rotki.com/
|
|
||||||
|
|
||||||
project_phase: Mainet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://rotki.com/privacy-policy
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
|
@ -1,47 +1,2 @@
|
||||||
name: Self
|
usecase:
|
||||||
usecase: [did]
|
- did
|
||||||
usecases: [digital identity, personal data]
|
|
||||||
description: "Build identification and personal data management for everything"
|
|
||||||
product_lunch_day: "2019"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Dan Sutherland
|
|
||||||
link: https://www.linkedin.com/in/dansuth/
|
|
||||||
- name: Sena Gbeckor-Kove
|
|
||||||
link: https://www.linkedin.com/in/senagbe/
|
|
||||||
- name: Jason Reid
|
|
||||||
link: https://www.linkedin.com/in/jason-reid-1a12833/
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.joinself.com/
|
|
||||||
github: https://github.com/joinself
|
|
||||||
docs: https://docs.joinself.com/
|
|
||||||
twitter: https://x.com/futureoftrust
|
|
||||||
|
|
||||||
project_phase: testnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://www.joinself.com/company/legal
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
|
|
||||||
tecnology:
|
|
||||||
type: ZK
|
|
||||||
|
|
|
@ -1,54 +1,2 @@
|
||||||
name: Sentz
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
usecases: [payment]
|
|
||||||
description: "Global payments app for Freelancers & Creators"
|
|
||||||
product_lunch_day: "2022"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Sara Drakeley
|
|
||||||
link: https://www.linkedin.com/in/sara-drakeley/
|
|
||||||
- name: Henry Holtzman
|
|
||||||
link: https://www.linkedin.com/in/holtzmanh/?original_referer=https%3A%2F%2Fwww.sentz.com%2F
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.sentz.com/
|
|
||||||
github: https://github.com/mobilecoinofficial
|
|
||||||
whitepaper: https://www.sentz.com/learn/whitepapers
|
|
||||||
docs: https://www.sentz.com/developers
|
|
||||||
blog: https://www.sentz.com/blog
|
|
||||||
twitter: https://x.com/sentzapp
|
|
||||||
discord: https://discord.com/invite/mobilecoin
|
|
||||||
|
|
||||||
project_phase: Mainet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
tokens:
|
|
||||||
- name: Mobile Coin
|
|
||||||
symbol: $MOB
|
|
||||||
token_link: https://www.coingecko.com/en/coins/mobilecoin
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: true
|
|
||||||
link: https://www.sentz.com/privacy-policy
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
audits:
|
|
||||||
- name: Trail of Bits
|
|
||||||
link: https://www.sentz.com/developers/audits
|
|
||||||
|
|
||||||
assets_used: [eUSD]
|
|
||||||
|
|
|
@ -1,14 +1,2 @@
|
||||||
name: SightAI
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "Decentralized AI inference with FHE"
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://sightai.io/
|
|
||||||
github: https://github.com/sight-ai
|
|
||||||
docs: https://sightai.gitbook.io/docs
|
|
||||||
blog: https://medium.com/@theSightAI
|
|
||||||
twitter: https://x.com/theSightAI
|
|
||||||
telegram: https://t.me/sightai
|
|
||||||
have_token: false
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,11 +1 @@
|
||||||
name: Summa
|
|
||||||
usecase: infrastructure
|
usecase: infrastructure
|
||||||
description: "Protocol enabling centralized exchanges to prove solvency without compromising private information."
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
github: https://github.com/summa-dev
|
|
||||||
technology:
|
|
||||||
type: halo2
|
|
||||||
|
|
|
@ -1,8 +1,2 @@
|
||||||
name: "Sunsscreen"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "Privacy engine of the new web."
|
|
||||||
links:
|
|
||||||
web: https://sunscreen.tech/
|
|
||||||
blog: https://blog.sunscreen.tech/
|
|
||||||
twitter: https://x.com/sunscreentech
|
|
||||||
discord: https://discord.com/invite/WHCs6jNNDS
|
|
||||||
|
|
|
@ -1,13 +1,2 @@
|
||||||
name: SuperProtocol
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts"
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://superprotocol.com/
|
|
||||||
docs: https://docs.superprotocol.com/developers/
|
|
||||||
twitter: https://x.com/super__protocol
|
|
||||||
discord: https://discord.com/invite/superprotocol
|
|
||||||
telegram: https://t.me/superprotocol
|
|
||||||
have_token: false
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,25 +1,2 @@
|
||||||
name: Synaps
|
usecase:
|
||||||
usecase: [kyc]
|
- kyc
|
||||||
description: "KYC provider and verifiable credential issuer for DID protocols."
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Florian Le Goff
|
|
||||||
role: CEO
|
|
||||||
link: https://x.com/0xAnimaniac
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://synaps.io/
|
|
||||||
github: https://github.com/synaps-io
|
|
||||||
docs: https://docs.synaps.io/
|
|
||||||
blog: https://synaps.io/blog
|
|
||||||
twitter: https://x.com/synaps_id
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,27 +1,2 @@
|
||||||
name: Taceo
|
usecase:
|
||||||
usecase: [computing-network]
|
- computing-network
|
||||||
description: "Encrypted Computation Layer; MPC + ZK"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Roman Walch
|
|
||||||
role: Co-founder
|
|
||||||
link: https://x.com/rw0x0
|
|
||||||
- name: Lukas Helminger
|
|
||||||
role: CEO
|
|
||||||
link: https://x.com/luhelminger
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://taceo.io/
|
|
||||||
github: https://github.com/TaceoLabs
|
|
||||||
docs: https://docs.taceo.io/
|
|
||||||
whitepaper:
|
|
||||||
blog: https://blog.taceo.io/
|
|
||||||
twitter: https://x.com/TACEO_IO
|
|
||||||
discord: https://discord.com/invite/gWZW2TANpk
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
|
|
||||||
have_token: false
|
|
||||||
|
|
|
@ -1,30 +1,2 @@
|
||||||
name: The 4th Pillar
|
usecase:
|
||||||
usecase: [messaging]
|
- messaging
|
||||||
description: "Web3 Aligned Email & Chat Super App"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://the4thpillar.io/
|
|
||||||
github: https://github.com/4P-project/
|
|
||||||
docs: https://docs.the4thpillar.io/
|
|
||||||
whitepaper: https://docs.google.com/document/d/1Ie_whzzIdvkuBOH_-X2Uhly3r0IIFR1hYGaHqHtIKrU/edit?usp=sharing
|
|
||||||
blog: https://medium.com/4p-project
|
|
||||||
twitter: https://x.com/4pfour
|
|
||||||
discord: https://discord.com/invite/WaZZXeBhg4
|
|
||||||
telegram: https://t.me/the4thpillarofficial
|
|
||||||
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0
|
|
||||||
tokens:
|
|
||||||
- name: The 4th Pillar Token
|
|
||||||
symbol: $FOUR
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0"
|
|
||||||
|
|
|
@ -1,8 +1,2 @@
|
||||||
name: Venice
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "a generative AI app focused on privacy"
|
|
||||||
links:
|
|
||||||
web: https://venice.ai
|
|
||||||
blog: https://venice.ai/blog
|
|
||||||
twitter: https://x.com/askvenice
|
|
||||||
farcaster: venice-ai
|
|
||||||
|
|
|
@ -1,62 +1,2 @@
|
||||||
name: Vocdoni
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
ecosystem: [Ethereum]
|
|
||||||
usecases: [voting]
|
|
||||||
description: "To build open source solutions to facilitate decision making in any organization."
|
|
||||||
product_lunch_day: "2017"
|
|
||||||
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Joan Arus
|
|
||||||
link: https://x.com/Joan_Arus
|
|
||||||
- name: Jordi Aulet
|
|
||||||
link: https://x.com/jp_aulet
|
|
||||||
- name: Pau Escrich
|
|
||||||
link: https://x.com/wildp4u
|
|
||||||
- name: Jordi Pinyana
|
|
||||||
- name: Marta Sancho
|
|
||||||
link: https://x.com/MartaMordis
|
|
||||||
- name: Guido Iribarren
|
|
||||||
link: https://github.com/altergui
|
|
||||||
- name: Lucas Menéndez
|
|
||||||
link: https://github.com/lucasmenendez
|
|
||||||
|
|
||||||
links:
|
|
||||||
web: https://www.vocdoni.io/
|
|
||||||
github: https://github.com/vocdoni
|
|
||||||
docs: https://docs.vocdoni.io/about-us/how-we-work.html
|
|
||||||
block_explorer: https://explorer.vote/
|
|
||||||
blog: https://blog.vocdoni.io/
|
|
||||||
twitter: https://x.com/vocdoni
|
|
||||||
discord: https://discord.com/invite/Qjm7krrFBf
|
|
||||||
|
|
||||||
project_phase: Mainnet
|
|
||||||
sunset: false
|
|
||||||
|
|
||||||
funding:
|
|
||||||
name: Aragon grant 2021/2022
|
|
||||||
link: https://x.com/AragonProject
|
|
||||||
|
|
||||||
blockchain_features:
|
|
||||||
opensource: true
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
|
|
||||||
default_privacy: true
|
|
||||||
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: false
|
|
||||||
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
|
|
||||||
tecnology:
|
|
||||||
type: zkSNARKs
|
|
||||||
|
|
|
@ -1,8 +1,2 @@
|
||||||
name: "Zama"
|
usecase:
|
||||||
usecase: [FHE]
|
- FHE
|
||||||
description: "an open source cryptography company building FHE solutions for blockchain and AI."
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
links:
|
|
||||||
web: https://www.zama.ai
|
|
||||||
docs: https://docs.zama.ai/
|
|
||||||
|
|
|
@ -1,13 +1,2 @@
|
||||||
name: ZkAGI
|
usecase:
|
||||||
usecase: [AI]
|
- AI
|
||||||
description: "Pioneering Privacy AI with Decentralized Infrastructure (DePIN)"
|
|
||||||
links:
|
|
||||||
web: https://www.zkagi.ai/
|
|
||||||
docs: https://zkagi.gitbook.io/introduction
|
|
||||||
whitepaper: https://docsend.com/view/gfz2t2emnz9uifbx
|
|
||||||
blog: https://medium.com/zkagi
|
|
||||||
twitter: https://x.com/zk_agi
|
|
||||||
discord: https://discord.com/invite/Zjxe6m4GhH
|
|
||||||
telegram: https://t.me/ZkAGI_AI
|
|
||||||
have_token: false
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,18 +1,2 @@
|
||||||
name: Actilist
|
usecase:
|
||||||
usecase: [nft]
|
- nft
|
||||||
description: "Secret NFT auctions."
|
|
||||||
links:
|
|
||||||
web: https://test.actilist.io
|
|
||||||
github: https://github.com/actilabs
|
|
||||||
docs: https://docs.actilist.io/
|
|
||||||
blog: https://medium.com/actilist
|
|
||||||
twitter: https://x.com/ActiList_Dapp
|
|
||||||
discord: https://discord.com/invite/uPxGvqJErz
|
|
||||||
telegram: https://t.me/actilist
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: testnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
have_token: false
|
|
||||||
sunset: false
|
|
||||||
|
|
|
@ -1,13 +1,2 @@
|
||||||
name: AesirX WEB3 ID
|
usecase:
|
||||||
usecase: [did]
|
- did
|
||||||
description: "an advanced identity management solution that protects users’ personal data and ensures privacy on the internet."
|
|
||||||
links:
|
|
||||||
web: https://web3id.aesirx.io
|
|
||||||
github: https://github.com/aesirxio
|
|
||||||
whitepaper: https://whitepaper.aesirx.io/
|
|
||||||
|
|
||||||
blog: https://aesirx.io/blog/aesirx
|
|
||||||
twitter: https://x.com/aesirxio
|
|
||||||
facebook: https://www.facebook.com/aesirxio
|
|
||||||
telegram: https://t.me/aesirx_official_community
|
|
||||||
have_token: true
|
|
||||||
|
|
|
@ -1,13 +1,2 @@
|
||||||
name: Alaya
|
usecase:
|
||||||
usecase: [computing-network]
|
- computing-network
|
||||||
description: "Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON."
|
|
||||||
ecosystem: Ethereum
|
|
||||||
project_status: Mainnet, 2022
|
|
||||||
links:
|
|
||||||
web: https://alaya.network/en
|
|
||||||
github: https://github.com/AlayaNetwork
|
|
||||||
forum: https://forum.latticex.foundation/c/alaya-cn/36
|
|
||||||
docs: https://devdocs.alaya.network/alaya-devdocs/en/
|
|
||||||
blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
|
@ -1,41 +1,2 @@
|
||||||
name: Aleo
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
description: "An all-in-one Zero-Knowledge platform. On Aleo you can code, deploy, and run your apps in a single place. Build full-stack, private applications with ZK on layer 1."
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://www.aleo.studio
|
|
||||||
twitter: https://twitter.com/AleoHQ
|
|
||||||
discord: https://discord.gg/aleo
|
|
||||||
youtube: https://www.youtube.com/@aleofoundation
|
|
||||||
github: https://github.com/AleoHQ
|
|
||||||
block_explorer: https://explorer.aleo.org/
|
|
||||||
docs: https://developer.aleo.org/getting_started/
|
|
||||||
blog: https://aleo.org/blog/
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Testnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
technology:
|
|
||||||
type: zk-SNARKs
|
|
||||||
features:
|
|
||||||
- ZK circuit programming
|
|
||||||
- SNARK validator network
|
|
||||||
blockchain_features:
|
|
||||||
p2p: true
|
|
||||||
viewing_key: true
|
|
||||||
dissapearing_tx: true
|
|
||||||
connected_tx: true
|
|
||||||
client_diversability:
|
|
||||||
name: address
|
|
||||||
link: https://explorer.aleo.org/validators
|
|
||||||
default_privacy: true
|
|
||||||
tracebility:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirements: wallet
|
|
||||||
tracked_data: non
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
compliance: false
|
|
||||||
third_party_dependency: false
|
|
||||||
|
|
|
@ -1,22 +1,2 @@
|
||||||
name: Aleph Zero
|
usecase:
|
||||||
usecase: [computing-network]
|
- computing-network
|
||||||
description: "Privacy-enhancing public blockchain with instant finality."
|
|
||||||
ecosystem: Aleph
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: true
|
|
||||||
links:
|
|
||||||
web: https://alephzero.org
|
|
||||||
github: https://github.com/aleph-zero-foundation
|
|
||||||
docs: https://docs.alephzero.org/aleph-zero
|
|
||||||
whitepaper: https://docs.alephzero.org/aleph-zero/explore/whitepapers
|
|
||||||
twitter: https://x.com/Aleph__Zero
|
|
||||||
discord: https://discord.com/invite/alephzero
|
|
||||||
facebook: https://www.facebook.com/AlephZeroFoundation
|
|
||||||
telegram: https://t.me/AlephZeroFoundation
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
company:
|
|
||||||
link: https://alephzero.org/the-team
|
|
||||||
|
|
|
@ -1,17 +1,2 @@
|
||||||
name: ALTER
|
usecase:
|
||||||
usecase: [messaging]
|
- messaging
|
||||||
description: "Private & Secure Communication App Utilizing Secret Nework secret contract technology."
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://alter.network/
|
|
||||||
blog: https://blog.altermail.live/
|
|
||||||
twitter: https://twitter.com/AlterDapp
|
|
||||||
discord: https://discord.com/invite/jyTnQnpnbU
|
|
||||||
facebook: https://www.facebook.com/alterdapp/?_rdr
|
|
||||||
telegram: https://t.me/alterdapp
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
|
@ -1,13 +1,2 @@
|
||||||
name: Anagolay
|
usecase:
|
||||||
usecase: [did]
|
- did
|
||||||
description: "Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P"
|
|
||||||
links:
|
|
||||||
web: https://anagolay.network
|
|
||||||
github: https://github.com/anagolay
|
|
||||||
docs: https://anagolay.dev/docs/
|
|
||||||
whitepaper: https://kelp.notion.site/Anagolay-White-Paper-v_0-3-fd9ca46a2f524e83b46ed8a0242d618d
|
|
||||||
|
|
||||||
blog: https://anagolay.dev/blog/
|
|
||||||
twitter: https://x.com/AnagolayNet
|
|
||||||
discord: https://discord.com/invite/WHe4EuY
|
|
||||||
have_token: true
|
|
||||||
|
|
|
@ -1,30 +1,2 @@
|
||||||
name: Anoma
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement"
|
|
||||||
project_status: testnet
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Christopher Goes
|
|
||||||
role: CTO
|
|
||||||
- name: Adrian Brink
|
|
||||||
role: Co-founder
|
|
||||||
- name: Awa Sun Yin
|
|
||||||
role: CEO
|
|
||||||
links:
|
|
||||||
web: https://anoma.net
|
|
||||||
docs: https://github.com/anoma/anoma-archive/tree/main/docs
|
|
||||||
blog: https://anoma.net/blog
|
|
||||||
github: https://github.com/anoma
|
|
||||||
whitepaper: https://github.com/anoma/whitepaper/blob/main/whitepaper.pdf
|
|
||||||
vision-paper: https://anoma.net/vision-paper.pdf
|
|
||||||
technology:
|
|
||||||
type: ZK, FHE
|
|
||||||
features:
|
|
||||||
- privacy for content
|
|
||||||
blockchain_features:
|
|
||||||
p2p: true
|
|
||||||
tracebility:
|
|
||||||
kyc: false
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
|
|
|
@ -1,14 +1,2 @@
|
||||||
name: Anon Aadhaar
|
usecase:
|
||||||
usecase: [DID]
|
- DID
|
||||||
description: "Anon Aadhaar is a project that allows individuals to prove their citizenship anonymously. The project provides circuits, an SDK, and demo applications that generate and verify proofs of valid Aadhaar cards, integrating with the PCD framework to support a wide range of applications."
|
|
||||||
project_status: testnet
|
|
||||||
live_status: true
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://anon-aadhaar.pse.dev/
|
|
||||||
blog: https://anon-aadhaar-documentation.vercel.app/blog
|
|
||||||
docs: https://anon-aadhaar-documentation.vercel.app/docs/intro
|
|
||||||
github: https://github.com/anon-aadhaar/anon-aadhaar
|
|
||||||
technology:
|
|
||||||
type: zk, circom, rsa
|
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
name: Anon/Nero
|
usecase:
|
||||||
usecase: [wallets]
|
- wallets
|
||||||
description: "Private wallet"
|
|
||||||
links:
|
|
||||||
web: https://t.me/anoneroapks
|
|
||||||
|
|
|
@ -1,10 +1,2 @@
|
||||||
name: Anonybit
|
usecase:
|
||||||
usecase: [did]
|
- did
|
||||||
description: "Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)"
|
|
||||||
ecosystem: multichain
|
|
||||||
links:
|
|
||||||
web: https://www.anonybit.io/team/
|
|
||||||
|
|
||||||
blog: https://www.anonybit.io/blog/
|
|
||||||
twitter: https://x.com/Anonybit1
|
|
||||||
have_token: true
|
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
name: AnonZK Incognito
|
usecase:
|
||||||
usecase: [mixing-service]
|
- mixing-service
|
||||||
description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity."
|
|
||||||
links:
|
|
||||||
web: https://incognito.anonzk.io
|
|
||||||
|
|
|
@ -1,9 +1,2 @@
|
||||||
name: AnyDAO
|
usecase:
|
||||||
usecase: [dao]
|
- dao
|
||||||
description: "Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting"
|
|
||||||
links:
|
|
||||||
web: https://app.anydao.io/bsc/explore
|
|
||||||
docs: https://docs.anydao.io/
|
|
||||||
blog: https://anydao.medium.com/
|
|
||||||
twitter: https://x.com/0xAnyDAO
|
|
||||||
telegram: https://t.me/AnyDAO
|
|
||||||
|
|
|
@ -1,12 +1,2 @@
|
||||||
name: Anytype
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
description: "local-first, E2E encrypted software designed as a secure place to create and store digital assets. You can use Anytype to create and connect your tasks, notes, ideas, documents, workflows, and more"
|
|
||||||
team: 56 members
|
|
||||||
links:
|
|
||||||
web: https://anytype.io/en
|
|
||||||
github: https://github.com/anytypeio
|
|
||||||
docs: https://doc.anytype.io/anytype-docs
|
|
||||||
blog: https://blog.anytype.io/
|
|
||||||
twitter: https://twitter.com/anytypelabs
|
|
||||||
telegram: https://t.me/anytype
|
|
||||||
youtube: https://www.youtube.com/c/anytype
|
|
||||||
|
|
|
@ -1,6 +1,2 @@
|
||||||
name: Arcana's Private NFT
|
usecase:
|
||||||
usecase: [nft]
|
- nft
|
||||||
description: "New supported format by Arcana preserving privacy within NFT minting."
|
|
||||||
links:
|
|
||||||
web: https://arcana.network/blog/launching-private-nfts-on-arcana/
|
|
||||||
github: https://docs.beta.arcana.network/docs/conceptpvtnft/
|
|
||||||
|
|
|
@ -1,29 +1,2 @@
|
||||||
name: Arcana
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption"
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Mayur Relekar
|
|
||||||
role: Co-Founder
|
|
||||||
- name: Aravindh Kumar
|
|
||||||
role: Co-Founder
|
|
||||||
- name: Ajay Shetty
|
|
||||||
role: Chief Operating Officer
|
|
||||||
- name: Abhishek Chaudhary
|
|
||||||
role: Chief Technology Officer
|
|
||||||
- name: Sharan Grandigae
|
|
||||||
role: Sharan Grandigae
|
|
||||||
links:
|
|
||||||
web: https://arcana.network
|
|
||||||
github: https://docs.beta.arcana.network
|
|
||||||
twitter: https://twitter.com/ArcanaNetwork
|
|
||||||
discord: https://discord.com/invite/6g7fQvEpdy
|
|
||||||
youtube: https://www.youtube.com/@ArcanaNetwork
|
|
||||||
telegram: https://t.me/ArcanaNetwork
|
|
||||||
docs: https://docs.arcana.network/
|
|
||||||
blog: https://arcana.network/blog
|
|
||||||
whitepaper: https://www.notion.so/arcananetwork/Arcana-Technical-Docs-a1d7fd0d2970452586c693e4fee14d08
|
|
||||||
have_token: true
|
|
||||||
tokens:
|
|
||||||
- symbol: XAR
|
|
||||||
|
|
|
@ -1,20 +1,2 @@
|
||||||
name: ARPA
|
usecase:
|
||||||
usecase: [computing-network]
|
- computing-network
|
||||||
description: "Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc"
|
|
||||||
ecosystem: multichain
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: true
|
|
||||||
links:
|
|
||||||
web: https://www.arpanetwork.io/en-US
|
|
||||||
github: https://github.com/ARPA-Network
|
|
||||||
docs: https://docs.arpanetwork.io/becoming-a-node-and-get-rewarded
|
|
||||||
whitepaper: https://docsend.com/view/gnqammz8wtysrud4
|
|
||||||
blog: https://arpa.medium.com/
|
|
||||||
twitter: https://x.com/arpaofficial
|
|
||||||
discord: https://discord.com/invite/swahGvv5XK
|
|
||||||
telegram: https://t.me/arpa_community
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
|
@ -1,10 +1,2 @@
|
||||||
name: AsMatch
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
description: "The only Web3 matching app that uses ZKPs to authenticate users’ on-chain credentials"
|
|
||||||
links:
|
|
||||||
web: https://www.asmatch.app
|
|
||||||
whitepaper: https://whitepaper.asmatch.app/
|
|
||||||
|
|
||||||
blog: https://asmatch.medium.com/
|
|
||||||
twitter: https://x.com/AsMatchApp
|
|
||||||
discord: https://discord.com/invite/yqUWDdyfX9
|
|
||||||
|
|
|
@ -1,17 +1,2 @@
|
||||||
name: Asterizm
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
description: "Plug and play blockchain interoperability solution for enterprises, web3 protocols, and fintech with privacy at the core. Launch in-demand cross-chain solutions with their core modules - asset bridge, NFT bridge, native cross-chain token & NFT"
|
|
||||||
team:
|
|
||||||
- name: Artem Avdeev
|
|
||||||
role: CEO
|
|
||||||
- name: Denis Polulyakhov
|
|
||||||
role: Co-Founder
|
|
||||||
links:
|
|
||||||
web: https://asterizm.io
|
|
||||||
github: https://github.com/Asterizm-Protocol
|
|
||||||
docs: http://docs.asterizm.io/
|
|
||||||
blog: https://medium.com/asterizm-labs
|
|
||||||
whitepaper: https://asterizm.io/files/wp.pdf
|
|
||||||
twitter: https://twitter.com/Asterizm_layer
|
|
||||||
discord: https://discord.gg/z5QVerD48C
|
|
||||||
telegram: https://t.me/asterizm_protocol
|
|
||||||
|
|
|
@ -1,18 +1,2 @@
|
||||||
name: Auth3
|
usecase:
|
||||||
usecase: [infrastructure]
|
- 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
|
|
||||||
|
|
|
@ -1,18 +1,2 @@
|
||||||
name: Automata Network
|
usecase:
|
||||||
usecase: [infrastructure]
|
- infrastructure
|
||||||
description: "The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA"
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
website: https://www.ata.network/
|
|
||||||
docs: https://docs.ata.network
|
|
||||||
github: https://github.com/automata-network
|
|
||||||
blog: https://blog.ata.network/
|
|
||||||
have_token: true
|
|
||||||
tokens:
|
|
||||||
- symbol: ATA
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: false
|
|
||||||
testnet: true
|
|
||||||
mainnet: false
|
|
||||||
|
|
|
@ -1,16 +1,2 @@
|
||||||
name: Avado
|
usecase:
|
||||||
usecase: [hardware]
|
- hardware
|
||||||
description: "A plug-and-play hardware device that connects users to many different kinds of blockchains"
|
|
||||||
ecosystem: multichain
|
|
||||||
links:
|
|
||||||
web: https://ava.do/
|
|
||||||
github: https://github.com/mysteriumnetwork/AVADO-DNP-Mysterium-Server
|
|
||||||
docs: https://docs.ava.do/
|
|
||||||
blog: https://ava.do/blog/
|
|
||||||
twitter: https://x.com/AvadoAg
|
|
||||||
discord: https://discord.com/invite/RpMaFjTjyw
|
|
||||||
facebook: https://www.facebook.com/avadocloud
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
company:
|
|
||||||
link: https://www.mysterium.network/team
|
|
||||||
|
|
|
@ -1,9 +1,2 @@
|
||||||
name: AXIAtel
|
usecase:
|
||||||
usecase: [hardware]
|
- hardware
|
||||||
description: "a privacy first mobile service for everyone"
|
|
||||||
ecosystem: multichain
|
|
||||||
links:
|
|
||||||
web: https://axiatel.co
|
|
||||||
blog: https://medium.com/@axiatel
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
|
@ -1,8 +1,2 @@
|
||||||
name: Aztec Connect
|
usecase:
|
||||||
usecase: [bridge]
|
- bridge
|
||||||
links:
|
|
||||||
github: https://github.com/AztecProtocol/aztec-connect-bridges
|
|
||||||
docs: https://docs.aztec.network/misc/aztec_connect_sunset
|
|
||||||
blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/
|
|
||||||
discord: https://discord.com/invite/aztec
|
|
||||||
education: https://twitter.com/aztecnetwork/status/1575662728395358208
|
|
||||||
|
|
|
@ -1,12 +1,2 @@
|
||||||
name: Basic Attention Token
|
usecase:
|
||||||
usecase: [currency]
|
- currency
|
||||||
description: "Making Crypto and DeFi accessible and usable for everyone (powered by Brave)"
|
|
||||||
ecosystem: Solana
|
|
||||||
links:
|
|
||||||
web: https://basicattentiontoken.org
|
|
||||||
whitepaper: https://basicattentiontoken.org/static-assets/documents/BasicAttentionTokenWhitePaper-4.pdf
|
|
||||||
blog: https://basicattentiontoken.org/blog/
|
|
||||||
twitter: https://x.com/attentiontoken
|
|
||||||
discord: https://discord.com/invite/BATBrigade
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
|
|
|
@ -1,55 +1,2 @@
|
||||||
name: Basic Swap
|
usecase:
|
||||||
usecase: [defi]
|
- defi
|
||||||
ecosystem: Multichain
|
|
||||||
description: "A private and cross-chain DEX"
|
|
||||||
project_type: DeFi
|
|
||||||
product_launch_day: "2022-12-08"
|
|
||||||
technology:
|
|
||||||
type: P2P
|
|
||||||
name: peer to peer
|
|
||||||
features:
|
|
||||||
- private
|
|
||||||
- swaps
|
|
||||||
links:
|
|
||||||
web: https://basicswapdex.com/
|
|
||||||
twitter: https://twitter.com/basicswapdex
|
|
||||||
blog: https://particl.news/tag/basicswap/
|
|
||||||
github: https://github.com/tecnovert/basicswap
|
|
||||||
docs: https://academy.particl.io/en/latest/basicswap-dex/basicswap_technicals.html
|
|
||||||
blockchain_features:
|
|
||||||
p2p: true
|
|
||||||
encryption: P2P, AtomicSwaps
|
|
||||||
upgradability:
|
|
||||||
enabled: true
|
|
||||||
type: fork
|
|
||||||
opensource: true
|
|
||||||
dissapearing_tx: true
|
|
||||||
frontend_anonymity: self-hosted
|
|
||||||
connected_tx: false
|
|
||||||
revealed_recipient: true
|
|
||||||
revealed_sender: true
|
|
||||||
revealed_ammount: true
|
|
||||||
data_masking: P2P
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
licences: MIT License
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
traceability:
|
|
||||||
tracked_data: Chains activity
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallets
|
|
||||||
third_party_dependency: false
|
|
||||||
compliance: none
|
|
||||||
client_diversability:
|
|
||||||
- name: BasicSwap client
|
|
||||||
link: https://basicswapdex.com/
|
|
||||||
default_privacy: false
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
|
@ -1,18 +1,2 @@
|
||||||
name: BCchat
|
usecase:
|
||||||
usecase: [messaging]
|
- messaging
|
||||||
description: "A decentralized, privacy messenger built over the Beldex blockchain."
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://bchat.beldex.io
|
|
||||||
github: https://github.com/Beldex-Coin
|
|
||||||
docs: https://docs.beldex.io/
|
|
||||||
litepaper: https://bchat.beldex.io/img/litepaper.pdf
|
|
||||||
blog: https://beldex.io/blog/what-is-bchat/
|
|
||||||
twitter: https://twitter.com/Bchat_official
|
|
||||||
telegram: https://t.me/official_beldex
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
|
@ -1,14 +1,2 @@
|
||||||
name: Beam
|
usecase:
|
||||||
usecase: [wallets]
|
- wallets
|
||||||
description: "Self-custodial wallet built on eco.org"
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
links:
|
|
||||||
web: https://beam.eco/
|
|
||||||
twitter: https://x.com/beam_eco
|
|
||||||
github: https://github.com/eco-association
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version:
|
|
||||||
testnet: false
|
|
||||||
mainnet: false
|
|
||||||
|
|
|
@ -1,16 +1,2 @@
|
||||||
name: Beam
|
usecase:
|
||||||
usecase: [currency]
|
- currency
|
||||||
description: "Best in class privacy coin and confidential DeFi platform"
|
|
||||||
links:
|
|
||||||
web: https://beam.mw
|
|
||||||
github: https://github.com/BeamMW/beam
|
|
||||||
docs: https://beam.mw/docs
|
|
||||||
forum: https://forum.beam.mw/
|
|
||||||
blog: https://medium.com/beam-mw
|
|
||||||
twitter: https://x.com/beamprivacy
|
|
||||||
discord: https://discord.com/invite/BHZvAhg
|
|
||||||
telegram: https://t.me/BeamPrivacy
|
|
||||||
ecosystem: Beam
|
|
||||||
project_status: Mainnet
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
|
|
|
@ -1,15 +1,2 @@
|
||||||
name: Beepo
|
usecase:
|
||||||
usecase: [messaging]
|
- messaging
|
||||||
description: "A social networking application integrated with a multichain chain crypto wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and a sales catalog section for business accounts"
|
|
||||||
team:
|
|
||||||
- name: Michael Jimoh
|
|
||||||
role: Co-Founder & CEO
|
|
||||||
- name: Clement Hochart
|
|
||||||
role: Co-Founder
|
|
||||||
links:
|
|
||||||
web: https://beepoapp.net/#features
|
|
||||||
github: https://github.com/beepo-app
|
|
||||||
whitepaper: https://beepo.gitbook.io/internal-wiki/the-company/whitepaper
|
|
||||||
twitter: https://x.com/beepoapp
|
|
||||||
discord: https://discord.com/invite/DhYJGgAVzR
|
|
||||||
telegram: https://t.me/beepoapp
|
|
||||||
|
|
|
@ -1,20 +1,2 @@
|
||||||
name: Beldex
|
usecase:
|
||||||
usecase: [currency]
|
- currency
|
||||||
description: "A privacy currency based on Monero, Beldex currently offers incentive-based Master Nodes and in the future Beldex will be using POS instead of POW"
|
|
||||||
ecosystem: Beldex
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
verion: Mainnet
|
|
||||||
testnet: true
|
|
||||||
mainnet: true
|
|
||||||
links:
|
|
||||||
web: https://www.beldex.io/
|
|
||||||
github: https://github.com/Beldex-Coin
|
|
||||||
docs: https://docs.beldex.io/
|
|
||||||
blog: https://beldex.io/blog/
|
|
||||||
twitter: https://x.com/BeldexCoin
|
|
||||||
discord: https://discord.com/invite/Hj4MAmA5gs
|
|
||||||
facebook: https://www.facebook.com/beldexofficial
|
|
||||||
telegram: https://t.me/official_beldex
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
|
|
|
@ -1,10 +1,2 @@
|
||||||
name: Bermuda
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
description: "Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens"
|
|
||||||
links:
|
|
||||||
web: https://www.bmda.io
|
|
||||||
whitepaper: https://www.bmda.io/bermuda-whitepaper-1.2.pdf
|
|
||||||
|
|
||||||
blog: https://medium.com/@bmdaadmin
|
|
||||||
twitter: https://x.com/BermudaEth
|
|
||||||
telegram: https://t.me/bermudaportal
|
|
||||||
|
|
|
@ -1,16 +1,2 @@
|
||||||
name: Bidshop
|
usecase:
|
||||||
usecase: [nft]
|
- nft
|
||||||
description: "The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs"
|
|
||||||
links:
|
|
||||||
web: https://www.bidshop.io
|
|
||||||
docs: https://bidshop.gitbook.io/bidshop-platform
|
|
||||||
blog: https://medium.com/@BIDSHOP
|
|
||||||
twitter: https://x.com/BIDSHOP_io
|
|
||||||
telegram: https://t.me/BIDSHOP_TG
|
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F
|
|
||||||
tokens:
|
|
||||||
- name: BIDSHOP
|
|
||||||
symbol: BIDS
|
|
||||||
network: Ethereum
|
|
||||||
contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F"
|
|
||||||
|
|
|
@ -1,67 +1,2 @@
|
||||||
name: Blackbox
|
usecase:
|
||||||
usecase: [defi]
|
- defi
|
||||||
ecosystem: Secret
|
|
||||||
description: "Collection of tools allowing you send & receive SCRT anonymously"
|
|
||||||
project_type: DeFi
|
|
||||||
product_launch_day: "2021-15-02"
|
|
||||||
technology:
|
|
||||||
type: TEE
|
|
||||||
name: Trusted execution environment
|
|
||||||
features:
|
|
||||||
- Privacy
|
|
||||||
- Payments
|
|
||||||
links:
|
|
||||||
web: https://blackbox.cash/
|
|
||||||
twitter: https://twitter.com/TriviumNode
|
|
||||||
telegram: https://t.me/TriviumNode
|
|
||||||
block_explorer: https://www.mintscan.io/secret
|
|
||||||
github: https://github.com/TriviumNode
|
|
||||||
blockchain_features:
|
|
||||||
p2p: false
|
|
||||||
encryption: TEE
|
|
||||||
upgradability:
|
|
||||||
enabled: false
|
|
||||||
opensource: true
|
|
||||||
viewing_key: true
|
|
||||||
dissapearing_tx: false
|
|
||||||
frontend_anonymity: options
|
|
||||||
connected_tx: false
|
|
||||||
revealed_recipient: false
|
|
||||||
revealed_sender: false
|
|
||||||
revealed_ammount: false
|
|
||||||
reversability_condition: hack
|
|
||||||
data_masking: SNIP-20 token/SCRT contracts
|
|
||||||
asset_custody_type: non-custody
|
|
||||||
licences: Apache License
|
|
||||||
privacy_policy:
|
|
||||||
defined: false
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
company:
|
|
||||||
name: Trivium Nodes
|
|
||||||
link: https://trivium.network/
|
|
||||||
contacts: info@trivium.network
|
|
||||||
teammembers:
|
|
||||||
- name: Xiphiar
|
|
||||||
role: rdeveloper
|
|
||||||
link: https://github.com/Xiphiar
|
|
||||||
storage:
|
|
||||||
decentralized: true
|
|
||||||
traceability:
|
|
||||||
kyc: false
|
|
||||||
sign_in_type_requirments: wallet
|
|
||||||
third_party_dependency: true
|
|
||||||
compliance: false
|
|
||||||
social_trust: Slabs ( MRSINGER ), Contract operator ( Trivium )
|
|
||||||
technical_spof: Can decrypt/fraud
|
|
||||||
client_diversability:
|
|
||||||
- name: Keplr
|
|
||||||
link: https://www.keplr.app/
|
|
||||||
- name: Starshell
|
|
||||||
link: https://starshell.net/
|
|
||||||
default_privacy: true
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: Mainnet
|
|
||||||
testnet: false
|
|
||||||
mainnet: true
|
|
||||||
|
|
|
@ -1,16 +1,2 @@
|
||||||
name: BlackHat Coin
|
usecase:
|
||||||
usecase: [currency]
|
- currency
|
||||||
description: "Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol"
|
|
||||||
ecosystem: BlackHat
|
|
||||||
project_status: Mainnet
|
|
||||||
links:
|
|
||||||
web: https://blackhatco.in
|
|
||||||
github: https://github.com/BlackHatCoin
|
|
||||||
block_explorer: https://explorer.blackhatco.in/
|
|
||||||
forum: https://forum.blackhatco.in/
|
|
||||||
whitepaper: https://blackhatco.in/resources/whitepaper.pdf?v092
|
|
||||||
twitter: https://x.com/blkcoin
|
|
||||||
discord: https://discord.com/invite/wGvzQVfhdR
|
|
||||||
telegram: https://t.me/BlackHatCoin
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
|
@ -1,20 +1,2 @@
|
||||||
name: Blockstream Green
|
usecase:
|
||||||
usecase: [wallets]
|
- wallets
|
||||||
description: "A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream"
|
|
||||||
ecosystem: Bitcoin
|
|
||||||
links:
|
|
||||||
web: https://blockstream.com/green/
|
|
||||||
github: https://github.com/Blockstream/green_qt
|
|
||||||
docs: https://help.blockstream.com/hc/en-us/usecase/900000056183-Blockstream-Green/
|
|
||||||
twitter: https://x.com/Blockstream
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
teammembers:
|
|
||||||
- name: Dr. Adam Back
|
|
||||||
role: CEO
|
|
||||||
link: https://blockstream.com/about/
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: 2.0.6
|
|
||||||
testnet: false
|
|
||||||
mainnet: false
|
|
||||||
|
|
|
@ -1,16 +1,2 @@
|
||||||
name: BlockWallet
|
usecase:
|
||||||
usecase: [wallets]
|
- wallets
|
||||||
description: "BlockWallet is the epitome of speed, reliability, security, and privacy in the world of digital assets. As a self-custodial Web3 wallet, it empowers you to truly own your digital currencies while eliminating concerns surrounding asset management."
|
|
||||||
ecosystem: Ethereum
|
|
||||||
links:
|
|
||||||
web: https://blockwallet.io/
|
|
||||||
github: https://github.com/block-wallet
|
|
||||||
docs: https://blockwallet.io/docs
|
|
||||||
blog: https://blockwallet.io/blog
|
|
||||||
team:
|
|
||||||
anonymous: false
|
|
||||||
project_status:
|
|
||||||
live_status: true
|
|
||||||
version: v.1.2.9
|
|
||||||
testnet: false
|
|
||||||
mainnet: false
|
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
name: Blockyfile
|
usecase:
|
||||||
usecase: [dapps]
|
- dapps
|
||||||
description: "The new way to upload files anonymously and without censorship."
|
|
||||||
links:
|
|
||||||
web: https://blockyfile.org
|
|
||||||
|
|
|
@ -1,6 +1,2 @@
|
||||||
name: Bluum
|
usecase:
|
||||||
usecase: [nft]
|
- nft
|
||||||
description: "Enable confidentiality of NFT content."
|
|
||||||
links:
|
|
||||||
web: https://bluumprotocol.com
|
|
||||||
github: https://github.com/BluumProtocol
|
|
||||||
|
|
|
@ -1,15 +1,2 @@
|
||||||
name: BOB Protocol
|
usecase:
|
||||||
usecase: [currency]
|
- currency
|
||||||
description: "A multi-chain, multi-collateral stable token enhanced with optional privacy features"
|
|
||||||
ecosystem: Polygon, Optimism, BNB, Ethereum
|
|
||||||
links:
|
|
||||||
web: https://zkbob.com/
|
|
||||||
github: https://github.com/zkBob
|
|
||||||
docs: https://docs.zkbob.com/
|
|
||||||
forum: https://forum.zkbob.com/?utm_source=Twitter&utm_medium=Linktree
|
|
||||||
blog: https://blog.zkbob.com/
|
|
||||||
twitter: https://x.com/zkBob_
|
|
||||||
discord: https://discord.com/invite/zkbob
|
|
||||||
telegram: https://t.me/zkbobcommunity
|
|
||||||
team:
|
|
||||||
anonymous: true
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue