mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
Merge branch 'pb/old-data' into pb/fix-tests
This commit is contained in:
commit
c8cb9339b8
491 changed files with 1592 additions and 75 deletions
64
script.py
Normal file
64
script.py
Normal file
|
@ -0,0 +1,64 @@
|
|||
import yaml
|
||||
import os
|
||||
|
||||
# Funkce pro načtení YAML souboru
|
||||
def load_yaml(file_path):
|
||||
with open(file_path, 'r', encoding='utf-8') as file:
|
||||
return yaml.safe_load(file)
|
||||
|
||||
# Funkce pro zápis YAML souboru
|
||||
def save_yaml(file_path, data):
|
||||
with open(file_path, 'w', encoding='utf-8') as file:
|
||||
yaml.dump(data, file, allow_unicode=True)
|
||||
|
||||
# Funkce pro odstranění všeho kromě 'usecase'
|
||||
def keep_only_usecase(file_path):
|
||||
try:
|
||||
# Načti YAML soubor
|
||||
data = load_yaml(file_path)
|
||||
|
||||
# Ponechej jen klíč 'usecase', pokud existuje
|
||||
if 'usecase' in data:
|
||||
filtered_data = {'usecase': data['usecase']}
|
||||
else:
|
||||
filtered_data = {}
|
||||
|
||||
# Ulož upravený soubor zpět
|
||||
save_yaml(file_path, filtered_data)
|
||||
return True
|
||||
except Exception as e:
|
||||
print(f"Chyba při zpracování souboru {file_path}: {e}")
|
||||
return False
|
||||
|
||||
# Funkce pro procházení složek a zpracování souborů index.yaml
|
||||
def process_yaml_projects(projects_dir):
|
||||
total_files = 0
|
||||
processed_files = 0
|
||||
|
||||
for project in os.listdir(projects_dir):
|
||||
project_path = os.path.join(projects_dir, project)
|
||||
index_file_path = os.path.join(project_path, 'index.yaml')
|
||||
|
||||
# Ověř, že cesta je složka a obsahuje soubor 'index.yaml'
|
||||
if os.path.isdir(project_path):
|
||||
total_files += 1
|
||||
if os.path.isfile(index_file_path):
|
||||
success = keep_only_usecase(index_file_path)
|
||||
if success:
|
||||
print(f"Zpracováno: {index_file_path}")
|
||||
processed_files += 1
|
||||
else:
|
||||
print(f"Nelze zpracovat: {index_file_path}")
|
||||
else:
|
||||
print(f"Složka {project_path} neobsahuje soubor 'index.yaml'")
|
||||
|
||||
print(f"Celkový počet složek: {total_files}")
|
||||
print(f"Úspěšně zpracovaných souborů: {processed_files}")
|
||||
print(f"Nepřepsaných složek (bez 'index.yaml' nebo s chybou): {total_files - processed_files}")
|
||||
|
||||
# Použití
|
||||
# Zde nastav složku, kde jsou tvé projekty (src/projects)
|
||||
projects_dir = "src/projects"
|
||||
|
||||
# Spusť zpracování
|
||||
process_yaml_projects(projects_dir)
|
|
@ -6,3 +6,6 @@ links:
|
|||
github: https://github.com/o1-labs
|
||||
blog: https://www.o1labs.org/blog
|
||||
twitter: https://x.com/o1_labs
|
||||
|
||||
usecases:
|
||||
- rd
|
||||
|
|
|
@ -3,3 +3,6 @@ categories: [applications]
|
|||
description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers."
|
||||
links:
|
||||
web: https://0xmonero.com/mixer
|
||||
|
||||
usecase:
|
||||
- mixing-service
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
name: '1984'
|
||||
categories: [ infrastructure ]
|
||||
description: 'High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero.'
|
||||
name: "1984"
|
||||
categories: [infrastructure]
|
||||
description: "High-quality web hosting and VPS service provider based in Iceland that respects and protects the civil and political rights of customers. And offers a free DNS service and runs its services with 100% green energy. Does accept Bitcoin & Monero."
|
||||
team:
|
||||
anonymous: true
|
||||
links:
|
||||
web: https://1984.hosting/
|
||||
docs: https://kb.1984hosting.com/doku.php?id=start
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -5,3 +5,6 @@ links:
|
|||
web: https://www.1rpc.io
|
||||
docs: https://docs.ata.network/1rpc/introduction/
|
||||
twitter: https://x.com/1rpc_
|
||||
|
||||
usecases:
|
||||
- rpc
|
||||
|
|
|
@ -4,3 +4,6 @@ description: "A simple solution to interact with DApps by enforcing an additiona
|
|||
links:
|
||||
web: https://www.2fa.guru
|
||||
github: https://github.com/skiff-org/skiff-mail
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -9,3 +9,6 @@ links:
|
|||
blog: https://aioz.network/blog
|
||||
twitter: https://x.com/AIOZNetwork
|
||||
telegram: https://t.me/aioznetwork
|
||||
|
||||
usecases:
|
||||
- AI
|
||||
|
|
|
@ -27,3 +27,6 @@ tokens:
|
|||
- name: ADMToken
|
||||
symbol: $ADM
|
||||
network: Ethereum
|
||||
|
||||
usecases:
|
||||
- messaging
|
||||
|
|
|
@ -16,3 +16,6 @@ links:
|
|||
technology:
|
||||
type: circom, snarkjs, halo2
|
||||
features: ["zkp"]
|
||||
|
||||
usecases:
|
||||
- DID
|
||||
|
|
|
@ -9,3 +9,6 @@ links:
|
|||
blog: https://blog.arcium.com/
|
||||
twitter: https://x.com/ArciumHQ
|
||||
discord: https://discord.com/invite/arcium
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -11,3 +11,6 @@ links:
|
|||
docs: https://docs.bandada.pse.dev/
|
||||
github: https://github.com/bandada-infra/bandada
|
||||
type: semaphore, zk-kit
|
||||
|
||||
usecases:
|
||||
- DID
|
||||
|
|
|
@ -31,3 +31,6 @@ tokens:
|
|||
symbol: $BBL
|
||||
network: Ethereum
|
||||
contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124"
|
||||
|
||||
usecases:
|
||||
- bridge
|
||||
|
|
|
@ -20,3 +20,6 @@ project_status:
|
|||
mainnet: true
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- browser
|
||||
|
|
|
@ -31,3 +31,6 @@ tokens:
|
|||
symbol: $PORTX
|
||||
network: Ethereum
|
||||
contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac"
|
||||
|
||||
usecases:
|
||||
- bridge
|
||||
|
|
|
@ -47,3 +47,6 @@ compliance: false
|
|||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
usecases:
|
||||
- storage
|
||||
|
|
|
@ -14,3 +14,5 @@ tokens:
|
|||
network: Ethereum
|
||||
contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da"
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -27,3 +27,6 @@ project_status:
|
|||
|
||||
traceability:
|
||||
kyc: false
|
||||
|
||||
usecases:
|
||||
- Storage
|
||||
|
|
|
@ -36,3 +36,6 @@ tokens:
|
|||
symbol: $COTI
|
||||
network: Ethereum
|
||||
contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5"
|
||||
|
||||
usecases:
|
||||
- layer-2
|
||||
|
|
|
@ -8,3 +8,6 @@ links:
|
|||
blog: https://www.cursive.team/blog
|
||||
twitter: https://x.com/cursive_team
|
||||
telegram: https://t.me/+z5REVOBXp_hmNDIx
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -36,3 +36,6 @@ tokens:
|
|||
symbol: $DeChat
|
||||
network: BSC
|
||||
contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519"
|
||||
|
||||
usecases:
|
||||
- messaging
|
||||
|
|
|
@ -24,3 +24,6 @@ project_status:
|
|||
mainnet: true
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- VPN
|
||||
|
|
|
@ -46,3 +46,6 @@ compliance: false
|
|||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
usecases:
|
||||
- storage
|
||||
|
|
|
@ -50,3 +50,6 @@ audits:
|
|||
- name: Jean-Philipee Aumasson
|
||||
link: https://www.aumasson.jp/
|
||||
time: 2019-12
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -13,3 +13,5 @@ links:
|
|||
telegram: https://t.me/+D0CulDl9udZjMWIx
|
||||
have_token: false
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -7,3 +7,6 @@ links:
|
|||
github: https://github.com/fairmath
|
||||
twitter: https://x.com/FairMath
|
||||
discord: https://discord.com/invite/NfhXwyr9M5
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -10,3 +10,6 @@ links:
|
|||
blog: https://medium.com/@Fhenix
|
||||
twitter: https://x.com/FhenixIO
|
||||
discord: https://discord.com/invite/FuVgxrvJMY
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -52,3 +52,6 @@ audits:
|
|||
- name: Certik
|
||||
link: https://skynet.certik.com/projects/humanode
|
||||
time: "2023-01-30"
|
||||
|
||||
usecases:
|
||||
- did
|
||||
|
|
|
@ -41,3 +41,6 @@ project_status:
|
|||
mainnet: true
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- VPN
|
||||
|
|
|
@ -13,3 +13,6 @@ links:
|
|||
twitter: https://x.com/inconetwork
|
||||
discord: https://discord.com/invite/fnKZp2qHPQ
|
||||
telgram: https://t.me/inconetwork
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -29,3 +29,6 @@ project_status:
|
|||
mainnet: false
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- layer-2
|
||||
|
|
|
@ -33,3 +33,6 @@ tokens:
|
|||
symbol: $KINTO
|
||||
network: Kinto
|
||||
contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87"
|
||||
|
||||
usecases:
|
||||
- Layer-2
|
||||
|
|
|
@ -57,3 +57,6 @@ traceability:
|
|||
sign_in_type_requirments: wallet
|
||||
third_party_dependency: false
|
||||
compliance: false
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -38,3 +38,6 @@ traceability:
|
|||
kyc: false
|
||||
third_party_dependency: false
|
||||
compliance: false
|
||||
|
||||
usecases:
|
||||
- computing-network
|
||||
|
|
|
@ -22,3 +22,6 @@ project_status:
|
|||
mainnet: true
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- bridge
|
||||
|
|
|
@ -19,3 +19,5 @@ tokens:
|
|||
network: Ethereum
|
||||
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -16,3 +16,5 @@ tokens:
|
|||
network: Ethereum
|
||||
contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98"
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -12,3 +12,6 @@ links:
|
|||
twitter: https://x.com/origin_trail
|
||||
discord: https://discord.com/invite/QctFuPCMew
|
||||
telegram: https://t.me/origintrail
|
||||
|
||||
usecases:
|
||||
ai
|
||||
|
|
|
@ -48,3 +48,5 @@ traceability:
|
|||
sign_in_type_requirments: wallet
|
||||
third_party_dependency: false
|
||||
compliance: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -69,3 +69,6 @@ audits:
|
|||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
usecases:
|
||||
- browser
|
||||
|
|
|
@ -11,3 +11,6 @@ links:
|
|||
twitter: https://x.com/Privasea_ai
|
||||
discord: https://discord.com/invite/yRtQGvWkvG
|
||||
telegram: https://t.me/Privasea_ai
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -41,3 +41,6 @@ audits:
|
|||
- name: Zellic
|
||||
link: https://github.com/Zellic/publications/blob/master/Privy_Shamir_Secret_Sharing_-_Zellic_Audit_Report.pdf
|
||||
time: 2023-08
|
||||
|
||||
usecases:
|
||||
- wallets
|
||||
|
|
|
@ -28,3 +28,6 @@ project_status:
|
|||
mainnet: false
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- Hardware
|
||||
|
|
|
@ -13,3 +13,5 @@ links:
|
|||
telegram: https://t.me/+N6HLxnRL_WE5ZDVl
|
||||
have_token: false
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -51,3 +51,5 @@ traceability:
|
|||
kyc: false
|
||||
third_party_dependency: false
|
||||
compliance: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -35,3 +35,6 @@ traceability:
|
|||
sign_in_type_requirments: wallet
|
||||
third_party_dependency: false
|
||||
compliance: false
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -37,3 +37,6 @@ compliance: false
|
|||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
usecases:
|
||||
- did
|
||||
|
|
|
@ -47,3 +47,6 @@ audits:
|
|||
link: https://www.sentz.com/developers/audits
|
||||
|
||||
assets_used: [EUSD]
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -13,3 +13,5 @@ links:
|
|||
telegram: https://t.me/sightai
|
||||
have_token: false
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -11,3 +11,5 @@ links:
|
|||
technology:
|
||||
type: halo2
|
||||
features: [""]
|
||||
|
||||
usecases: infrastructure
|
||||
|
|
|
@ -7,3 +7,6 @@ links:
|
|||
blog: https://blog.sunscreen.tech/
|
||||
twitter: https://x.com/sunscreentech
|
||||
discord: https://discord.com/invite/WHCs6jNNDS
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -12,3 +12,5 @@ links:
|
|||
telegram: https://t.me/superprotocol
|
||||
have_token: false
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -24,3 +24,6 @@ project_status:
|
|||
mainnet: true
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- kyc
|
||||
|
|
|
@ -25,3 +25,6 @@ project_status:
|
|||
live_status: true
|
||||
|
||||
have_token: false
|
||||
|
||||
usecases:
|
||||
- computing-network
|
||||
|
|
|
@ -29,3 +29,6 @@ tokens:
|
|||
symbol: $FOUR
|
||||
network: Ethereum
|
||||
contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0"
|
||||
|
||||
usecases:
|
||||
- messaging
|
||||
|
|
|
@ -7,3 +7,5 @@ links:
|
|||
blog: https://venice.ai/blog
|
||||
twitter: https://x.com/askvenice
|
||||
farcaster: https://forecaster.com/venice-ai
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -50,3 +50,6 @@ compliance: false
|
|||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -7,3 +7,6 @@ team:
|
|||
links:
|
||||
web: https://www.zama.ai
|
||||
docs: https://docs.zama.ai/
|
||||
|
||||
usecases:
|
||||
- FHE
|
||||
|
|
|
@ -12,3 +12,5 @@ links:
|
|||
telegram: https://t.me/ZkAGI_AI
|
||||
have_token: false
|
||||
sunset: false
|
||||
|
||||
usecases: [ai]
|
||||
|
|
|
@ -16,3 +16,6 @@ project_status:
|
|||
mainnet: false
|
||||
have_token: false
|
||||
sunset: false
|
||||
|
||||
usecases:
|
||||
- nft
|
||||
|
|
|
@ -11,3 +11,6 @@ links:
|
|||
facebook: https://www.facebook.com/aesirxio
|
||||
telegram: https://t.me/aesirx_official_community
|
||||
have_token: true
|
||||
|
||||
usecases:
|
||||
- did
|
||||
|
|
|
@ -12,3 +12,6 @@ links:
|
|||
blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
usecases:
|
||||
- computing-network
|
||||
|
|
|
@ -35,3 +35,6 @@ storage:
|
|||
decentralized: true
|
||||
compliance: false
|
||||
third_party_dependency: false
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -20,3 +20,6 @@ team:
|
|||
anonymous: false
|
||||
company:
|
||||
link: https://alephzero.org/the-team
|
||||
|
||||
usecases:
|
||||
- computing-network
|
||||
|
|
|
@ -15,3 +15,6 @@ project_status:
|
|||
version: mainnet
|
||||
testnet: false
|
||||
mainnet: true
|
||||
|
||||
usecases:
|
||||
- messaging
|
||||
|
|
|
@ -11,3 +11,6 @@ links:
|
|||
twitter: https://x.com/AnagolayNet
|
||||
discord: https://discord.com/invite/WHe4EuY
|
||||
have_token: true
|
||||
|
||||
usecases:
|
||||
- did
|
||||
|
|
|
@ -28,3 +28,6 @@ blockchain_features:
|
|||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -13,3 +13,6 @@ links:
|
|||
technology:
|
||||
type: zk, circom, rsa
|
||||
features: [""]
|
||||
|
||||
usecases:
|
||||
- DID
|
||||
|
|
|
@ -3,3 +3,6 @@ categories: [applications]
|
|||
description: "Private wallet"
|
||||
links:
|
||||
web: https://t.me/anoneroapks
|
||||
|
||||
usecases:
|
||||
- wallets
|
||||
|
|
|
@ -8,3 +8,6 @@ links:
|
|||
blog: https://www.anonybit.io/blog/
|
||||
twitter: https://x.com/Anonybit1
|
||||
have_token: true
|
||||
|
||||
usecases:
|
||||
- did
|
||||
|
|
|
@ -3,3 +3,6 @@ categories: [applications]
|
|||
description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity."
|
||||
links:
|
||||
web: https://incognito.anonzk.io
|
||||
|
||||
usecases:
|
||||
- mixing-service
|
||||
|
|
|
@ -7,3 +7,6 @@ links:
|
|||
blog: https://anydao.medium.com/
|
||||
twitter: https://x.com/0xAnyDAO
|
||||
telegram: https://t.me/AnyDAO
|
||||
|
||||
usecases:
|
||||
- dao
|
||||
|
|
|
@ -9,3 +9,6 @@ links:
|
|||
twitter: https://twitter.com/anytypelabs
|
||||
telegram: https://t.me/anytype
|
||||
youtube: https://www.youtube.com/c/anytype
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -4,3 +4,6 @@ description: "New supported format by Arcana preserving privacy within NFT minti
|
|||
links:
|
||||
web: https://arcana.network/blog/launching-private-nfts-on-arcana/
|
||||
github: https://docs.beta.arcana.network/docs/conceptpvtnft/
|
||||
|
||||
usecases:
|
||||
- nft
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
name: Arcana
|
||||
categories: [ infrastructure ]
|
||||
description: 'Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption'
|
||||
team:
|
||||
categories: [infrastructure]
|
||||
description: "Arcana is UX-focused Validium chain built to simplify Web3 UX and adoption"
|
||||
team:
|
||||
anonymous: false
|
||||
teammembers:
|
||||
- name: Mayur Relekar
|
||||
role: Co-Founder
|
||||
- name: Aravindh Kumar
|
||||
role: Co-Founder
|
||||
- name: Ajay Shetty
|
||||
role: Chief Operating Officer
|
||||
- name: Abhishek Chaudhary
|
||||
role: Chief Technology Officer
|
||||
- name: Sharan Grandigae
|
||||
role: Sharan Grandigae
|
||||
- name: Mayur Relekar
|
||||
role: Co-Founder
|
||||
- name: Aravindh Kumar
|
||||
role: Co-Founder
|
||||
- name: Ajay Shetty
|
||||
role: Chief Operating Officer
|
||||
- name: Abhishek Chaudhary
|
||||
role: Chief Technology Officer
|
||||
- name: Sharan Grandigae
|
||||
role: Sharan Grandigae
|
||||
links:
|
||||
web: https://arcana.network
|
||||
github: https://docs.beta.arcana.network
|
||||
|
@ -27,3 +27,6 @@ links:
|
|||
have_token: true
|
||||
tokens:
|
||||
- symbol: XAR
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -18,3 +18,6 @@ links:
|
|||
telegram: https://t.me/arpa_community
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
usecases:
|
||||
- computing-network
|
||||
|
|
|
@ -8,3 +8,6 @@ links:
|
|||
blog: https://asmatch.medium.com/
|
||||
twitter: https://x.com/AsMatchApp
|
||||
discord: https://discord.com/invite/yqUWDdyfX9
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -17,3 +17,6 @@ links:
|
|||
twitter: https://twitter.com/Asterizm_layer
|
||||
discord: https://discord.gg/z5QVerD48C
|
||||
telegram: https://t.me/asterizm_protocol
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
name: Auth3
|
||||
categories: [ infrastructure ]
|
||||
categories: [infrastructure]
|
||||
|
||||
description: 'a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data.'
|
||||
description: "a privacy-preserved computing network into Web 3.0 that aims to unlock the value of data."
|
||||
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
|
||||
links:
|
||||
web: https://auth3.network
|
||||
whitepaper: https://auth3.network/Auth3-Whitepaper_v1.0.pdf
|
||||
twitter: https://twitter.com/auth3_network
|
||||
|
||||
|
||||
project_status:
|
||||
live_status: false
|
||||
version: TBD
|
||||
testnet: false
|
||||
mainnet: false
|
||||
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -16,3 +16,6 @@ project_status:
|
|||
version: ""
|
||||
testnet: true
|
||||
mainnet: false
|
||||
|
||||
usecases:
|
||||
- infrastructure
|
||||
|
|
|
@ -14,3 +14,6 @@ team:
|
|||
anonymous: false
|
||||
company:
|
||||
link: https://www.mysterium.network/team
|
||||
|
||||
usecases:
|
||||
- hardware
|
||||
|
|
|
@ -7,3 +7,6 @@ links:
|
|||
blog: https://medium.com/@axiatel
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
usecases:
|
||||
- hardware
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
name: Aztec Connect
|
||||
categories: [applications]
|
||||
links:
|
||||
github: https://github.com/AztecProtocol/aztec-connect-bridges
|
||||
docs: https://docs.aztec.network/misc/aztec_connect_sunset
|
||||
blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/
|
||||
discord: https://discord.com/invite/aztec
|
||||
education: https://twitter.com/aztecnetwork/status/1575662728395358208
|
||||
name: Aztec Connect
|
||||
categories: [applications]
|
||||
links:
|
||||
github: https://github.com/AztecProtocol/aztec-connect-bridges
|
||||
docs: https://docs.aztec.network/misc/aztec_connect_sunset
|
||||
blog: https://aztec.network/blog/private-defi-with-the-aztec-connect-bridge/
|
||||
discord: https://discord.com/invite/aztec
|
||||
education: https://twitter.com/aztecnetwork/status/1575662728395358208
|
||||
|
||||
usecases:
|
||||
- bridge
|
||||
|
|
|
@ -10,3 +10,6 @@ links:
|
|||
discord: https://discord.com/invite/BATBrigade
|
||||
team:
|
||||
anonymous: false
|
||||
|
||||
usecases:
|
||||
- currency
|
||||
|
|
|
@ -50,3 +50,6 @@ project_status:
|
|||
version: Mainnet
|
||||
testnet: false
|
||||
mainnet: true
|
||||
|
||||
usecases:
|
||||
- defi
|
||||
|
|
|
@ -16,3 +16,6 @@ project_status:
|
|||
version: mainnet
|
||||
testnet: false
|
||||
mainnet: true
|
||||
|
||||
usecases:
|
||||
- messaging
|
||||
|
|
|
@ -12,3 +12,6 @@ project_status:
|
|||
version: ""
|
||||
testnet: false
|
||||
mainnet: false
|
||||
|
||||
usecases:
|
||||
- wallets
|
||||
|
|
|
@ -15,3 +15,6 @@ project_status:
|
|||
version: "Mainnet"
|
||||
team:
|
||||
anonymous: false
|
||||
|
||||
usecases:
|
||||
- currency
|
||||
|
|
|
@ -15,3 +15,6 @@ links:
|
|||
twitter: https://x.com/beepoapp
|
||||
discord: https://discord.com/invite/DhYJGgAVzR
|
||||
telegram: https://t.me/beepoapp
|
||||
|
||||
usecases:
|
||||
- messaging
|
||||
|
|
|
@ -18,3 +18,6 @@ links:
|
|||
telegram: https://t.me/official_beldex
|
||||
team:
|
||||
anonymous: false
|
||||
|
||||
usecases:
|
||||
- currency
|
||||
|
|
|
@ -8,3 +8,6 @@ links:
|
|||
blog: https://medium.com/@bmdaadmin
|
||||
twitter: https://x.com/BermudaEth
|
||||
telegram: https://t.me/bermudaportal
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -14,3 +14,6 @@ tokens:
|
|||
symbol: BIDS
|
||||
network: Ethereum
|
||||
contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F"
|
||||
|
||||
usecases:
|
||||
- nft
|
||||
|
|
|
@ -64,3 +64,6 @@ project_status:
|
|||
version: Mainnet
|
||||
testnet: false
|
||||
mainnet: true
|
||||
|
||||
usecases:
|
||||
- defi
|
||||
|
|
|
@ -15,3 +15,6 @@ links:
|
|||
telegram: https://t.me/BlackHatCoin
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
usecases:
|
||||
- currency
|
||||
|
|
|
@ -18,3 +18,6 @@ project_status:
|
|||
version: 2.0.6
|
||||
testnet: false
|
||||
mainnet: false
|
||||
|
||||
usecases:
|
||||
- wallets
|
||||
|
|
|
@ -14,3 +14,6 @@ project_status:
|
|||
version: v.1.2.9
|
||||
testnet: false
|
||||
mainnet: false
|
||||
|
||||
usecases:
|
||||
- wallets
|
||||
|
|
|
@ -3,3 +3,6 @@ categories: [applications]
|
|||
description: "The new way to upload files anonymously and without censorship."
|
||||
links:
|
||||
web: https://blockyfile.org
|
||||
|
||||
usecases:
|
||||
- dapps
|
||||
|
|
|
@ -4,3 +4,6 @@ description: "Enable confidentiality of NFT content."
|
|||
links:
|
||||
web: https://bluumprotocol.com
|
||||
github: https://github.com/BluumProtocol
|
||||
|
||||
usecases:
|
||||
- nft
|
||||
|
|
|
@ -13,3 +13,6 @@ links:
|
|||
telegram: https://t.me/zkbobcommunity
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
usecases:
|
||||
- currency
|
||||
|
|
|
@ -11,3 +11,6 @@ links:
|
|||
telegram: https://t.me/boltzhq
|
||||
team:
|
||||
anonymous: true
|
||||
|
||||
usecases:
|
||||
- currency
|
||||
|
|
|
@ -10,3 +10,6 @@ team:
|
|||
have_token: true
|
||||
token_link: https://coinmarketcap.com/currencies/boring-protocol/
|
||||
sunset: true
|
||||
|
||||
usecases:
|
||||
- vpn
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue