mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
Merge pull request #794 from web3privacy/pb/required-fields
Pb/required-fields
This commit is contained in:
commit
0d18804db7
491 changed files with 4069 additions and 3343 deletions
|
@ -4,6 +4,9 @@ required:
|
||||||
- id
|
- id
|
||||||
- name
|
- name
|
||||||
- categories
|
- categories
|
||||||
|
- have_token
|
||||||
|
- third_party_dependency
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
id:
|
id:
|
||||||
type: string
|
type: string
|
||||||
|
@ -39,6 +42,7 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
have_token:
|
have_token:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
||||||
token_link:
|
token_link:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
format: uri
|
||||||
|
@ -64,6 +68,9 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
team:
|
team:
|
||||||
type: object
|
type: object
|
||||||
|
required:
|
||||||
|
- anonymous
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
anonymous:
|
anonymous:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
@ -115,8 +122,12 @@ properties:
|
||||||
link:
|
link:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
format: uri
|
||||||
|
|
||||||
sunset:
|
sunset:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
required:
|
||||||
|
- sunset
|
||||||
|
|
||||||
# LINKS ---------------------------------------------------------------------
|
# LINKS ---------------------------------------------------------------------
|
||||||
links:
|
links:
|
||||||
type: object
|
type: object
|
||||||
|
@ -201,6 +212,9 @@ properties:
|
||||||
- features
|
- features
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
type: object
|
type: object
|
||||||
|
required:
|
||||||
|
- opensource
|
||||||
|
- p2p
|
||||||
properties:
|
properties:
|
||||||
encryption:
|
encryption:
|
||||||
type: string
|
type: string
|
||||||
|
@ -224,6 +238,11 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
upgradability:
|
upgradability:
|
||||||
type: object
|
type: object
|
||||||
|
required:
|
||||||
|
- enabled
|
||||||
|
- viewing_key
|
||||||
|
- dissapearing_tx
|
||||||
|
- connected_tx
|
||||||
properties:
|
properties:
|
||||||
enabled:
|
enabled:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
@ -256,6 +275,8 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
type: object
|
type: object
|
||||||
|
required:
|
||||||
|
- defined
|
||||||
properties:
|
properties:
|
||||||
defined:
|
defined:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
@ -310,6 +331,10 @@ properties:
|
||||||
type: boolean
|
type: boolean
|
||||||
project_status:
|
project_status:
|
||||||
type: object
|
type: object
|
||||||
|
required:
|
||||||
|
- live_status
|
||||||
|
- testnet
|
||||||
|
- mainnet
|
||||||
properties:
|
properties:
|
||||||
live_status:
|
live_status:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
64
script.py
64
script.py
|
@ -1,64 +0,0 @@
|
||||||
import yaml
|
|
||||||
import os
|
|
||||||
|
|
||||||
# Funkce pro načtení YAML souboru
|
|
||||||
def load_yaml(file_path):
|
|
||||||
with open(file_path, 'r', encoding='utf-8') as file:
|
|
||||||
return yaml.safe_load(file)
|
|
||||||
|
|
||||||
# Funkce pro zápis YAML souboru
|
|
||||||
def save_yaml(file_path, data):
|
|
||||||
with open(file_path, 'w', encoding='utf-8') as file:
|
|
||||||
yaml.dump(data, file, allow_unicode=True)
|
|
||||||
|
|
||||||
# Funkce pro odstranění všeho kromě 'usecase'
|
|
||||||
def keep_only_usecase(file_path):
|
|
||||||
try:
|
|
||||||
# Načti YAML soubor
|
|
||||||
data = load_yaml(file_path)
|
|
||||||
|
|
||||||
# Ponechej jen klíč 'usecase', pokud existuje
|
|
||||||
if 'usecase' in data:
|
|
||||||
filtered_data = {'usecase': data['usecase']}
|
|
||||||
else:
|
|
||||||
filtered_data = {}
|
|
||||||
|
|
||||||
# Ulož upravený soubor zpět
|
|
||||||
save_yaml(file_path, filtered_data)
|
|
||||||
return True
|
|
||||||
except Exception as e:
|
|
||||||
print(f"Chyba při zpracování souboru {file_path}: {e}")
|
|
||||||
return False
|
|
||||||
|
|
||||||
# Funkce pro procházení složek a zpracování souborů index.yaml
|
|
||||||
def process_yaml_projects(projects_dir):
|
|
||||||
total_files = 0
|
|
||||||
processed_files = 0
|
|
||||||
|
|
||||||
for project in os.listdir(projects_dir):
|
|
||||||
project_path = os.path.join(projects_dir, project)
|
|
||||||
index_file_path = os.path.join(project_path, 'index.yaml')
|
|
||||||
|
|
||||||
# Ověř, že cesta je složka a obsahuje soubor 'index.yaml'
|
|
||||||
if os.path.isdir(project_path):
|
|
||||||
total_files += 1
|
|
||||||
if os.path.isfile(index_file_path):
|
|
||||||
success = keep_only_usecase(index_file_path)
|
|
||||||
if success:
|
|
||||||
print(f"Zpracováno: {index_file_path}")
|
|
||||||
processed_files += 1
|
|
||||||
else:
|
|
||||||
print(f"Nelze zpracovat: {index_file_path}")
|
|
||||||
else:
|
|
||||||
print(f"Složka {project_path} neobsahuje soubor 'index.yaml'")
|
|
||||||
|
|
||||||
print(f"Celkový počet složek: {total_files}")
|
|
||||||
print(f"Úspěšně zpracovaných souborů: {processed_files}")
|
|
||||||
print(f"Nepřepsaných složek (bez 'index.yaml' nebo s chybou): {total_files - processed_files}")
|
|
||||||
|
|
||||||
# Použití
|
|
||||||
# Zde nastav složku, kde jsou tvé projekty (src/projects)
|
|
||||||
projects_dir = "src/projects"
|
|
||||||
|
|
||||||
# Spusť zpracování
|
|
||||||
process_yaml_projects(projects_dir)
|
|
|
@ -1,11 +1,14 @@
|
||||||
name: 01 Labs
|
name: 01 Labs
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Catalyzing a new generation of applications powered by zero knowledge cryptography."
|
- applications
|
||||||
|
description: Catalyzing a new generation of applications powered by zero knowledge
|
||||||
|
cryptography.
|
||||||
links:
|
links:
|
||||||
web: https://o1labs.org
|
web: https://o1labs.org
|
||||||
github: https://github.com/o1-labs
|
github: https://github.com/o1-labs
|
||||||
blog: https://www.o1labs.org/blog
|
blog: https://www.o1labs.org/blog
|
||||||
twitter: https://x.com/o1_labs
|
twitter: https://x.com/o1_labs
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
name: 0xTIP
|
name: 0xTIP
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers."
|
- applications
|
||||||
|
description: 0xTIP features mixing, private bridging from Ethereum to BNB chain as
|
||||||
|
well as off-chain transfers.
|
||||||
links:
|
links:
|
||||||
web: https://0xmonero.com/mixer
|
web: https://0xmonero.com/mixer
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
name: "1984"
|
name: '1984'
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
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."
|
- 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:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
web: https://1984.hosting/
|
web: https://1984.hosting/
|
||||||
docs: https://kb.1984hosting.com/doku.php?id=start
|
docs: https://kb.1984hosting.com/doku.php?id=start
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
name: 1RPC
|
name: 1RPC
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "The Web3 Private RPC Relay"
|
- infrastructure
|
||||||
|
description: The Web3 Private RPC Relay
|
||||||
links:
|
links:
|
||||||
web: https://www.1rpc.io
|
web: https://www.1rpc.io
|
||||||
docs: https://docs.ata.network/1rpc/introduction/
|
docs: https://docs.ata.network/1rpc/introduction/
|
||||||
twitter: https://x.com/1rpc_
|
twitter: https://x.com/1rpc_
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- rpc-provider
|
- rpc-provider
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
name: 2FA Guru
|
name: 2FA Guru
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "A simple solution to interact with DApps by enforcing an additional signature check before each transaction"
|
- applications
|
||||||
|
description: A simple solution to interact with DApps by enforcing an additional signature
|
||||||
|
check before each transaction
|
||||||
links:
|
links:
|
||||||
web: https://www.2fa.guru
|
web: https://www.2fa.guru
|
||||||
github: https://github.com/skiff-org/skiff-mail
|
github: https://github.com/skiff-org/skiff-mail
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: aioz-network
|
id: aioz-network
|
||||||
name: Aioz network
|
name: Aioz network
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "DePIN for Web3 AI, Storage & Streaming"
|
- applications
|
||||||
|
description: DePIN for Web3 AI, Storage & Streaming
|
||||||
links:
|
links:
|
||||||
web: https://aioz.network/
|
web: https://aioz.network/
|
||||||
block_explorer: https://t.me/aioznetwork
|
block_explorer: https://t.me/aioznetwork
|
||||||
|
@ -9,6 +10,7 @@ links:
|
||||||
blog: https://aioz.network/blog
|
blog: https://aioz.network/blog
|
||||||
twitter: https://x.com/AIOZNetwork
|
twitter: https://x.com/AIOZNetwork
|
||||||
telegram: https://t.me/aioznetwork
|
telegram: https://t.me/aioznetwork
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- ai
|
- ai
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
id: adamant
|
id: adamant
|
||||||
name: Adamant
|
name: Adamant
|
||||||
categories: [social-and-communications]
|
categories:
|
||||||
description: "Decentralized anonymous blockchain Messenger & crypto Wallet"
|
- social-and-communications
|
||||||
|
description: Decentralized anonymous blockchain Messenger & crypto Wallet
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://adamant.im/
|
web: https://adamant.im/
|
||||||
github: https://github.com/adamant-im
|
github: https://github.com/adamant-im
|
||||||
|
@ -14,19 +13,17 @@ links:
|
||||||
blog: https://news.adamant.im/
|
blog: https://news.adamant.im/
|
||||||
twitter: https://x.com/adamant_im
|
twitter: https://x.com/adamant_im
|
||||||
telegram: https://t.me/adamant_eng
|
telegram: https://t.me/adamant_eng
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://www.coingecko.com/en/coins/adamant-messenger
|
token_link: https://www.coingecko.com/en/coins/adamant-messenger
|
||||||
tokens:
|
tokens:
|
||||||
- name: ADMToken
|
- name: ADMToken
|
||||||
symbol: $ADM
|
symbol: $ADM
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
id: anon-club
|
id: anon-club
|
||||||
name: AnonKlub
|
name: AnonKlub
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "AnonKlub is a tool designed for Ethereum developers that allows for anonymous proof of Ethereum address ownership."
|
- applications
|
||||||
|
description: AnonKlub is a tool designed for Ethereum developers that allows for anonymous
|
||||||
|
proof of Ethereum address ownership.
|
||||||
project_status:
|
project_status:
|
||||||
live_status: false
|
live_status: false
|
||||||
version: testnet
|
version: testnet
|
||||||
|
@ -15,7 +17,9 @@ links:
|
||||||
github: https://github.com/anonklub/anonklub
|
github: https://github.com/anonklub/anonklub
|
||||||
technology:
|
technology:
|
||||||
type: circom, snarkjs, halo2
|
type: circom, snarkjs, halo2
|
||||||
features: ["zkp"]
|
features:
|
||||||
|
- zkp
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: arcium
|
id: arcium
|
||||||
name: "Arcium"
|
name: Arcium
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "The first parallelized confidential computing network"
|
- infrastructure
|
||||||
|
description: The first parallelized confidential computing network
|
||||||
links:
|
links:
|
||||||
web: https://arcium.com/
|
web: https://arcium.com/
|
||||||
github: https://github.com/elusiv-privacy
|
github: https://github.com/elusiv-privacy
|
||||||
|
@ -9,3 +10,5 @@ links:
|
||||||
blog: https://blog.arcium.com/
|
blog: https://blog.arcium.com/
|
||||||
twitter: https://x.com/ArciumHQ
|
twitter: https://x.com/ArciumHQ
|
||||||
discord: https://discord.com/invite/arcium
|
discord: https://discord.com/invite/arcium
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
id: bandada
|
id: bandada
|
||||||
name: Bandada
|
name: Bandada
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "An open-source system for managing privacy-preserving groups of anonymous individuals."
|
- applications
|
||||||
|
description: An open-source system for managing privacy-preserving groups of anonymous
|
||||||
|
individuals.
|
||||||
project_status:
|
project_status:
|
||||||
version: "testnet"
|
version: testnet
|
||||||
|
live_status: true
|
||||||
|
mainnet: false
|
||||||
|
testnet: true
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -11,6 +16,7 @@ links:
|
||||||
docs: https://docs.bandada.pse.dev/
|
docs: https://docs.bandada.pse.dev/
|
||||||
github: https://github.com/bandada-infra/bandada
|
github: https://github.com/bandada-infra/bandada
|
||||||
type: semaphore, zk-kit
|
type: semaphore, zk-kit
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,15 +1,19 @@
|
||||||
id: blockblend
|
id: blockblend
|
||||||
name: BlockBlend
|
name: BlockBlend
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum, polygon, base, bnb, solana]
|
- applications
|
||||||
description: "Privacy Cross-Chain Decentralized Services"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
- polygon
|
||||||
|
- base
|
||||||
|
- bnb
|
||||||
|
- solana
|
||||||
|
description: Privacy Cross-Chain Decentralized Services
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Tom
|
- name: Tom
|
||||||
link: https://x.com/TomBlockBlend
|
link: https://x.com/TomBlockBlend
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://blockblend.io/
|
web: https://blockblend.io/
|
||||||
docs: https://docs.blockblend.io/
|
docs: https://docs.blockblend.io/
|
||||||
|
@ -17,20 +21,18 @@ links:
|
||||||
blog: https://blockblendio.medium.com/
|
blog: https://blockblendio.medium.com/
|
||||||
twitter: https://x.com/blockblendio
|
twitter: https://x.com/blockblendio
|
||||||
telegram: https://t.me/blockblendIO
|
telegram: https://t.me/blockblendIO
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/address/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124
|
token_link: https://etherscan.io/address/0x0a44a7ccea34a7563ba1d45a5f757d0b02281124
|
||||||
tokens:
|
tokens:
|
||||||
- name: BBL Tpken
|
- name: BBL Tpken
|
||||||
symbol: $BBL
|
symbol: $BBL
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124"
|
contract_address: '0x0a44a7ccea34a7563ba1d45a5f757d0b02281124'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- bridge
|
- bridge
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,25 +1,23 @@
|
||||||
id: broearn
|
id: broearn
|
||||||
name: Broearn
|
name: Broearn
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3 browser"
|
- applications
|
||||||
|
description: Broearn the Ai Browser. Use-to-Earn solution, the privacy-centric Web3
|
||||||
|
browser
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.broearn.com/
|
web: https://www.broearn.com/
|
||||||
docs: https://docs.broearn.com/
|
docs: https://docs.broearn.com/
|
||||||
twitter: https://x.com/broearn
|
twitter: https://x.com/broearn
|
||||||
discord: https://discord.com/invite/vsfqexDTDK
|
discord: https://discord.com/invite/vsfqexDTDK
|
||||||
telegram: https://t.me/broearn_browser
|
telegram: https://t.me/broearn_browser
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- browser
|
- browser
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,15 +1,22 @@
|
||||||
id: chainport
|
id: chainport
|
||||||
name: ChainPort
|
name: ChainPort
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
ecosystem: [ethereum, arbitrum, optimism, base, bnb, fantom, polygon, avalanche]
|
- infrastructure
|
||||||
description: "next-gen custodian secure bridge"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
- arbitrum
|
||||||
|
- optimism
|
||||||
|
- base
|
||||||
|
- bnb
|
||||||
|
- fantom
|
||||||
|
- polygon
|
||||||
|
- avalanche
|
||||||
|
description: next-gen custodian secure bridge
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: DcentraLab
|
- name: DcentraLab
|
||||||
link: https://x.com/DcentraLab
|
link: https://x.com/DcentraLab
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.chainport.io/private-bridge
|
web: https://www.chainport.io/private-bridge
|
||||||
github: https://github.com/chainport
|
github: https://github.com/chainport
|
||||||
|
@ -17,20 +24,18 @@ links:
|
||||||
blog: https://medium.com/chainport
|
blog: https://medium.com/chainport
|
||||||
twitter: https://x.com/chain_port
|
twitter: https://x.com/chain_port
|
||||||
telegram: https://t.me/chainport_news
|
telegram: https://t.me/chainport_news
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0x104f3152d8ebfc3f679392977356962ff36566ac
|
token_link: https://etherscan.io/token/0x104f3152d8ebfc3f679392977356962ff36566ac
|
||||||
tokens:
|
tokens:
|
||||||
- name: PORTX Token
|
- name: PORTX Token
|
||||||
symbol: $PORTX
|
symbol: $PORTX
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac"
|
contract_address: '0x104f3152d8ebfc3f679392977356962ff36566ac'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- bridge
|
- bridge
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
id: chainback
|
id: chainback
|
||||||
name: Chainback
|
name: Chainback
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum, solana, bsc, polygon]
|
- applications
|
||||||
description: "Ultimate Cloud Computing & File Storage"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
- solana
|
||||||
|
- bsc
|
||||||
|
- polygon
|
||||||
|
description: Ultimate Cloud Computing & File Storage
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://chainback.org/
|
web: https://chainback.org/
|
||||||
docs: https://chainback.gitbook.io/chainback-whitepaper
|
docs: https://chainback.gitbook.io/chainback-whitepaper
|
||||||
|
@ -15,38 +18,31 @@ links:
|
||||||
blog: https://medium.com/@chainback.archive
|
blog: https://medium.com/@chainback.archive
|
||||||
twitter: https://x.com/ChainbackWeb3
|
twitter: https://x.com/ChainbackWeb3
|
||||||
telegram: https://t.me/chainback_archive
|
telegram: https://t.me/chainback_archive
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: ARCHIVE Token
|
- name: ARCHIVE Token
|
||||||
symbol: $ARCHIVE
|
symbol: $ARCHIVE
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0xC7f950271d118A5bdF250dFfc39128DCCED8472C"
|
contract_address: '0xC7f950271d118A5bdF250dFfc39128DCCED8472C'
|
||||||
token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C
|
token_link: https://etherscan.io/token/0xC7f950271d118A5bdF250dFfc39128DCCED8472C
|
||||||
|
|
||||||
funding:
|
funding:
|
||||||
name: Summus Capital
|
name: Summus Capital
|
||||||
link: https://summus.capital/
|
link: https://summus.capital/
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: false
|
opensource: false
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://chainback.gitbook.io/chainback-whitepaper/company-policy/privacy-policy
|
link: https://chainback.gitbook.io/chainback-whitepaper/company-policy/privacy-policy
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- storage
|
- storage
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,18 +1,21 @@
|
||||||
id: cloak-ai
|
id: cloak-ai
|
||||||
name: Cloak Ai
|
name: Cloak Ai
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "The purpose-built Web3 GenAI engine for the privacy conscious individual or business"
|
- applications
|
||||||
|
description: The purpose-built Web3 GenAI engine for the privacy conscious individual
|
||||||
|
or business
|
||||||
links:
|
links:
|
||||||
web: https://www.cloakai.xyz/
|
web: https://www.cloakai.xyz/
|
||||||
twitter: https://x.com/Cloak_xyz
|
twitter: https://x.com/Cloak_xyz
|
||||||
telegram: https://t.me/cloakai
|
telegram: https://t.me/cloakai
|
||||||
have_token: true
|
have_token: false
|
||||||
token_link: https://etherscan.io/token/0x13f7b4581df403542286563c2f762077b2a368da
|
token_link: https://etherscan.io/token/0x13f7b4581df403542286563c2f762077b2a368da
|
||||||
tokens:
|
tokens:
|
||||||
- name: Cloak
|
- name: Cloak
|
||||||
symbol: CLOAK
|
symbol: CLOAK
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da"
|
contract_address: '0x13f7B4581dF403542286563C2F762077B2a368Da'
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
id: codex
|
id: codex
|
||||||
name: Codex
|
name: Codex
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
ecosystem:
|
ecosystem:
|
||||||
- ethereum
|
- ethereum
|
||||||
description: "Codex is a durable, decentralised data storage protocol, created so the world community can preserve its most important knowledge without risk of censorship."
|
description: Codex is a durable, decentralised data storage protocol, created so the
|
||||||
|
world community can preserve its most important knowledge without risk of censorship.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://codex.storage
|
web: https://codex.storage
|
||||||
github: https://github.com/codex-storage
|
github: https://github.com/codex-storage
|
||||||
|
@ -17,16 +16,15 @@ links:
|
||||||
blog: https://blog.codex.storage
|
blog: https://blog.codex.storage
|
||||||
twitter: https://x.com/codex_storage
|
twitter: https://x.com/codex_storage
|
||||||
discord: https://discord.com/invite/codex-storage
|
discord: https://discord.com/invite/codex-storage
|
||||||
farcaster: "https://farcaster/@codexstorage"
|
farcaster: https://farcaster/@codexstorage
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Codex Devnet
|
version: Codex Devnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- storage
|
- storage
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
id: coti
|
id: coti
|
||||||
name: Coti
|
name: Coti
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "EVM L2 solving blockchain privacy with Garbled Circuits"
|
- infrastructure
|
||||||
|
description: EVM L2 solving blockchain privacy with Garbled Circuits
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Joshua Maddox
|
- name: Joshua Maddox
|
||||||
role: CEPO
|
role: CEPO
|
||||||
link: https://x.com/JoshuaBMaddox
|
link: https://x.com/JoshuaBMaddox
|
||||||
- name: Shaf Bar-Geffen
|
- name: Shaf Bar-Geffen
|
||||||
role: CEO
|
role: CEO
|
||||||
link: https://x.com/shahafbg
|
link: https://x.com/shahafbg
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://coti.io/
|
web: https://coti.io/
|
||||||
github: https://github.com/coti-io
|
github: https://github.com/coti-io
|
||||||
|
@ -22,20 +21,18 @@ links:
|
||||||
twitter: https://x.com/COTInetwork
|
twitter: https://x.com/COTInetwork
|
||||||
discord: https://discord.com/invite/wfAQfbc3Df
|
discord: https://discord.com/invite/wfAQfbc3Df
|
||||||
telegram: https://t.me/COTInetwork
|
telegram: https://t.me/COTInetwork
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Testnet
|
version: Testnet
|
||||||
testnet: true
|
testnet: true
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0xddb3422497e61e13543bea06989c0789117555c5
|
token_link: https://etherscan.io/token/0xddb3422497e61e13543bea06989c0789117555c5
|
||||||
tokens:
|
tokens:
|
||||||
- name: CotiToken
|
- name: CotiToken
|
||||||
symbol: $COTI
|
symbol: $COTI
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5"
|
contract_address: '0xDDB3422497E61e13543BeA06989C0789117555c5'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- eth-layer-2
|
- eth-layer-2
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
id: cursive
|
id: cursive
|
||||||
name: "Cursive"
|
name: Cursive
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "A cryptography lab focused on human-first applications of signed data."
|
- applications
|
||||||
|
description: A cryptography lab focused on human-first applications of signed data.
|
||||||
links:
|
links:
|
||||||
web: https://www.cursive.team/
|
web: https://www.cursive.team/
|
||||||
github: https://github.com/cursive-team
|
github: https://github.com/cursive-team
|
||||||
blog: https://www.cursive.team/blog
|
blog: https://www.cursive.team/blog
|
||||||
twitter: https://x.com/cursive_team
|
twitter: https://x.com/cursive_team
|
||||||
telegram: https://t.me/+z5REVOBXp_hmNDIx
|
telegram: https://t.me/+z5REVOBXp_hmNDIx
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,41 +1,39 @@
|
||||||
id: dechat
|
id: dechat
|
||||||
name: DeChat
|
name: DeChat
|
||||||
categories: [social-and-communications]
|
categories:
|
||||||
description: "open and secure web3 communications protocol that powers decentralized user interactions"
|
- social-and-communications
|
||||||
|
description: open and secure web3 communications protocol that powers decentralized
|
||||||
|
user interactions
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: JAMES I. RADFORD
|
- name: JAMES I. RADFORD
|
||||||
role: CEO
|
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
|
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
|
- name: ANDY DEMETRIOU
|
||||||
role: CMO
|
role: CMO
|
||||||
link: https://www.linkedin.com/in/andy-demetriou-a57778177/
|
link: https://www.linkedin.com/in/andy-demetriou-a57778177/
|
||||||
- name: DANIEL DRESCHER
|
- name: DANIEL DRESCHER
|
||||||
role: COO
|
role: COO
|
||||||
link: https://www.linkedin.com/in/danieldrescher/
|
link: https://www.linkedin.com/in/danieldrescher/
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.dechat.io/home
|
web: https://www.dechat.io/home
|
||||||
docs: https://dechat.gitbook.io/dechat
|
docs: https://dechat.gitbook.io/dechat
|
||||||
twitter: https://x.com/dechat_io
|
twitter: https://x.com/dechat_io
|
||||||
discord: https://discord.com/invite/dechat
|
discord: https://discord.com/invite/dechat
|
||||||
telegram: https://t.me/dechat_community
|
telegram: https://t.me/dechat_community
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Testnet
|
version: Testnet
|
||||||
testnet: true
|
testnet: true
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://bscscan.com/token/0xd69ee2e508363fed57f89917d5ca03e715ee5519
|
token_link: https://bscscan.com/token/0xd69ee2e508363fed57f89917d5ca03e715ee5519
|
||||||
tokens:
|
tokens:
|
||||||
- name: DeChat Token
|
- name: DeChat Token
|
||||||
symbol: $DeChat
|
symbol: $DeChat
|
||||||
network: BSC
|
network: BSC
|
||||||
contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519"
|
contract_address: '0xD69ee2e508363FEd57f89917D5ca03e715ee5519'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
id: deguard
|
id: deguard
|
||||||
name: DeGuard
|
name: DeGuard
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Provide utimate privacy based on web3"
|
- applications
|
||||||
|
description: Provide utimate privacy based on web3
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Niktim
|
- name: Niktim
|
||||||
link: https://x.com/Crypto_Niktim
|
link: https://x.com/Crypto_Niktim
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://deguard.io/
|
web: https://deguard.io/
|
||||||
github: https://github.com/deguardvpn
|
github: https://github.com/deguardvpn
|
||||||
|
@ -16,14 +15,12 @@ links:
|
||||||
twitter: https://x.com/DeGuardVPN
|
twitter: https://x.com/DeGuardVPN
|
||||||
discord: https://discord.com/invite/agv3a9wGUn
|
discord: https://discord.com/invite/agv3a9wGUn
|
||||||
telegram: https://t.me/DeGuardVPN
|
telegram: https://t.me/DeGuardVPN
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- vpn
|
- vpn
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
id: denet
|
id: denet
|
||||||
name: DeNet
|
name: DeNet
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [polygon]
|
- applications
|
||||||
description: "Decentralized Storage Protocol for Web3 services "
|
ecosystem:
|
||||||
|
- polygon
|
||||||
|
description: 'Decentralized Storage Protocol for Web3 services '
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Denis Shelestov
|
- name: Denis Shelestov
|
||||||
link: https://x.com/djdeniro1
|
link: https://x.com/djdeniro1
|
||||||
- name: Daniil Maslov
|
- name: Daniil Maslov
|
||||||
link: https://x.com/tttcrp
|
link: https://x.com/tttcrp
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://denet.pro/
|
web: https://denet.pro/
|
||||||
github: https://github.com/denetpro
|
github: https://github.com/denetpro
|
||||||
|
@ -20,32 +20,26 @@ links:
|
||||||
twitter: https://x.com/DeNetPro
|
twitter: https://x.com/DeNetPro
|
||||||
telegram: https://t.me/denetnews
|
telegram: https://t.me/denetnews
|
||||||
discord: https://discord.com/invite/PSnjPCq4x5
|
discord: https://discord.com/invite/PSnjPCq4x5
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: DeNet File Token
|
- name: DeNet File Token
|
||||||
symbol: $DE
|
symbol: $DE
|
||||||
network: Polygon
|
network: Polygon
|
||||||
contract_address: "0x081ec4c0e30159c8259bad8f4887f83010a681dc"
|
contract_address: '0x081ec4c0e30159c8259bad8f4887f83010a681dc'
|
||||||
token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc
|
token_link: https://polygonscan.com/token/0x081ec4c0e30159c8259bad8f4887f83010a681dc
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: false
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
|
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- storage
|
- storage
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,17 +1,19 @@
|
||||||
id: ergo-platform
|
id: ergo-platform
|
||||||
name: Ergo Platform
|
name: Ergo Platform
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
ecosystem: [ergo, btc]
|
- infrastructure
|
||||||
description: "Ergo is the next-gen smart contract platform! Bringing economic freedom to ordinary people through decentralized financial tools"
|
ecosystem:
|
||||||
|
- ergo
|
||||||
|
- btc
|
||||||
|
description: Ergo is the next-gen smart contract platform! Bringing economic freedom
|
||||||
|
to ordinary people through decentralized financial tools
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Alex Chepurnoy
|
- name: Alex Chepurnoy
|
||||||
link: https://x.com/chepurnoy
|
link: https://x.com/chepurnoy
|
||||||
- name: qx
|
- name: qx
|
||||||
link: https://x.com/qx_ergo
|
link: https://x.com/qx_ergo
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://ergoplatform.org/en/
|
web: https://ergoplatform.org/en/
|
||||||
github: https://github.com/ergoplatform
|
github: https://github.com/ergoplatform
|
||||||
|
@ -22,34 +24,29 @@ links:
|
||||||
twitter: https://x.com/ergo_platform
|
twitter: https://x.com/ergo_platform
|
||||||
telegram: https://t.me/Ergo_Chats
|
telegram: https://t.me/Ergo_Chats
|
||||||
discord: https://discord.com/invite/ergo-platform-668903786361651200
|
discord: https://discord.com/invite/ergo-platform-668903786361651200
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: Ergo Token
|
- name: Ergo Token
|
||||||
symbol: $ERG
|
symbol: $ERG
|
||||||
network: Ergochain
|
network: Ergochain
|
||||||
token_link: https://www.coingecko.com/en/coins/ergo
|
token_link: https://www.coingecko.com/en/coins/ergo
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
|
p2p: false
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://ergoplatform.org/en/privacy-policy/
|
link: https://ergoplatform.org/en/privacy-policy/
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
audits:
|
audits:
|
||||||
- name: Jean-Philipee Aumasson
|
- name: Jean-Philipee Aumasson
|
||||||
link: https://www.aumasson.jp/
|
link: https://www.aumasson.jp/
|
||||||
time: 2019-12
|
time: 2019-12
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: exabits
|
id: exabits
|
||||||
name: Exabits
|
name: Exabits
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Simplified Access to the Currency of the Future "
|
- applications
|
||||||
|
description: 'Simplified Access to the Currency of the Future '
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -13,5 +14,6 @@ links:
|
||||||
telegram: https://t.me/+D0CulDl9udZjMWIx
|
telegram: https://t.me/+D0CulDl9udZjMWIx
|
||||||
have_token: false
|
have_token: false
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
id: fairmath
|
id: fairmath
|
||||||
name: "FairMath"
|
name: FairMath
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption (FHE)"
|
- applications
|
||||||
|
description: Building Privacy Preserving Future Rooted in Fully Homomorphic Encryption
|
||||||
|
(FHE)
|
||||||
links:
|
links:
|
||||||
web: https://fairmath.xyz/
|
web: https://fairmath.xyz/
|
||||||
github: https://github.com/fairmath
|
github: https://github.com/fairmath
|
||||||
twitter: https://x.com/FairMath
|
twitter: https://x.com/FairMath
|
||||||
discord: https://discord.com/invite/NfhXwyr9M5
|
discord: https://discord.com/invite/NfhXwyr9M5
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: fhenix
|
id: fhenix
|
||||||
name: "Fhenix"
|
name: Fhenix
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality."
|
- applications
|
||||||
|
description: Fhenix is an Ethereum L2 and Coprocessor that uses FHE for onchain confidentiality.
|
||||||
links:
|
links:
|
||||||
web: https://www.fhenix.io/
|
web: https://www.fhenix.io/
|
||||||
github: https://github.com/FhenixProtocol
|
github: https://github.com/FhenixProtocol
|
||||||
|
@ -10,3 +11,5 @@ links:
|
||||||
blog: https://medium.com/@Fhenix
|
blog: https://medium.com/@Fhenix
|
||||||
twitter: https://x.com/FhenixIO
|
twitter: https://x.com/FhenixIO
|
||||||
discord: https://discord.com/invite/FuVgxrvJMY
|
discord: https://discord.com/invite/FuVgxrvJMY
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,20 +1,22 @@
|
||||||
id: humanode
|
id: humanode
|
||||||
name: Humanode
|
name: Humanode
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [polkadot]
|
- applications
|
||||||
description: "1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for the web"
|
ecosystem:
|
||||||
|
- polkadot
|
||||||
|
description: 1 Human = 1 Node = 1 Vote .Cryptobiometric Sybil-resistant layer for
|
||||||
|
the web
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Dato Kavazi
|
- name: Dato Kavazi
|
||||||
link: https://x.com/DatoKavazi
|
link: https://x.com/DatoKavazi
|
||||||
- name: Sasha Shilina
|
- name: Sasha Shilina
|
||||||
link: https://x.com/sshshln
|
link: https://x.com/sshshln
|
||||||
- name: Andrei Kraciun
|
- name: Andrei Kraciun
|
||||||
link: https://x.com/andreikraciun
|
link: https://x.com/andreikraciun
|
||||||
- name: Victor
|
- name: Victor
|
||||||
link: https://x.com/tech_mingler
|
link: https://x.com/tech_mingler
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://humanode.io/
|
web: https://humanode.io/
|
||||||
github: https://github.com/humanode-network
|
github: https://github.com/humanode-network
|
||||||
|
@ -25,33 +27,27 @@ links:
|
||||||
twitter: https://x.com/humanode_io
|
twitter: https://x.com/humanode_io
|
||||||
telegram: https://t.me/humanode
|
telegram: https://t.me/humanode
|
||||||
discord: https://discord.com/invite/8my5gbgptx
|
discord: https://discord.com/invite/8my5gbgptx
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: Humanode Token
|
- name: Humanode Token
|
||||||
symbol: $HMND
|
symbol: $HMND
|
||||||
network: Humanodechain
|
network: Humanodechain
|
||||||
token_link: https://coinmarketcap.com/currencies/humanode/
|
token_link: https://coinmarketcap.com/currencies/humanode/
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: false
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
audits:
|
audits:
|
||||||
- name: Certik
|
- name: Certik
|
||||||
link: https://skynet.certik.com/projects/humanode
|
link: https://skynet.certik.com/projects/humanode
|
||||||
time: "2023-01-30"
|
time: '2023-01-30'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,46 +1,43 @@
|
||||||
id: ivpn
|
id: ivpn
|
||||||
name: IVPN
|
name: IVPN
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Audited, privacy focused VPN service."
|
- applications
|
||||||
|
description: Audited, privacy focused VPN service.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Nicholas Pestell
|
- name: Nicholas Pestell
|
||||||
role: CEO
|
role: CEO
|
||||||
link: https://github.com/cipheromega
|
link: https://github.com/cipheromega
|
||||||
- name: Edward De
|
- name: Edward De
|
||||||
role: Technical Support Lead
|
role: Technical Support Lead
|
||||||
link: https://www.linkedin.com/in/edward-de-91793b163/
|
link: https://www.linkedin.com/in/edward-de-91793b163/
|
||||||
- name: Iain Douglas
|
- name: Iain Douglas
|
||||||
link: https://github.com/Iain-ivpn
|
link: https://github.com/Iain-ivpn
|
||||||
- name: Gorka Pernas
|
- name: Gorka Pernas
|
||||||
role: Senior QA Engineer
|
role: Senior QA Engineer
|
||||||
link: https://github.com/gorkapernas
|
link: https://github.com/gorkapernas
|
||||||
- name: Natanael Rodriguez
|
- name: Natanael Rodriguez
|
||||||
link: https://github.com/nathanrod
|
link: https://github.com/nathanrod
|
||||||
- name: Juraj Hilje
|
- name: Juraj Hilje
|
||||||
role: Dev
|
role: Dev
|
||||||
link: https://github.com/jurajhilje
|
link: https://github.com/jurajhilje
|
||||||
- name: Alexandr Stelnykovych
|
- name: Alexandr Stelnykovych
|
||||||
role: Dev
|
role: Dev
|
||||||
link: https://github.com/stenya
|
link: https://github.com/stenya
|
||||||
- name: Jordan Sullivan
|
- name: Jordan Sullivan
|
||||||
link: https://github.com/jordan-ivpn
|
link: https://github.com/jordan-ivpn
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.ivpn.net/en/
|
web: https://www.ivpn.net/en/
|
||||||
github: https://github.com/ivpn
|
github: https://github.com/ivpn
|
||||||
blog: https://www.ivpn.net/en/blog/
|
blog: https://www.ivpn.net/en/blog/
|
||||||
twitter: https://x.com/ivpnnet
|
twitter: https://x.com/ivpnnet
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- vpn
|
- vpn
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
id: inco
|
id: inco
|
||||||
name: "Inco"
|
name: Inco
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Universal confidentiality layer for Web3, enabling the development of next-generation dApps, providing confidentiality to existing blockchains "
|
- infrastructure
|
||||||
|
description: 'Universal confidentiality layer for Web3, enabling the development of
|
||||||
|
next-generation dApps, providing confidentiality to existing blockchains '
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
links:
|
links:
|
||||||
|
@ -13,3 +15,5 @@ links:
|
||||||
twitter: https://x.com/inconetwork
|
twitter: https://x.com/inconetwork
|
||||||
discord: https://discord.com/invite/fnKZp2qHPQ
|
discord: https://discord.com/invite/fnKZp2qHPQ
|
||||||
telgram: https://t.me/inconetwork
|
telgram: https://t.me/inconetwork
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
id: intmax
|
id: intmax
|
||||||
name: Intmax
|
name: Intmax
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
ecosystem: [ethereum]
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
project_type: Layer2 zk-rollup
|
project_type: Layer2 zk-rollup
|
||||||
description: "A zkRollup with a stateless architecture. Achieving hyper-scaling and privacy at the same time."
|
description: A zkRollup with a stateless architecture. Achieving hyper-scaling and
|
||||||
|
privacy at the same time.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Leona Hioki
|
- name: Leona Hioki
|
||||||
role: Co-founder
|
role: Co-founder
|
||||||
link: https://x.com/HiokiLeona
|
link: https://x.com/HiokiLeona
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.intmax.io/
|
web: https://www.intmax.io/
|
||||||
github: https://github.com/InternetMaximalism
|
github: https://github.com/InternetMaximalism
|
||||||
|
@ -21,14 +21,12 @@ links:
|
||||||
twitter: https://x.com/intmaxIO
|
twitter: https://x.com/intmaxIO
|
||||||
discord: https://discord.com/invite/N7kYGUPDEE
|
discord: https://discord.com/invite/N7kYGUPDEE
|
||||||
telegram: https://t.me/QM1EbIzxACsxMDk1
|
telegram: https://t.me/QM1EbIzxACsxMDk1
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: testnet2
|
version: testnet2
|
||||||
testnet: true
|
testnet: true
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- eth-layer-2
|
- eth-layer-2
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
id: kinto
|
id: kinto
|
||||||
name: Kinto
|
name: Kinto
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "The safety-first L2 for Finance"
|
- infrastructure
|
||||||
|
description: The safety-first L2 for Finance
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Ramon Recuero
|
- name: Ramon Recuero
|
||||||
role: CEO
|
role: CEO
|
||||||
link: https://x.com/ramonrecuero
|
link: https://x.com/ramonrecuero
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.kinto.xyz/
|
web: https://www.kinto.xyz/
|
||||||
github: https://github.com/kintoxyz
|
github: https://github.com/kintoxyz
|
||||||
|
@ -19,20 +18,18 @@ links:
|
||||||
blog: https://mirror.xyz/kintoxyz.eth
|
blog: https://mirror.xyz/kintoxyz.eth
|
||||||
twitter: https://x.com/KintoXYZ
|
twitter: https://x.com/KintoXYZ
|
||||||
discord: https://discord.com/invite/kinto?a=1
|
discord: https://discord.com/invite/kinto?a=1
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://kintoscan.io/token/0x010700808D59d2bb92257fCafACfe8e5bFF7aB87?chainid=7887
|
token_link: https://kintoscan.io/token/0x010700808D59d2bb92257fCafACfe8e5bFF7aB87?chainid=7887
|
||||||
tokens:
|
tokens:
|
||||||
- name: KINTO
|
- name: KINTO
|
||||||
symbol: $KINTO
|
symbol: $KINTO
|
||||||
network: Kinto
|
network: Kinto
|
||||||
contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87"
|
contract_address: '0x010700808D59d2bb92257fCafACfe8e5bFF7aB87'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- eth-layer-2
|
- eth-layer-2
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,35 +1,35 @@
|
||||||
id: mailchain
|
id: mailchain
|
||||||
name: Mailchain
|
name: Mailchain
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum]
|
- applications
|
||||||
description: "Web3 communication layer & web3 email for everyone"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
description: Web3 communication layer & web3 email for everyone
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Tim Boeckmann
|
- name: Tim Boeckmann
|
||||||
link: https://x.com/t_boeckmann
|
link: https://x.com/t_boeckmann
|
||||||
- name: Rob De Feo
|
- name: Rob De Feo
|
||||||
link: https://x.com/robdefeo
|
link: https://x.com/robdefeo
|
||||||
- name: Misha Deville
|
- name: Misha Deville
|
||||||
link: https://x.com/MishaDV_
|
link: https://x.com/MishaDV_
|
||||||
- name: Elizabeth Stuart-Morris
|
- name: Elizabeth Stuart-Morris
|
||||||
link: https://x.com/esm_iam
|
link: https://x.com/esm_iam
|
||||||
- name: Hannah Anderson
|
- name: Hannah Anderson
|
||||||
link: https://www.linkedin.com/in/hannahsanderson/
|
link: https://www.linkedin.com/in/hannahsanderson/
|
||||||
- name: Alexandru Velicu
|
- name: Alexandru Velicu
|
||||||
link: https://www.linkedin.com/in/velicu-a-73794348/
|
link: https://www.linkedin.com/in/velicu-a-73794348/
|
||||||
- name: Zubeyir O.
|
- name: Zubeyir O.
|
||||||
link: https://github.com/zubeyiro
|
link: https://github.com/zubeyiro
|
||||||
- name: Antonio Ivanovski
|
- name: Antonio Ivanovski
|
||||||
link: https://github.com/toteto
|
link: https://github.com/toteto
|
||||||
- name: Nathan Sorochan
|
- name: Nathan Sorochan
|
||||||
link: https://x.com/nathansorochan
|
link: https://x.com/nathansorochan
|
||||||
- name: Tom Sargent
|
- name: Tom Sargent
|
||||||
link: https://x.com/expensive_jpeg
|
link: https://x.com/expensive_jpeg
|
||||||
- name: Becky Prunty
|
- name: Becky Prunty
|
||||||
link: https://www.linkedin.com/in/becky-prunty-b93406a9/
|
link: https://www.linkedin.com/in/becky-prunty-b93406a9/
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://mailchain.com/
|
web: https://mailchain.com/
|
||||||
github: https://github.com/mailchain
|
github: https://github.com/mailchain
|
||||||
|
@ -39,24 +39,20 @@ links:
|
||||||
twitter: https://x.com/Mailchain_xyz
|
twitter: https://x.com/Mailchain_xyz
|
||||||
lens: https://hey.xyz/u/mailchain
|
lens: https://hey.xyz/u/mailchain
|
||||||
farcaster: https://warpcast.com/mailchain
|
farcaster: https://warpcast.com/mailchain
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://mailchain.com/terms
|
link: https://mailchain.com/terms
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
id: media-network
|
id: media-network
|
||||||
name: Media Network
|
name: Media Network
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
ecosystem: [ethereum, solana, base, bnb, optimist]
|
- infrastructure
|
||||||
description: "The Web3 replacement for AWS and Google Cloud"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
- solana
|
||||||
|
- base
|
||||||
|
- bnb
|
||||||
|
- optimist
|
||||||
|
description: The Web3 replacement for AWS and Google Cloud
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.media.network/
|
web: https://www.media.network/
|
||||||
github: https://github.com/mediafoundation
|
github: https://github.com/mediafoundation
|
||||||
|
@ -15,29 +19,24 @@ links:
|
||||||
twitter: https://x.com/Media_FDN
|
twitter: https://x.com/Media_FDN
|
||||||
telegram: https://t.me/Media_FDN
|
telegram: https://t.me/Media_FDN
|
||||||
discord: https://discord.com/invite/nyCS7ePWzf
|
discord: https://discord.com/invite/nyCS7ePWzf
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: Media Token
|
- name: Media Token
|
||||||
symbol: $MEDIA
|
symbol: $MEDIA
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1"
|
contract_address: '0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1'
|
||||||
token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1
|
token_link: https://etherscan.io/token/0xC7F3ec6e0259ce1E2BEAbAc42e2f0478CA8D74e1
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- computing
|
- computing
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
id: nata-network
|
id: nata-network
|
||||||
name: Nata network
|
name: Nata network
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Nata Network is your portal to private cross-chain transactions."
|
- infrastructure
|
||||||
|
description: Nata Network is your portal to private cross-chain transactions.
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://app.natarouter.com/
|
web: https://app.natarouter.com/
|
||||||
github: https://github.com/shichiro-nakahara
|
github: https://github.com/shichiro-nakahara
|
||||||
|
@ -14,14 +13,12 @@ links:
|
||||||
blog: https://mirror.xyz/natanetwork.eth
|
blog: https://mirror.xyz/natanetwork.eth
|
||||||
twitter: https://x.com/nata_network_io
|
twitter: https://x.com/nata_network_io
|
||||||
discord: https://discord.com/invite/m9Ma7PbFwb
|
discord: https://discord.com/invite/m9Ma7PbFwb
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- bridge
|
- bridge
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
id: nuco-cloud
|
id: nuco-cloud
|
||||||
name: Nuco-cloud
|
name: Nuco-cloud
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Enabling tomorrow’s tech like Ai with scalable, sustainable computing power and up to a 90% cost reduction."
|
- applications
|
||||||
|
description: "Enabling tomorrow\u2019s tech like Ai with scalable, sustainable computing\
|
||||||
|
\ power and up to a 90% cost reduction."
|
||||||
links:
|
links:
|
||||||
web: https://www.nuco.cloud/
|
web: https://www.nuco.cloud/
|
||||||
github: https://github.com/IronEagleCapital
|
github: https://github.com/IronEagleCapital
|
||||||
|
@ -11,13 +13,14 @@ links:
|
||||||
discord: https://discord.com/invite/5fSC5aEhpm
|
discord: https://discord.com/invite/5fSC5aEhpm
|
||||||
facebook: https://www.facebook.com/nuco.cloud.distributedcloudcomputing/
|
facebook: https://www.facebook.com/nuco.cloud.distributedcloudcomputing/
|
||||||
telegram: https://t.me/officialnucocloudgroup
|
telegram: https://t.me/officialnucocloudgroup
|
||||||
have_token: true
|
have_token: false
|
||||||
token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B
|
token_link: https://etherscan.io/token/0xE0C8b298db4cfFE05d1bEA0bb1BA414522B33C1B
|
||||||
tokens:
|
tokens:
|
||||||
- name: nuco.cloud
|
- name: nuco.cloud
|
||||||
symbol: NCDT
|
symbol: NCDT
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
|
contract_address: '0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b'
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,20 +1,22 @@
|
||||||
id: opsec
|
id: opsec
|
||||||
name: OpSec
|
name: OpSec
|
||||||
categories: [applications]
|
categories:
|
||||||
description: " AI-powered decentralized cloud security."
|
- applications
|
||||||
|
description: ' AI-powered decentralized cloud security.'
|
||||||
links:
|
links:
|
||||||
web: https://opsec.computer/
|
web: https://opsec.computer/
|
||||||
docs: https://docs.opsec.computer/
|
docs: https://docs.opsec.computer/
|
||||||
twitter: https://x.com/OpSecCloud
|
twitter: https://x.com/OpSecCloud
|
||||||
discord: https://discord.com/invite/opseccloud
|
discord: https://discord.com/invite/opseccloud
|
||||||
telegram: https://t.me/OpSecCloud
|
telegram: https://t.me/OpSecCloud
|
||||||
have_token: true
|
have_token: false
|
||||||
token_link: https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98
|
token_link: https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98
|
||||||
tokens:
|
tokens:
|
||||||
- name: Opsec
|
- name: Opsec
|
||||||
symbol: OPSEC
|
symbol: OPSEC
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98"
|
contract_address: '0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98'
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: origin-trail
|
id: origin-trail
|
||||||
name: OriginTrail
|
name: OriginTrail
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Powering Verifiable Internet for Artificial Intelligence "
|
- applications
|
||||||
|
description: 'Powering Verifiable Internet for Artificial Intelligence '
|
||||||
links:
|
links:
|
||||||
web: https://origintrail.io/
|
web: https://origintrail.io/
|
||||||
github: https://github.com/OriginTrail
|
github: https://github.com/OriginTrail
|
||||||
|
@ -11,5 +12,7 @@ links:
|
||||||
twitter: https://x.com/origin_trail
|
twitter: https://x.com/origin_trail
|
||||||
discord: https://discord.com/invite/QctFuPCMew
|
discord: https://discord.com/invite/QctFuPCMew
|
||||||
telegram: https://t.me/origintrail
|
telegram: https://t.me/origintrail
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,21 +1,21 @@
|
||||||
id: oxo
|
id: oxo
|
||||||
name: OxO
|
name: OxO
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum]
|
- applications
|
||||||
description: "All-in-One Privacy Exchange"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
description: All-in-One Privacy Exchange
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Sir Enigma
|
- name: Sir Enigma
|
||||||
link: https://x.com/abdel_hhh
|
link: https://x.com/abdel_hhh
|
||||||
- name: Smokey
|
- name: Smokey
|
||||||
link: https://x.com/Smokey_0x0
|
link: https://x.com/Smokey_0x0
|
||||||
- name: Jay
|
- name: Jay
|
||||||
link: https://x.com/xcyb0rg
|
link: https://x.com/xcyb0rg
|
||||||
- name: Andy
|
- name: Andy
|
||||||
link: https://t.me/Andy_0x0
|
link: https://t.me/Andy_0x0
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://0x0.ai/
|
web: https://0x0.ai/
|
||||||
github: https://github.com/0x0exchange
|
github: https://github.com/0x0exchange
|
||||||
|
@ -24,29 +24,25 @@ links:
|
||||||
twitter: https://x.com/0x0exchange
|
twitter: https://x.com/0x0exchange
|
||||||
telegram: https://t.me/Portal0x0
|
telegram: https://t.me/Portal0x0
|
||||||
discord: https://discord.com/invite/0x0exchange
|
discord: https://discord.com/invite/0x0exchange
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: OxO Token
|
- name: OxO Token
|
||||||
symbol: $OxO
|
symbol: $OxO
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5"
|
contract_address: '0x5a3e6A77ba2f983eC0d371ea3B475F8Bc0811AD5'
|
||||||
token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5
|
token_link: https://etherscan.io/token/0x5a3e6a77ba2f983ec0d371ea3b475f8bc0811ad5
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: false
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,31 +1,31 @@
|
||||||
id: presearch
|
id: presearch
|
||||||
name: Preserch
|
name: Preserch
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum]
|
- applications
|
||||||
description: "The Decentralized Search Engine with more than 4 million members"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
description: The Decentralized Search Engine with more than 4 million members
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Tim Enneking
|
- name: Tim Enneking
|
||||||
link: https://www.linkedin.com/in/timothy-enneking-a725905/
|
link: https://www.linkedin.com/in/timothy-enneking-a725905/
|
||||||
- name: Mark Torelli
|
- name: Mark Torelli
|
||||||
link: https://www.linkedin.com/in/mark-torelli
|
link: https://www.linkedin.com/in/mark-torelli
|
||||||
- name: Jeff Hunt
|
- name: Jeff Hunt
|
||||||
link: https://www.linkedin.com/in/jeff-hunt-b302631b
|
link: https://www.linkedin.com/in/jeff-hunt-b302631b
|
||||||
- name: Ed Reese
|
- name: Ed Reese
|
||||||
link: https://www.linkedin.com/in/edreese/
|
link: https://www.linkedin.com/in/edreese/
|
||||||
- name: Brenden Tacon
|
- name: Brenden Tacon
|
||||||
link: https://www.linkedin.com/in/brenden-tacon-81abb211/
|
link: https://www.linkedin.com/in/brenden-tacon-81abb211/
|
||||||
- name: Todd Enneking
|
- name: Todd Enneking
|
||||||
link: https://www.linkedin.com/in/toddenneking/
|
link: https://www.linkedin.com/in/toddenneking/
|
||||||
- name: Colin Pape
|
- name: Colin Pape
|
||||||
link: https://www.linkedin.com/in/colinpape
|
link: https://www.linkedin.com/in/colinpape
|
||||||
- name: Trey Grainger
|
- name: Trey Grainger
|
||||||
link: https://www.linkedin.com/in/treygrainger/
|
link: https://www.linkedin.com/in/treygrainger/
|
||||||
- name: Luís Dalmolin
|
- name: "Lu\xEDs Dalmolin"
|
||||||
link: https://www.linkedin.com/in/luisdalmolin/
|
link: https://www.linkedin.com/in/luisdalmolin/
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://presearch.com/
|
web: https://presearch.com/
|
||||||
github: https://github.com/presearchofficial
|
github: https://github.com/presearchofficial
|
||||||
|
@ -36,39 +36,32 @@ links:
|
||||||
twitter: https://x.com/presearchnews
|
twitter: https://x.com/presearchnews
|
||||||
telegram: https://t.me/presearch
|
telegram: https://t.me/presearch
|
||||||
discord: https://discord.com/invite/KUpshRZz2n
|
discord: https://discord.com/invite/KUpshRZz2n
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: Pre Token
|
- name: Pre Token
|
||||||
symbol: $PRE
|
symbol: $PRE
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0xEC213F83defB583af3A000B1c0ada660b1902A0F"
|
contract_address: '0xEC213F83defB583af3A000B1c0ada660b1902A0F'
|
||||||
token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F
|
token_link: https://etherscan.io/token/0xEC213F83defB583af3A000B1c0ada660b1902A0F
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://presearch.com/privacy
|
link: https://presearch.com/privacy
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
audits:
|
audits:
|
||||||
- name: Mantisec Lab
|
- name: Mantisec Lab
|
||||||
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
|
link: https://github.com/PresearchOfficial/audit/blob/main/Final%20Presearch%20SCA.Code%20Audit.pdf
|
||||||
time: 2023-10
|
time: 2023-10
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- browser
|
- browser
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: privasea
|
id: privasea
|
||||||
name: "Privasea"
|
name: Privasea
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "An AI + DePIN Network enabled through FHEML"
|
- infrastructure
|
||||||
|
description: An AI + DePIN Network enabled through FHEML
|
||||||
links:
|
links:
|
||||||
web: https://www.privasea.ai/
|
web: https://www.privasea.ai/
|
||||||
github: https://github.com/Privasea
|
github: https://github.com/Privasea
|
||||||
|
@ -11,3 +12,5 @@ links:
|
||||||
twitter: https://x.com/Privasea_ai
|
twitter: https://x.com/Privasea_ai
|
||||||
discord: https://discord.com/invite/yRtQGvWkvG
|
discord: https://discord.com/invite/yRtQGvWkvG
|
||||||
telegram: https://t.me/Privasea_ai
|
telegram: https://t.me/Privasea_ai
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,46 +1,42 @@
|
||||||
id: privy
|
id: privy
|
||||||
name: Privy
|
name: Privy
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [solana]
|
- applications
|
||||||
description: "Privy builds authentication, authorization and data control tooling so developers can deliver amazing products that keep users safe."
|
ecosystem:
|
||||||
|
- solana
|
||||||
|
description: Privy builds authentication, authorization and data control tooling so
|
||||||
|
developers can deliver amazing products that keep users safe.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Colfax
|
- name: Colfax
|
||||||
link: https://x.com/colfaxselby
|
link: https://x.com/colfaxselby
|
||||||
- name: Jainil Sutaria
|
- name: Jainil Sutaria
|
||||||
link: https://x.com/jainilsutaria1
|
link: https://x.com/jainilsutaria1
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.privy.io/
|
web: https://www.privy.io/
|
||||||
github: https://github.com/privy-io
|
github: https://github.com/privy-io
|
||||||
docs: https://docs.privy.io/
|
docs: https://docs.privy.io/
|
||||||
blog: https://www.privy.io/blog
|
blog: https://www.privy.io/blog
|
||||||
twitter: https://x.com/privy_io
|
twitter: https://x.com/privy_io
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://www.privy.io/privacy-policy
|
link: https://www.privy.io/privacy-policy
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
audits:
|
audits:
|
||||||
- name: Zellic
|
- name: Zellic
|
||||||
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
|
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
|
||||||
time: 2023-08
|
time: 2023-08
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- wallets
|
- wallets
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,33 +1,31 @@
|
||||||
id: raw-box
|
id: raw-box
|
||||||
name: RawBox
|
name: RawBox
|
||||||
categories: [hardware]
|
categories:
|
||||||
ecosystem: [nym]
|
- hardware
|
||||||
description: "Redefined privacy-enabled router."
|
ecosystem:
|
||||||
|
- nym
|
||||||
|
description: Redefined privacy-enabled router.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Oleksandr
|
- name: Oleksandr
|
||||||
link: https://x.com/oleksky
|
link: https://x.com/oleksky
|
||||||
- name: crptcpchk
|
- name: crptcpchk
|
||||||
link: https://x.com/the01100011
|
link: https://x.com/the01100011
|
||||||
- name: Yana Matrosova
|
- name: Yana Matrosova
|
||||||
link: https://x.com/yana_tnfl
|
link: https://x.com/yana_tnfl
|
||||||
- name: Beyond
|
- name: Beyond
|
||||||
link: https://x.com/Beyond_Karto
|
link: https://x.com/Beyond_Karto
|
||||||
|
|
||||||
links:
|
links:
|
||||||
github: https://github.com/Raw-Box/
|
github: https://github.com/Raw-Box/
|
||||||
twitter: https://x.com/rawbox_tech
|
twitter: https://x.com/rawbox_tech
|
||||||
telegram: https://t.me/+G4ixLEgYBXJkZWRi
|
telegram: https://t.me/+G4ixLEgYBXJkZWRi
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Testnet
|
version: Testnet
|
||||||
testnet: true
|
testnet: true
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- hardware
|
- hardware
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: rido
|
id: rido
|
||||||
name: Rido
|
name: Rido
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Web3 Personal Data Layer for AI "
|
- applications
|
||||||
|
description: 'Web3 Personal Data Layer for AI '
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -13,5 +14,6 @@ links:
|
||||||
telegram: https://t.me/+N6HLxnRL_WE5ZDVl
|
telegram: https://t.me/+N6HLxnRL_WE5ZDVl
|
||||||
have_token: false
|
have_token: false
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,30 +1,33 @@
|
||||||
id: ritual
|
id: ritual
|
||||||
name: Ritual
|
name: Ritual
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum, solana, polygon]
|
- applications
|
||||||
description: "We are building a way for any protocol, application, or smart contract to integrate AI models with a few lines of code."
|
ecosystem:
|
||||||
product_launch_day: "2023"
|
- ethereum
|
||||||
|
- solana
|
||||||
|
- polygon
|
||||||
|
description: We are building a way for any protocol, application, or smart contract
|
||||||
|
to integrate AI models with a few lines of code.
|
||||||
|
product_launch_day: '2023'
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Niraj Pant
|
- name: Niraj Pant
|
||||||
link: https://x.com/niraj
|
link: https://x.com/niraj
|
||||||
- name: Akilesh Potti
|
- name: Akilesh Potti
|
||||||
link: https://x.com/akileshpotti
|
link: https://x.com/akileshpotti
|
||||||
- name: Anish Agnihotri
|
- name: Anish Agnihotri
|
||||||
link: https://x.com/_anishagnihotri
|
link: https://x.com/_anishagnihotri
|
||||||
- name: Eva Zhang
|
- name: Eva Zhang
|
||||||
link: https://www.linkedin.com/in/evazhang612/
|
link: https://www.linkedin.com/in/evazhang612/
|
||||||
- name: Saneel Sreeni
|
- name: Saneel Sreeni
|
||||||
link: https://x.com/sanlsrni
|
link: https://x.com/sanlsrni
|
||||||
- name: Maryam Bahrani
|
- name: Maryam Bahrani
|
||||||
link: https://www.mbahrani.net/
|
link: https://www.mbahrani.net/
|
||||||
- name: Yahya Hassanzadeh
|
- name: Yahya Hassanzadeh
|
||||||
link: https://www.linkedin.com/in/yhassanzadeh/
|
link: https://www.linkedin.com/in/yhassanzadeh/
|
||||||
- name: Praveen Palanisamy
|
- name: Praveen Palanisamy
|
||||||
link: https://www.linkedin.com/in/praveenpalanisamy/
|
link: https://www.linkedin.com/in/praveenpalanisamy/
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://ritual.net/
|
web: https://ritual.net/
|
||||||
github: https://github.com/ritual-net
|
github: https://github.com/ritual-net
|
||||||
|
@ -32,24 +35,21 @@ links:
|
||||||
blog: https://ritual.net/blog
|
blog: https://ritual.net/blog
|
||||||
twitter: https://x.com/ritualnet
|
twitter: https://x.com/ritualnet
|
||||||
discord: https://discord.com/invite/ritual-net
|
discord: https://discord.com/invite/ritual-net
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
funding:
|
funding:
|
||||||
name: archetype
|
name: archetype
|
||||||
link: https://ritual.net/blog/introducing-ritual
|
link: https://ritual.net/blog/introducing-ritual
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,15 +1,22 @@
|
||||||
id: rotki
|
id: rotki
|
||||||
name: Rotki
|
name: Rotki
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum, bitcoin, base, optimist, gnosis, scroll, zksync]
|
- applications
|
||||||
description: "rotki is an open source portfolio tracker, accounting and analytics tool that protects your privacy"
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
- bitcoin
|
||||||
|
- base
|
||||||
|
- optimist
|
||||||
|
- gnosis
|
||||||
|
- scroll
|
||||||
|
- zksync
|
||||||
|
description: rotki is an open source portfolio tracker, accounting and analytics tool
|
||||||
|
that protects your privacy
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Lefteris Karapetsas
|
- name: Lefteris Karapetsas
|
||||||
link: https://x.com/LefterisJP
|
link: https://x.com/LefterisJP
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://rotki.com/
|
web: https://rotki.com/
|
||||||
github: https://github.com/rotki/rotki
|
github: https://github.com/rotki/rotki
|
||||||
|
@ -17,24 +24,20 @@ links:
|
||||||
blog: https://blog.rotki.com/
|
blog: https://blog.rotki.com/
|
||||||
twitter: https://x.com/rotkiapp
|
twitter: https://x.com/rotkiapp
|
||||||
discord: https://discord.rotki.com/
|
discord: https://discord.rotki.com/
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: true
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://rotki.com/privacy-policy
|
link: https://rotki.com/privacy-policy
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,42 +1,37 @@
|
||||||
id: self
|
id: self
|
||||||
name: Self
|
name: Self
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Build identification and personal data management for everything"
|
- applications
|
||||||
|
description: Build identification and personal data management for everything
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Dan Sutherland
|
- name: Dan Sutherland
|
||||||
link: https://www.linkedin.com/in/dansuth/
|
link: https://www.linkedin.com/in/dansuth/
|
||||||
- name: Sena Gbeckor-Kove
|
- name: Sena Gbeckor-Kove
|
||||||
link: https://www.linkedin.com/in/senagbe/
|
link: https://www.linkedin.com/in/senagbe/
|
||||||
- name: Jason Reid
|
- name: Jason Reid
|
||||||
link: https://www.linkedin.com/in/jason-reid-1a12833/
|
link: https://www.linkedin.com/in/jason-reid-1a12833/
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.joinself.com/
|
web: https://www.joinself.com/
|
||||||
github: https://github.com/joinself
|
github: https://github.com/joinself
|
||||||
docs: https://docs.joinself.com/
|
docs: https://docs.joinself.com/
|
||||||
twitter: https://x.com/futureoftrust
|
twitter: https://x.com/futureoftrust
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: false
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://www.joinself.com/company/legal
|
link: https://www.joinself.com/company/legal
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
id: sentz
|
id: sentz
|
||||||
name: Sentz
|
name: Sentz
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Global payments app for Freelancers & Creators"
|
- applications
|
||||||
|
description: Global payments app for Freelancers & Creators
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Sara Drakeley
|
- name: Sara Drakeley
|
||||||
link: https://www.linkedin.com/in/sara-drakeley/
|
link: https://www.linkedin.com/in/sara-drakeley/
|
||||||
- name: Henry Holtzman
|
- name: Henry Holtzman
|
||||||
link: https://www.linkedin.com/in/holtzmanh/?original_referer=https%3A%2F%2Fwww.sentz.com%2F
|
link: https://www.linkedin.com/in/holtzmanh/?original_referer=https%3A%2F%2Fwww.sentz.com%2F
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.sentz.com/
|
web: https://www.sentz.com/
|
||||||
github: https://github.com/mobilecoinofficial
|
github: https://github.com/mobilecoinofficial
|
||||||
|
@ -19,34 +18,29 @@ links:
|
||||||
blog: https://www.sentz.com/blog
|
blog: https://www.sentz.com/blog
|
||||||
twitter: https://x.com/sentzapp
|
twitter: https://x.com/sentzapp
|
||||||
discord: https://discord.com/invite/mobilecoin
|
discord: https://discord.com/invite/mobilecoin
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
tokens:
|
tokens:
|
||||||
- name: Mobile Coin
|
- name: Mobile Coin
|
||||||
symbol: $MOB
|
symbol: $MOB
|
||||||
token_link: https://www.coingecko.com/en/coins/mobilecoin
|
token_link: https://www.coingecko.com/en/coins/mobilecoin
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: false
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://www.sentz.com/privacy-policy
|
link: https://www.sentz.com/privacy-policy
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
traceability:
|
traceability:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
audits:
|
audits:
|
||||||
- name: Trail of Bits
|
- name: Trail of Bits
|
||||||
link: https://www.sentz.com/developers/audits
|
link: https://www.sentz.com/developers/audits
|
||||||
|
assets_used:
|
||||||
assets_used: [EUSD]
|
- EUSD
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: sightai
|
id: sightai
|
||||||
name: SightAI
|
name: SightAI
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Decentralized AI inference with FHE"
|
- applications
|
||||||
|
description: Decentralized AI inference with FHE
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -13,5 +14,6 @@ links:
|
||||||
telegram: https://t.me/sightai
|
telegram: https://t.me/sightai
|
||||||
have_token: false
|
have_token: false
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,15 +1,22 @@
|
||||||
id: summa
|
id: summa
|
||||||
name: Summa
|
name: Summa
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Protocol enabling centralized exchanges to prove solvency without compromising private information."
|
- infrastructure
|
||||||
|
description: Protocol enabling centralized exchanges to prove solvency without compromising
|
||||||
|
private information.
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
|
testnet: false
|
||||||
|
mainnet: false
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
github: https://github.com/summa-dev
|
github: https://github.com/summa-dev
|
||||||
technology:
|
technology:
|
||||||
type: halo2
|
type: halo2
|
||||||
features: [""]
|
features:
|
||||||
|
- ''
|
||||||
usecases: [infrastructure]
|
usecases:
|
||||||
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
id: sunscreen
|
id: sunscreen
|
||||||
name: "Sunsscreen"
|
name: Sunsscreen
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Privacy engine of the new web."
|
- applications
|
||||||
|
description: Privacy engine of the new web.
|
||||||
links:
|
links:
|
||||||
web: https://sunscreen.tech/
|
web: https://sunscreen.tech/
|
||||||
blog: https://blog.sunscreen.tech/
|
blog: https://blog.sunscreen.tech/
|
||||||
twitter: https://x.com/sunscreentech
|
twitter: https://x.com/sunscreentech
|
||||||
discord: https://discord.com/invite/WHCs6jNNDS
|
discord: https://discord.com/invite/WHCs6jNNDS
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
id: super-protocol
|
id: super-protocol
|
||||||
name: SuperProtocol
|
name: SuperProtocol
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "The confidential and self-sovereign AI cloud and marketplace, governed by smart contracts"
|
- applications
|
||||||
|
description: The confidential and self-sovereign AI cloud and marketplace, governed
|
||||||
|
by smart contracts
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -12,5 +14,6 @@ links:
|
||||||
telegram: https://t.me/superprotocol
|
telegram: https://t.me/superprotocol
|
||||||
have_token: false
|
have_token: false
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,29 +1,26 @@
|
||||||
id: synaps
|
id: synaps
|
||||||
name: Synaps
|
name: Synaps
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "KYC provider and verifiable credential issuer for DID protocols."
|
- applications
|
||||||
|
description: KYC provider and verifiable credential issuer for DID protocols.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Florian Le Goff
|
- name: Florian Le Goff
|
||||||
role: CEO
|
role: CEO
|
||||||
link: https://x.com/0xAnimaniac
|
link: https://x.com/0xAnimaniac
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://synaps.io/
|
web: https://synaps.io/
|
||||||
github: https://github.com/synaps-io
|
github: https://github.com/synaps-io
|
||||||
docs: https://docs.synaps.io/
|
docs: https://docs.synaps.io/
|
||||||
blog: https://synaps.io/blog
|
blog: https://synaps.io/blog
|
||||||
twitter: https://x.com/synaps_id
|
twitter: https://x.com/synaps_id
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- kyc-solution
|
- kyc-solution
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
id: taceo
|
id: taceo
|
||||||
name: Taceo
|
name: Taceo
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Encrypted Computation Layer; MPC + ZK"
|
- infrastructure
|
||||||
|
description: Encrypted Computation Layer; MPC + ZK
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Roman Walch
|
- name: Roman Walch
|
||||||
role: Co-founder
|
role: Co-founder
|
||||||
link: https://x.com/rw0x0
|
link: https://x.com/rw0x0
|
||||||
- name: Lukas Helminger
|
- name: Lukas Helminger
|
||||||
role: CEO
|
role: CEO
|
||||||
link: https://x.com/luhelminger
|
link: https://x.com/luhelminger
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://taceo.io/
|
web: https://taceo.io/
|
||||||
github: https://github.com/TaceoLabs
|
github: https://github.com/TaceoLabs
|
||||||
|
@ -20,11 +19,11 @@ links:
|
||||||
blog: https://blog.taceo.io/
|
blog: https://blog.taceo.io/
|
||||||
twitter: https://x.com/TACEO_IO
|
twitter: https://x.com/TACEO_IO
|
||||||
discord: https://discord.com/invite/gWZW2TANpk
|
discord: https://discord.com/invite/gWZW2TANpk
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
|
mainnet: true
|
||||||
|
testnet: true
|
||||||
have_token: false
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- computing
|
- computing
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
id: the-4th-pillar
|
id: the-4th-pillar
|
||||||
name: The 4th Pillar
|
name: The 4th Pillar
|
||||||
categories: [social-and-communications]
|
categories:
|
||||||
description: "Web3 Aligned Email & Chat Super App"
|
- social-and-communications
|
||||||
|
description: Web3 Aligned Email & Chat Super App
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://the4thpillar.io/
|
web: https://the4thpillar.io/
|
||||||
github: https://github.com/4P-project/
|
github: https://github.com/4P-project/
|
||||||
|
@ -15,20 +14,18 @@ links:
|
||||||
twitter: https://x.com/4pfour
|
twitter: https://x.com/4pfour
|
||||||
discord: https://discord.com/invite/WaZZXeBhg4
|
discord: https://discord.com/invite/WaZZXeBhg4
|
||||||
telegram: https://t.me/the4thpillarofficial
|
telegram: https://t.me/the4thpillarofficial
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
have_token: false
|
||||||
have_token: true
|
|
||||||
token_link: https://etherscan.io/token/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0
|
token_link: https://etherscan.io/token/0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0
|
||||||
tokens:
|
tokens:
|
||||||
- name: The 4th Pillar Token
|
- name: The 4th Pillar Token
|
||||||
symbol: $FOUR
|
symbol: $FOUR
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0"
|
contract_address: '0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
id: venice
|
id: venice
|
||||||
name: Venice
|
name: Venice
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "a generative AI app focused on privacy"
|
- applications
|
||||||
|
description: a generative AI app focused on privacy
|
||||||
links:
|
links:
|
||||||
web: https://venice.ai
|
web: https://venice.ai
|
||||||
blog: https://venice.ai/blog
|
blog: https://venice.ai/blog
|
||||||
twitter: https://x.com/askvenice
|
twitter: https://x.com/askvenice
|
||||||
farcaster: https://forecaster.com/venice-ai
|
farcaster: https://forecaster.com/venice-ai
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,26 +1,26 @@
|
||||||
id: vocdoni
|
id: vocdoni
|
||||||
name: Vocdoni
|
name: Vocdoni
|
||||||
categories: [applications]
|
categories:
|
||||||
ecosystem: [ethereum]
|
- applications
|
||||||
description: "To build open source solutions to facilitate decision making in any organization."
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
|
description: To build open source solutions to facilitate decision making in any organization.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Joan Arus
|
- name: Joan Arus
|
||||||
link: https://x.com/Joan_Arus
|
link: https://x.com/Joan_Arus
|
||||||
- name: Jordi Aulet
|
- name: Jordi Aulet
|
||||||
link: https://x.com/jp_aulet
|
link: https://x.com/jp_aulet
|
||||||
- name: Pau Escrich
|
- name: Pau Escrich
|
||||||
link: https://x.com/wildp4u
|
link: https://x.com/wildp4u
|
||||||
- name: Jordi Pinyana
|
- name: Jordi Pinyana
|
||||||
- name: Marta Sancho
|
- name: Marta Sancho
|
||||||
link: https://x.com/MartaMordis
|
link: https://x.com/MartaMordis
|
||||||
- name: Guido Iribarren
|
- name: Guido Iribarren
|
||||||
link: https://github.com/altergui
|
link: https://github.com/altergui
|
||||||
- name: Lucas Menéndez
|
- name: "Lucas Men\xE9ndez"
|
||||||
link: https://github.com/lucasmenendez
|
link: https://github.com/lucasmenendez
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://www.vocdoni.io/
|
web: https://www.vocdoni.io/
|
||||||
github: https://github.com/vocdoni
|
github: https://github.com/vocdoni
|
||||||
|
@ -29,27 +29,21 @@ links:
|
||||||
blog: https://blog.vocdoni.io/
|
blog: https://blog.vocdoni.io/
|
||||||
twitter: https://x.com/vocdoni
|
twitter: https://x.com/vocdoni
|
||||||
discord: https://discord.com/invite/Qjm7krrFBf
|
discord: https://discord.com/invite/Qjm7krrFBf
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
funding:
|
funding:
|
||||||
name: Aragon grant 2021/2022
|
name: Aragon grant 2021/2022
|
||||||
link: https://x.com/AragonProject
|
link: https://x.com/AragonProject
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
opensource: true
|
opensource: true
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
|
p2p: false
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
|
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
|
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: false
|
compliance: false
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
id: zama
|
id: zama
|
||||||
name: "Zama"
|
name: Zama
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "an open source cryptography company building FHE solutions for blockchain and AI."
|
- infrastructure
|
||||||
|
description: an open source cryptography company building FHE solutions for blockchain
|
||||||
|
and AI.
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
links:
|
links:
|
||||||
web: https://www.zama.ai
|
web: https://www.zama.ai
|
||||||
docs: https://docs.zama.ai/
|
docs: https://docs.zama.ai/
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
id: zkagi
|
id: zkagi
|
||||||
name: ZkAGI
|
name: ZkAGI
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Pioneering Privacy AI with Decentralized Infrastructure (DePIN)"
|
- applications
|
||||||
|
description: Pioneering Privacy AI with Decentralized Infrastructure (DePIN)
|
||||||
links:
|
links:
|
||||||
web: https://www.zkagi.ai/
|
web: https://www.zkagi.ai/
|
||||||
docs: https://zkagi.gitbook.io/introduction
|
docs: https://zkagi.gitbook.io/introduction
|
||||||
|
@ -12,5 +13,6 @@ links:
|
||||||
telegram: https://t.me/ZkAGI_AI
|
telegram: https://t.me/ZkAGI_AI
|
||||||
have_token: false
|
have_token: false
|
||||||
sunset: false
|
sunset: false
|
||||||
|
usecases:
|
||||||
usecases: [ai]
|
- ai
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
name: Actilist
|
name: Actilist
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Secret NFT auctions."
|
- applications
|
||||||
|
description: Secret NFT auctions.
|
||||||
links:
|
links:
|
||||||
web: https://test.actilist.io
|
web: https://test.actilist.io
|
||||||
github: https://github.com/actilabs
|
github: https://github.com/actilabs
|
||||||
|
@ -16,6 +17,6 @@ project_status:
|
||||||
mainnet: false
|
mainnet: false
|
||||||
have_token: false
|
have_token: false
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
name: AesirX WEB3 ID
|
name: AesirX WEB3 ID
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "an advanced identity management solution that protects users’ personal data and ensures privacy on the internet."
|
- applications
|
||||||
|
description: "an advanced identity management solution that protects users\u2019 personal\
|
||||||
|
\ data and ensures privacy on the internet."
|
||||||
links:
|
links:
|
||||||
web: https://web3id.aesirx.io
|
web: https://web3id.aesirx.io
|
||||||
github: https://github.com/aesirxio
|
github: https://github.com/aesirxio
|
||||||
whitepaper: https://whitepaper.aesirx.io/
|
whitepaper: https://whitepaper.aesirx.io/
|
||||||
|
|
||||||
blog: https://aesirx.io/blog/aesirx
|
blog: https://aesirx.io/blog/aesirx
|
||||||
twitter: https://x.com/aesirxio
|
twitter: https://x.com/aesirxio
|
||||||
facebook: https://www.facebook.com/aesirxio
|
facebook: https://www.facebook.com/aesirxio
|
||||||
telegram: https://t.me/aesirx_official_community
|
telegram: https://t.me/aesirx_official_community
|
||||||
have_token: true
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
name: Alaya
|
name: Alaya
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Alaya is a business sandbox and testing field for the next-generation of financial infrastructure of PlatON."
|
- infrastructure
|
||||||
ecosystem: [ethereum]
|
description: Alaya is a business sandbox and testing field for the next-generation
|
||||||
|
of financial infrastructure of PlatON.
|
||||||
|
ecosystem:
|
||||||
|
- ethereum
|
||||||
project_status:
|
project_status:
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
live_status: true
|
||||||
|
mainnet: true
|
||||||
|
testnet: true
|
||||||
links:
|
links:
|
||||||
web: https://alaya.network/en
|
web: https://alaya.network/en
|
||||||
github: https://github.com/AlayaNetwork
|
github: https://github.com/AlayaNetwork
|
||||||
|
@ -12,6 +18,7 @@ links:
|
||||||
blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e
|
blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- computing
|
- computing
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
name: Aleo
|
name: Aleo
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
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."
|
- 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:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -13,28 +16,30 @@ links:
|
||||||
docs: https://developer.aleo.org/getting_started/
|
docs: https://developer.aleo.org/getting_started/
|
||||||
blog: https://aleo.org/blog/
|
blog: https://aleo.org/blog/
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
|
||||||
version: Testnet
|
version: Testnet
|
||||||
|
open_source: true
|
||||||
testnet: true
|
testnet: true
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
live_status: true
|
||||||
technology:
|
technology:
|
||||||
type: zk-SNARKs
|
type: zk-SNARKs
|
||||||
features:
|
features:
|
||||||
- ZK circuit programming
|
- ZK circuit programming
|
||||||
- SNARK validator network
|
- SNARK validator network
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
|
opensource: true
|
||||||
p2p: true
|
p2p: true
|
||||||
viewing_key: true
|
viewing_key: true
|
||||||
dissapearing_tx: true
|
dissapearing_tx: true
|
||||||
connected_tx: true
|
connected_tx: true
|
||||||
client_diversability:
|
client_diversability:
|
||||||
- name: address
|
- name: address
|
||||||
link: https://explorer.aleo.org/validators
|
link: https://explorer.aleo.org/validators
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
compliance: false
|
compliance: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
name: Aleph Zero
|
name: Aleph Zero
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Privacy-enhancing public blockchain with instant finality."
|
- infrastructure
|
||||||
ecosystem: [aleph]
|
description: Privacy-enhancing public blockchain with instant finality.
|
||||||
|
ecosystem:
|
||||||
|
- aleph
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
@ -20,6 +22,7 @@ team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
company:
|
company:
|
||||||
link: https://alephzero.org/the-team
|
link: https://alephzero.org/the-team
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- computing
|
- computing
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
name: ALTER
|
name: ALTER
|
||||||
categories: [social-and-communications]
|
categories:
|
||||||
description: "Private & Secure Communication App Utilizing Secret Nework secret contract technology."
|
- social-and-communications
|
||||||
|
description: Private & Secure Communication App Utilizing Secret Nework secret contract
|
||||||
|
technology.
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -15,6 +17,7 @@ project_status:
|
||||||
version: mainnet
|
version: mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
name: Anagolay
|
name: Anagolay
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Web3 Framework for Original Creators to claim and verify ownership of online identities and multimedia content and license creative works P2P"
|
- applications
|
||||||
|
description: Web3 Framework for Original Creators to claim and verify ownership of
|
||||||
|
online identities and multimedia content and license creative works P2P
|
||||||
links:
|
links:
|
||||||
web: https://anagolay.network
|
web: https://anagolay.network
|
||||||
github: https://github.com/anagolay
|
github: https://github.com/anagolay
|
||||||
docs: https://anagolay.dev/docs/
|
docs: https://anagolay.dev/docs/
|
||||||
whitepaper: https://kelp.notion.site/Anagolay-White-Paper-v_0-3-fd9ca46a2f524e83b46ed8a0242d618d
|
whitepaper: https://kelp.notion.site/Anagolay-White-Paper-v_0-3-fd9ca46a2f524e83b46ed8a0242d618d
|
||||||
|
|
||||||
blog: https://anagolay.dev/blog/
|
blog: https://anagolay.dev/blog/
|
||||||
twitter: https://x.com/AnagolayNet
|
twitter: https://x.com/AnagolayNet
|
||||||
discord: https://discord.com/invite/WHe4EuY
|
discord: https://discord.com/invite/WHe4EuY
|
||||||
have_token: true
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,17 +1,22 @@
|
||||||
name: Anoma
|
name: Anoma
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "An intent-centric, privacy-preserving protocol for decentralized counterparty discovery, solving, and multi-chain atomic settlement"
|
- infrastructure
|
||||||
|
description: An intent-centric, privacy-preserving protocol for decentralized counterparty
|
||||||
|
discovery, solving, and multi-chain atomic settlement
|
||||||
project_status:
|
project_status:
|
||||||
version: "testnet"
|
version: testnet
|
||||||
|
testnet: true
|
||||||
|
mainnet: false
|
||||||
|
live_status: true
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Christopher Goes
|
- name: Christopher Goes
|
||||||
role: CTO
|
role: CTO
|
||||||
- name: Adrian Brink
|
- name: Adrian Brink
|
||||||
role: Co-founder
|
role: Co-founder
|
||||||
- name: Awa Sun Yin
|
- name: Awa Sun Yin
|
||||||
role: CEO
|
role: CEO
|
||||||
links:
|
links:
|
||||||
web: https://anoma.net
|
web: https://anoma.net
|
||||||
docs: https://github.com/anoma/anoma-archive/tree/main/docs
|
docs: https://github.com/anoma/anoma-archive/tree/main/docs
|
||||||
|
@ -22,12 +27,13 @@ links:
|
||||||
technology:
|
technology:
|
||||||
type: ZK, FHE
|
type: ZK, FHE
|
||||||
features:
|
features:
|
||||||
- privacy for content
|
- privacy for content
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
p2p: true
|
p2p: true
|
||||||
|
opensource: true
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,8 +1,15 @@
|
||||||
name: Anon Aadhaar
|
name: Anon Aadhaar
|
||||||
categories: [applications]
|
categories:
|
||||||
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."
|
- applications
|
||||||
|
description: Anon Aadhaar is a project that allows individuals to prove their citizenship
|
||||||
|
anonymously. The project provides circuits, an SDK, and demo applications that generate
|
||||||
|
and verify proofs of valid Aadhaar cards, integrating with the PCD framework to
|
||||||
|
support a wide range of applications.
|
||||||
project_status:
|
project_status:
|
||||||
version: "testnet"
|
version: testnet
|
||||||
|
live_status: false
|
||||||
|
mainnet: false
|
||||||
|
testnet: true
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -12,7 +19,9 @@ links:
|
||||||
github: https://github.com/anon-aadhaar/anon-aadhaar
|
github: https://github.com/anon-aadhaar/anon-aadhaar
|
||||||
technology:
|
technology:
|
||||||
type: zk, circom, rsa
|
type: zk, circom, rsa
|
||||||
features: [""]
|
features:
|
||||||
|
- ''
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
name: Anon/Nero
|
name: Anon/Nero
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Private wallet"
|
- applications
|
||||||
|
description: Private wallet
|
||||||
links:
|
links:
|
||||||
web: https://t.me/anoneroapks
|
web: https://t.me/anoneroapks
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- wallets
|
- wallets
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
name: Anonybit
|
name: Anonybit
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Anonybit revolutionary, patented solution offers a decentralized framework that strengthens compliance, protects identity, and secures personal assets (focus on biometrics)"
|
- applications
|
||||||
ecosystem: [multichain]
|
description: Anonybit revolutionary, patented solution offers a decentralized framework
|
||||||
|
that strengthens compliance, protects identity, and secures personal assets (focus
|
||||||
|
on biometrics)
|
||||||
|
ecosystem:
|
||||||
|
- multichain
|
||||||
links:
|
links:
|
||||||
web: https://www.anonybit.io/team/
|
web: https://www.anonybit.io/team/
|
||||||
|
|
||||||
blog: https://www.anonybit.io/blog/
|
blog: https://www.anonybit.io/blog/
|
||||||
twitter: https://x.com/Anonybit1
|
twitter: https://x.com/Anonybit1
|
||||||
have_token: true
|
have_token: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
name: AnonZK Incognito
|
name: AnonZK Incognito
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity."
|
- applications
|
||||||
|
description: A privacy tool known as a mixer, which we developed to utilize zk-SNARKs
|
||||||
|
technology to increase anonymity.
|
||||||
links:
|
links:
|
||||||
web: https://incognito.anonzk.io
|
web: https://incognito.anonzk.io
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
name: AnyDAO
|
name: AnyDAO
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Vote aggregation across different blockchain networks with adjustable privacy settings which controls the visibility of the voting"
|
- applications
|
||||||
|
description: Vote aggregation across different blockchain networks with adjustable
|
||||||
|
privacy settings which controls the visibility of the voting
|
||||||
links:
|
links:
|
||||||
web: https://app.anydao.io/bsc/explore
|
web: https://app.anydao.io/bsc/explore
|
||||||
docs: https://docs.anydao.io/
|
docs: https://docs.anydao.io/
|
||||||
blog: https://anydao.medium.com/
|
blog: https://anydao.medium.com/
|
||||||
twitter: https://x.com/0xAnyDAO
|
twitter: https://x.com/0xAnyDAO
|
||||||
telegram: https://t.me/AnyDAO
|
telegram: https://t.me/AnyDAO
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dao
|
- dao
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
name: Anytype
|
name: Anytype
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
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"
|
- infrastructure
|
||||||
|
description: local-first, E2E encrypted software designed as a secure place to create
|
||||||
|
and store digital assets. You can use Anytype to create and connect your tasks,
|
||||||
|
notes, ideas, documents, workflows, and more
|
||||||
links:
|
links:
|
||||||
web: https://anytype.io/en
|
web: https://anytype.io/en
|
||||||
github: https://github.com/anytypeio
|
github: https://github.com/anytypeio
|
||||||
|
@ -9,6 +12,7 @@ links:
|
||||||
twitter: https://twitter.com/anytypelabs
|
twitter: https://twitter.com/anytypelabs
|
||||||
telegram: https://t.me/anytype
|
telegram: https://t.me/anytype
|
||||||
youtube: https://www.youtube.com/c/anytype
|
youtube: https://www.youtube.com/c/anytype
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
name: Arcana's Private NFT
|
name: Arcana's Private NFT
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "New supported format by Arcana preserving privacy within NFT minting."
|
- applications
|
||||||
|
description: New supported format by Arcana preserving privacy within NFT minting.
|
||||||
links:
|
links:
|
||||||
web: https://arcana.network/blog/launching-private-nfts-on-arcana/
|
web: https://arcana.network/blog/launching-private-nfts-on-arcana/
|
||||||
github: https://docs.beta.arcana.network/docs/conceptpvtnft/
|
github: https://docs.beta.arcana.network/docs/conceptpvtnft/
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,19 +1,20 @@
|
||||||
name: Arcana
|
name: Arcana
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption"
|
- infrastructure
|
||||||
|
description: Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Mayur Relekar
|
- name: Mayur Relekar
|
||||||
role: Co-Founder
|
role: Co-Founder
|
||||||
- name: Aravindh Kumar
|
- name: Aravindh Kumar
|
||||||
role: Co-Founder
|
role: Co-Founder
|
||||||
- name: Ajay Shetty
|
- name: Ajay Shetty
|
||||||
role: Chief Operating Officer
|
role: Chief Operating Officer
|
||||||
- name: Abhishek Chaudhary
|
- name: Abhishek Chaudhary
|
||||||
role: Chief Technology Officer
|
role: Chief Technology Officer
|
||||||
- name: Sharan Grandigae
|
- name: Sharan Grandigae
|
||||||
role: Sharan Grandigae
|
role: Sharan Grandigae
|
||||||
links:
|
links:
|
||||||
web: https://arcana.network
|
web: https://arcana.network
|
||||||
github: https://docs.beta.arcana.network
|
github: https://docs.beta.arcana.network
|
||||||
|
@ -24,9 +25,9 @@ links:
|
||||||
docs: https://docs.arcana.network/
|
docs: https://docs.arcana.network/
|
||||||
blog: https://arcana.network/blog
|
blog: https://arcana.network/blog
|
||||||
whitepaper: https://www.notion.so/arcananetwork/Arcana-Technical-Docs-a1d7fd0d2970452586c693e4fee14d08
|
whitepaper: https://www.notion.so/arcananetwork/Arcana-Technical-Docs-a1d7fd0d2970452586c693e4fee14d08
|
||||||
have_token: true
|
have_token: false
|
||||||
tokens:
|
tokens:
|
||||||
- symbol: XAR
|
- symbol: XAR
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
name: ARPA
|
name: ARPA
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "Threshold BLS network can serve as the infrastructure of verifiable random number generator (RNG), secure wallet, cross-chain bridge, decentralized custody etc"
|
- infrastructure
|
||||||
ecosystem: [multichain]
|
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:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
@ -18,6 +22,7 @@ links:
|
||||||
telegram: https://t.me/arpa_community
|
telegram: https://t.me/arpa_community
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- computing
|
- computing
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
name: AsMatch
|
name: AsMatch
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "The only Web3 matching app that uses ZKPs to authenticate users’ on-chain credentials"
|
- applications
|
||||||
|
description: "The only Web3 matching app that uses ZKPs to authenticate users\u2019\
|
||||||
|
\ on-chain credentials"
|
||||||
links:
|
links:
|
||||||
web: https://www.asmatch.app
|
web: https://www.asmatch.app
|
||||||
whitepaper: https://whitepaper.asmatch.app/
|
whitepaper: https://whitepaper.asmatch.app/
|
||||||
|
|
||||||
blog: https://asmatch.medium.com/
|
blog: https://asmatch.medium.com/
|
||||||
twitter: https://x.com/AsMatchApp
|
twitter: https://x.com/AsMatchApp
|
||||||
discord: https://discord.com/invite/yqUWDdyfX9
|
discord: https://discord.com/invite/yqUWDdyfX9
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,13 +1,17 @@
|
||||||
name: Asterizm
|
name: Asterizm
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
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"
|
- 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:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Artem Avdeev
|
- name: Artem Avdeev
|
||||||
role: CEO
|
role: CEO
|
||||||
- name: Denis Polulyakhov
|
- name: Denis Polulyakhov
|
||||||
role: Co-Founder
|
role: Co-Founder
|
||||||
links:
|
links:
|
||||||
web: https://asterizm.io
|
web: https://asterizm.io
|
||||||
github: https://github.com/Asterizm-Protocol
|
github: https://github.com/Asterizm-Protocol
|
||||||
|
@ -17,6 +21,7 @@ links:
|
||||||
twitter: https://twitter.com/Asterizm_layer
|
twitter: https://twitter.com/Asterizm_layer
|
||||||
discord: https://discord.gg/z5QVerD48C
|
discord: https://discord.gg/z5QVerD48C
|
||||||
telegram: https://t.me/asterizm_protocol
|
telegram: https://t.me/asterizm_protocol
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,21 +1,20 @@
|
||||||
name: Auth3
|
name: Auth3
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
|
- infrastructure
|
||||||
description: "a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data."
|
description: a privacy-preserved computing network into Web 3.0 that aims to unlock
|
||||||
|
the value of data.
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
links:
|
links:
|
||||||
web: https://auth3.network
|
web: https://auth3.network
|
||||||
whitepaper: https://auth3.network/Auth3-Whitepaper_v1.0.pdf
|
whitepaper: https://auth3.network/Auth3-Whitepaper_v1.0.pdf
|
||||||
twitter: https://twitter.com/auth3_network
|
twitter: https://twitter.com/auth3_network
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: false
|
live_status: false
|
||||||
version: TBD
|
version: TBD
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
name: Automata Network
|
name: Automata Network
|
||||||
categories: [infrastructure]
|
categories:
|
||||||
description: "The privacy middleware layer building for a fair Web3. Its core suite of products include 1RPC, 2FA Guru, NFTFair, AnyDAO and XATA"
|
- 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:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -8,14 +10,14 @@ links:
|
||||||
docs: https://docs.ata.network
|
docs: https://docs.ata.network
|
||||||
github: https://github.com/automata-network
|
github: https://github.com/automata-network
|
||||||
blog: https://blog.ata.network/
|
blog: https://blog.ata.network/
|
||||||
have_token: true
|
have_token: false
|
||||||
tokens:
|
tokens:
|
||||||
- symbol: ATA
|
- symbol: ATA
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: ""
|
version: ''
|
||||||
testnet: true
|
testnet: true
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
name: Avado
|
name: Avado
|
||||||
categories: [hardware]
|
categories:
|
||||||
description: "A plug-and-play hardware device that connects users to many different kinds of blockchains"
|
- hardware
|
||||||
ecosystem: [multichain]
|
description: A plug-and-play hardware device that connects users to many different
|
||||||
|
kinds of blockchains
|
||||||
|
ecosystem:
|
||||||
|
- multichain
|
||||||
links:
|
links:
|
||||||
web: https://ava.do/
|
web: https://ava.do/
|
||||||
github: https://github.com/mysteriumnetwork/AVADO-DNP-Mysterium-Server
|
github: https://github.com/mysteriumnetwork/AVADO-DNP-Mysterium-Server
|
||||||
|
@ -14,6 +17,7 @@ team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
company:
|
company:
|
||||||
link: https://www.mysterium.network/team
|
link: https://www.mysterium.network/team
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- hardware
|
- hardware
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
name: AXIAtel
|
name: AXIAtel
|
||||||
categories: [hardware]
|
categories:
|
||||||
description: "a privacy first mobile service for everyone"
|
- hardware
|
||||||
ecosystem: [multichain]
|
description: a privacy first mobile service for everyone
|
||||||
|
ecosystem:
|
||||||
|
- multichain
|
||||||
links:
|
links:
|
||||||
web: https://axiatel.co
|
web: https://axiatel.co
|
||||||
blog: https://medium.com/@axiatel
|
blog: https://medium.com/@axiatel
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- hardware
|
- hardware
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
name: Aztec Connect
|
name: Aztec Connect
|
||||||
categories: [applications]
|
categories:
|
||||||
|
- applications
|
||||||
links:
|
links:
|
||||||
github: https://github.com/AztecProtocol/aztec-connect-bridges
|
github: https://github.com/AztecProtocol/aztec-connect-bridges
|
||||||
docs: https://docs.aztec.network/misc/aztec_connect_sunset
|
docs: https://docs.aztec.network/misc/aztec_connect_sunset
|
||||||
blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/
|
blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/
|
||||||
discord: https://discord.com/invite/aztec
|
discord: https://discord.com/invite/aztec
|
||||||
education: https://twitter.com/aztecnetwork/status/1575662728395358208
|
education: https://twitter.com/aztecnetwork/status/1575662728395358208
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- bridge
|
- bridge
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
name: Basic Attention Token
|
name: Basic Attention Token
|
||||||
categories: [defi]
|
categories:
|
||||||
description: "Making Crypto and DeFi accessible and usable for everyone (powered by Brave)"
|
- defi
|
||||||
ecosystem: [solana]
|
description: Making Crypto and DeFi accessible and usable for everyone (powered by
|
||||||
|
Brave)
|
||||||
|
ecosystem:
|
||||||
|
- solana
|
||||||
links:
|
links:
|
||||||
web: https://basicattentiontoken.org
|
web: https://basicattentiontoken.org
|
||||||
whitepaper: https://basicattentiontoken.org/static-assets/documents/BasicAttentionTokenWhitePaper-4.pdf
|
whitepaper: https://basicattentiontoken.org/static-assets/documents/BasicAttentionTokenWhitePaper-4.pdf
|
||||||
|
@ -10,6 +13,7 @@ links:
|
||||||
discord: https://discord.com/invite/BATBrigade
|
discord: https://discord.com/invite/BATBrigade
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
name: Basic Swap
|
name: Basic Swap
|
||||||
categories: [defi]
|
categories:
|
||||||
ecosystem: [multichain]
|
- defi
|
||||||
description: "A private and cross-chain DEX"
|
ecosystem:
|
||||||
|
- multichain
|
||||||
|
description: A private and cross-chain DEX
|
||||||
project_type: DeFi
|
project_type: DeFi
|
||||||
product_launch_day: "2022-12-08"
|
product_launch_day: '2022-12-08'
|
||||||
technology:
|
technology:
|
||||||
type: P2P
|
type: P2P
|
||||||
name: peer to peer
|
name: peer to peer
|
||||||
features:
|
features:
|
||||||
- private
|
- private
|
||||||
- swaps
|
- swaps
|
||||||
links:
|
links:
|
||||||
web: https://basicswapdex.com/
|
web: https://basicswapdex.com/
|
||||||
twitter: https://twitter.com/basicswapdex
|
twitter: https://twitter.com/basicswapdex
|
||||||
|
@ -42,14 +44,14 @@ traceability:
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
compliance: none
|
compliance: none
|
||||||
client_diversability:
|
client_diversability:
|
||||||
- name: BasicSwap client
|
- name: BasicSwap client
|
||||||
link: https://basicswapdex.com/
|
link: https://basicswapdex.com/
|
||||||
default_privacy: false
|
default_privacy: false
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- defi
|
- defi
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
name: BCchat
|
name: BCchat
|
||||||
categories: [social-and-communications]
|
categories:
|
||||||
description: "A decentralized, privacy messenger built over the Beldex blockchain."
|
- social-and-communications
|
||||||
|
description: A decentralized, privacy messenger built over the Beldex blockchain.
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -16,6 +17,7 @@ project_status:
|
||||||
version: mainnet
|
version: mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
name: Beam
|
name: Beam
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Self-custodial wallet built on eco.org"
|
- applications
|
||||||
|
description: Self-custodial wallet built on eco.org
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
links:
|
links:
|
||||||
|
@ -9,9 +10,10 @@ links:
|
||||||
github: https://github.com/eco-association
|
github: https://github.com/eco-association
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: ""
|
version: ''
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- wallets
|
- wallets
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
name: Beam
|
name: Beam
|
||||||
categories: [defi]
|
categories:
|
||||||
description: "Best in class privacy coin and confidential DeFi platform"
|
- defi
|
||||||
|
description: Best in class privacy coin and confidential DeFi platform
|
||||||
links:
|
links:
|
||||||
web: https://beam.mw
|
web: https://beam.mw
|
||||||
github: https://github.com/BeamMW/beam
|
github: https://github.com/BeamMW/beam
|
||||||
|
@ -10,11 +11,16 @@ links:
|
||||||
twitter: https://x.com/beamprivacy
|
twitter: https://x.com/beamprivacy
|
||||||
discord: https://discord.com/invite/BHZvAhg
|
discord: https://discord.com/invite/BHZvAhg
|
||||||
telegram: https://t.me/BeamPrivacy
|
telegram: https://t.me/BeamPrivacy
|
||||||
ecosystem: [beam]
|
ecosystem:
|
||||||
|
- beam
|
||||||
project_status:
|
project_status:
|
||||||
version: "Mainnet"
|
version: Mainnet
|
||||||
|
live_status: true
|
||||||
|
mainnet: true
|
||||||
|
testnet: false
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
name: Beepo
|
name: Beepo
|
||||||
categories: [social-and-communications]
|
categories:
|
||||||
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"
|
- social-and-communications
|
||||||
|
description: A social networking application integrated with a multichain chain crypto
|
||||||
|
wallet, a web 3 browser, instant messaging and calling, an eCommerce store, and
|
||||||
|
a sales catalog section for business accounts
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Michael Jimoh
|
- name: Michael Jimoh
|
||||||
role: Co-Founder & CEO
|
role: Co-Founder & CEO
|
||||||
- name: Clement Hochart
|
- name: Clement Hochart
|
||||||
role: Co-Founder
|
role: Co-Founder
|
||||||
links:
|
links:
|
||||||
web: https://beepoapp.net/#features
|
web: https://beepoapp.net/#features
|
||||||
github: https://github.com/beepo-app
|
github: https://github.com/beepo-app
|
||||||
|
@ -15,6 +18,7 @@ links:
|
||||||
twitter: https://x.com/beepoapp
|
twitter: https://x.com/beepoapp
|
||||||
discord: https://discord.com/invite/DhYJGgAVzR
|
discord: https://discord.com/invite/DhYJGgAVzR
|
||||||
telegram: https://t.me/beepoapp
|
telegram: https://t.me/beepoapp
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
name: Beldex
|
name: Beldex
|
||||||
categories: [defi]
|
categories:
|
||||||
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"
|
- defi
|
||||||
ecosystem: [beldex]
|
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:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
verion: Mainnet
|
verion: Mainnet
|
||||||
|
@ -18,6 +21,7 @@ links:
|
||||||
telegram: https://t.me/official_beldex
|
telegram: https://t.me/official_beldex
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
name: Bermuda
|
name: Bermuda
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Next-gen private utility dApp for sending legal, anonymous transactions of multiple ERC-20 tokens"
|
- applications
|
||||||
|
description: Next-gen private utility dApp for sending legal, anonymous transactions
|
||||||
|
of multiple ERC-20 tokens
|
||||||
links:
|
links:
|
||||||
web: https://www.bmda.io
|
web: https://www.bmda.io
|
||||||
whitepaper: https://www.bmda.io/bermuda-whitepaper-1.2.pdf
|
whitepaper: https://www.bmda.io/bermuda-whitepaper-1.2.pdf
|
||||||
|
|
||||||
blog: https://medium.com/@bmdaadmin
|
blog: https://medium.com/@bmdaadmin
|
||||||
twitter: https://x.com/BermudaEth
|
twitter: https://x.com/BermudaEth
|
||||||
telegram: https://t.me/bermudaportal
|
telegram: https://t.me/bermudaportal
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,19 +1,21 @@
|
||||||
name: Bidshop
|
name: Bidshop
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "The first and only trustless marketplace with encrypted & secret bidding. Opening a new world of gamification and liquidity for NFTs"
|
- applications
|
||||||
|
description: The first and only trustless marketplace with encrypted & secret bidding.
|
||||||
|
Opening a new world of gamification and liquidity for NFTs
|
||||||
links:
|
links:
|
||||||
web: https://www.bidshop.io
|
web: https://www.bidshop.io
|
||||||
docs: https://bidshop.gitbook.io/bidshop-platform
|
docs: https://bidshop.gitbook.io/bidshop-platform
|
||||||
blog: https://medium.com/@BIDSHOP
|
blog: https://medium.com/@BIDSHOP
|
||||||
twitter: https://x.com/BIDSHOP_io
|
twitter: https://x.com/BIDSHOP_io
|
||||||
telegram: https://t.me/BIDSHOP_TG
|
telegram: https://t.me/BIDSHOP_TG
|
||||||
have_token: true
|
have_token: false
|
||||||
token_link: https://etherscan.io/token/0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F
|
token_link: https://etherscan.io/token/0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F
|
||||||
tokens:
|
tokens:
|
||||||
- name: BIDSHOP
|
- name: BIDSHOP
|
||||||
symbol: BIDS
|
symbol: BIDS
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F"
|
contract_address: '0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F'
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
name: Blackbox
|
name: Blackbox
|
||||||
categories: [defi]
|
categories:
|
||||||
ecosystem: [secret]
|
- defi
|
||||||
description: "Collection of tools allowing you send & receive SCRT anonymously"
|
ecosystem:
|
||||||
|
- secret
|
||||||
|
description: Collection of tools allowing you send & receive SCRT anonymously
|
||||||
project_type: DeFi
|
project_type: DeFi
|
||||||
product_launch_day: "2021-15-02"
|
product_launch_day: '2021-15-02'
|
||||||
technology:
|
technology:
|
||||||
type: TEE
|
type: TEE
|
||||||
name: Trusted execution environment
|
name: Trusted execution environment
|
||||||
features:
|
features:
|
||||||
- Privacy
|
- Privacy
|
||||||
- Payments
|
- Payments
|
||||||
links:
|
links:
|
||||||
web: https://blackbox.cash/
|
web: https://blackbox.cash/
|
||||||
twitter: https://twitter.com/TriviumNode
|
twitter: https://twitter.com/TriviumNode
|
||||||
|
@ -19,7 +21,6 @@ links:
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
p2p: false
|
p2p: false
|
||||||
encryption: TEE
|
encryption: TEE
|
||||||
|
|
||||||
opensource: true
|
opensource: true
|
||||||
viewing_key: true
|
viewing_key: true
|
||||||
dissapearing_tx: false
|
dissapearing_tx: false
|
||||||
|
@ -41,9 +42,9 @@ team:
|
||||||
link: https://trivium.network/
|
link: https://trivium.network/
|
||||||
contacts: info@trivium.network
|
contacts: info@trivium.network
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Xiphiar
|
- name: Xiphiar
|
||||||
role: rdeveloper
|
role: rdeveloper
|
||||||
link: https://github.com/Xiphiar
|
link: https://github.com/Xiphiar
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
traceability:
|
traceability:
|
||||||
|
@ -54,16 +55,16 @@ compliance: false
|
||||||
social_trust: Slabs ( MRSINGER ), Contract operator ( Trivium )
|
social_trust: Slabs ( MRSINGER ), Contract operator ( Trivium )
|
||||||
technical_spof: Can decrypt/fraud
|
technical_spof: Can decrypt/fraud
|
||||||
client_diversability:
|
client_diversability:
|
||||||
- name: Keplr
|
- name: Keplr
|
||||||
link: https://www.keplr.app/
|
link: https://www.keplr.app/
|
||||||
- name: Starshell
|
- name: Starshell
|
||||||
link: https://starshell.net/
|
link: https://starshell.net/
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- defi
|
- defi
|
||||||
|
have_token: false
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
name: BlackHat Coin
|
name: BlackHat Coin
|
||||||
categories: [defi]
|
categories:
|
||||||
description: "Privacy-focused decentralized cryptocurrency providing truly anonymous untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol"
|
- defi
|
||||||
ecosystem: [blackhat]
|
description: Privacy-focused decentralized cryptocurrency providing truly anonymous
|
||||||
|
untraceable transactions based on PoS consensus and zk-SNARKs data protection protocol
|
||||||
|
ecosystem:
|
||||||
|
- blackhat
|
||||||
project_status:
|
project_status:
|
||||||
version: "Mainnet"
|
version: Mainnet
|
||||||
|
live_status: true
|
||||||
|
mainnet: true
|
||||||
|
testnet: false
|
||||||
links:
|
links:
|
||||||
web: https://blackhatco.in
|
web: https://blackhatco.in
|
||||||
github: https://github.com/BlackHatCoin
|
github: https://github.com/BlackHatCoin
|
||||||
|
@ -15,6 +21,7 @@ links:
|
||||||
telegram: https://t.me/BlackHatCoin
|
telegram: https://t.me/BlackHatCoin
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
name: Blockstream Green
|
name: Blockstream Green
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream"
|
- applications
|
||||||
ecosystem: [bitcoin]
|
description: A multi-platform, feature-rich Bitcoin and Liquid wallet by Blockstream
|
||||||
|
ecosystem:
|
||||||
|
- bitcoin
|
||||||
links:
|
links:
|
||||||
web: https://blockstream.com/green/
|
web: https://blockstream.com/green/
|
||||||
github: https://github.com/Blockstream/green_qt
|
github: https://github.com/Blockstream/green_qt
|
||||||
|
@ -10,14 +12,15 @@ links:
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Dr. Adam Back
|
- name: Dr. Adam Back
|
||||||
role: CEO
|
role: CEO
|
||||||
link: https://blockstream.com/about/
|
link: https://blockstream.com/about/
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: 2.0.6
|
version: 2.0.6
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- wallets
|
- wallets
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
name: BlockWallet
|
name: BlockWallet
|
||||||
categories: [applications]
|
categories:
|
||||||
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."
|
- applications
|
||||||
ecosystem: [ethereum]
|
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:
|
links:
|
||||||
web: https://blockwallet.io/
|
web: https://blockwallet.io/
|
||||||
github: https://github.com/block-wallet
|
github: https://github.com/block-wallet
|
||||||
|
@ -14,6 +19,7 @@ project_status:
|
||||||
version: v.1.2.9
|
version: v.1.2.9
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: false
|
mainnet: false
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- wallets
|
- wallets
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
name: Blockyfile
|
name: Blockyfile
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "The new way to upload files anonymously and without censorship."
|
- applications
|
||||||
|
description: The new way to upload files anonymously and without censorship.
|
||||||
links:
|
links:
|
||||||
web: https://blockyfile.org
|
web: https://blockyfile.org
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- dapps
|
- dapps
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
name: Bluum
|
name: Bluum
|
||||||
categories: [applications]
|
categories:
|
||||||
description: "Enable confidentiality of NFT content."
|
- applications
|
||||||
|
description: Enable confidentiality of NFT content.
|
||||||
links:
|
links:
|
||||||
web: https://bluumprotocol.com
|
web: https://bluumprotocol.com
|
||||||
github: https://github.com/BluumProtocol
|
github: https://github.com/BluumProtocol
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
name: BOB Protocol
|
name: BOB Protocol
|
||||||
categories: [defi]
|
categories:
|
||||||
description: "A multi-chain, multi-collateral stable token enhanced with optional privacy features"
|
- defi
|
||||||
ecosystem: [polygon, optimism, bnb, ethereum]
|
description: A multi-chain, multi-collateral stable token enhanced with optional privacy
|
||||||
|
features
|
||||||
|
ecosystem:
|
||||||
|
- polygon
|
||||||
|
- optimism
|
||||||
|
- bnb
|
||||||
|
- ethereum
|
||||||
links:
|
links:
|
||||||
web: https://zkbob.com/
|
web: https://zkbob.com/
|
||||||
github: https://github.com/zkBob
|
github: https://github.com/zkBob
|
||||||
|
@ -13,6 +19,7 @@ links:
|
||||||
telegram: https://t.me/zkbobcommunity
|
telegram: https://t.me/zkbobcommunity
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
name: Boltz
|
name: Boltz
|
||||||
categories: [defi]
|
categories:
|
||||||
description: "Privacy first, account-free crypto exchange"
|
- defi
|
||||||
|
description: Privacy first, account-free crypto exchange
|
||||||
links:
|
links:
|
||||||
web: https://boltz.exchange
|
web: https://boltz.exchange
|
||||||
github: https://github.com/BoltzExchange/
|
github: https://github.com/BoltzExchange/
|
||||||
|
@ -11,6 +12,7 @@ links:
|
||||||
telegram: https://t.me/boltzhq
|
telegram: https://t.me/boltzhq
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
|
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
|
have_token: false
|
||||||
|
third_party_dependency: false
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue