Merge branch 'pb/old-data' into pb/fix-tests

This commit is contained in:
Diex5 2024-09-18 11:40:18 +02:00
commit c8cb9339b8
491 changed files with 1592 additions and 75 deletions

64
script.py Normal file
View file

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

View file

@ -6,3 +6,6 @@ links:
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:
- rd

View file

@ -3,3 +3,6 @@ categories: [applications]
description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers." description: "0xTIP features mixing, private bridging from Ethereum to BNB chain as well as off-chain transfers."
links: links:
web: https://0xmonero.com/mixer web: https://0xmonero.com/mixer
usecase:
- mixing-service

View file

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

View file

@ -5,3 +5,6 @@ links:
web: https://www.1rpc.io web: https://www.1rpc.io
docs: https://docs.ata.network/1rpc/introduction/ docs: https://docs.ata.network/1rpc/introduction/
twitter: https://x.com/1rpc_ twitter: https://x.com/1rpc_
usecases:
- rpc

View file

@ -4,3 +4,6 @@ description: "A simple solution to interact with DApps by enforcing an additiona
links: links:
web: https://www.2fa.guru web: https://www.2fa.guru
github: https://github.com/skiff-org/skiff-mail github: https://github.com/skiff-org/skiff-mail
usecases:
- dapps

View file

@ -9,3 +9,6 @@ links:
blog: https://aioz.network/blog blog: https://aioz.network/blog
twitter: https://x.com/AIOZNetwork twitter: https://x.com/AIOZNetwork
telegram: https://t.me/aioznetwork telegram: https://t.me/aioznetwork
usecases:
- AI

View file

@ -27,3 +27,6 @@ tokens:
- name: ADMToken - name: ADMToken
symbol: $ADM symbol: $ADM
network: Ethereum network: Ethereum
usecases:
- messaging

View file

@ -16,3 +16,6 @@ links:
technology: technology:
type: circom, snarkjs, halo2 type: circom, snarkjs, halo2
features: ["zkp"] features: ["zkp"]
usecases:
- DID

View file

@ -9,3 +9,6 @@ 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
usecases:
- FHE

View file

@ -11,3 +11,6 @@ links:
docs: https://docs.bandada.pse.dev/ docs: https://docs.bandada.pse.dev/
github: https://github.com/bandada-infra/bandada github: https://github.com/bandada-infra/bandada
type: semaphore, zk-kit type: semaphore, zk-kit
usecases:
- DID

View file

@ -31,3 +31,6 @@ tokens:
symbol: $BBL symbol: $BBL
network: Ethereum network: Ethereum
contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124" contract_address: "0x0a44a7ccea34a7563ba1d45a5f757d0b02281124"
usecases:
- bridge

View file

@ -20,3 +20,6 @@ project_status:
mainnet: true mainnet: true
have_token: false have_token: false
usecases:
- browser

View file

@ -31,3 +31,6 @@ tokens:
symbol: $PORTX symbol: $PORTX
network: Ethereum network: Ethereum
contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac" contract_address: "0x104f3152d8ebfc3f679392977356962ff36566ac"
usecases:
- bridge

View file

@ -47,3 +47,6 @@ compliance: false
storage: storage:
decentralized: true decentralized: true
usecases:
- storage

View file

@ -14,3 +14,5 @@ tokens:
network: Ethereum network: Ethereum
contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da" contract_address: "0x13f7B4581dF403542286563C2F762077B2a368Da"
sunset: false sunset: false
usecases: [ai]

View file

@ -27,3 +27,6 @@ project_status:
traceability: traceability:
kyc: false kyc: false
usecases:
- Storage

View file

@ -36,3 +36,6 @@ tokens:
symbol: $COTI symbol: $COTI
network: Ethereum network: Ethereum
contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5" contract_address: "0xDDB3422497E61e13543BeA06989C0789117555c5"
usecases:
- layer-2

View file

@ -8,3 +8,6 @@ links:
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
usecases:
- FHE

View file

@ -36,3 +36,6 @@ tokens:
symbol: $DeChat symbol: $DeChat
network: BSC network: BSC
contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519" contract_address: "0xD69ee2e508363FEd57f89917D5ca03e715ee5519"
usecases:
- messaging

View file

@ -24,3 +24,6 @@ project_status:
mainnet: true mainnet: true
have_token: false have_token: false
usecases:
- VPN

View file

@ -46,3 +46,6 @@ compliance: false
storage: storage:
decentralized: true decentralized: true
usecases:
- storage

View file

@ -50,3 +50,6 @@ 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:
- infrastructure

View file

@ -13,3 +13,5 @@ links:
telegram: https://t.me/+D0CulDl9udZjMWIx telegram: https://t.me/+D0CulDl9udZjMWIx
have_token: false have_token: false
sunset: false sunset: false
usecases: [ai]

View file

@ -7,3 +7,6 @@ links:
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
usecases:
- FHE

View file

@ -10,3 +10,6 @@ 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
usecases:
- FHE

View file

@ -52,3 +52,6 @@ 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:
- did

View file

@ -41,3 +41,6 @@ project_status:
mainnet: true mainnet: true
have_token: false have_token: false
usecases:
- VPN

View file

@ -13,3 +13,6 @@ 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
usecases:
- FHE

View file

@ -29,3 +29,6 @@ project_status:
mainnet: false mainnet: false
have_token: false have_token: false
usecases:
- layer-2

View file

@ -33,3 +33,6 @@ tokens:
symbol: $KINTO symbol: $KINTO
network: Kinto network: Kinto
contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87" contract_address: "0x010700808D59d2bb92257fCafACfe8e5bFF7aB87"
usecases:
- Layer-2

View file

@ -57,3 +57,6 @@ traceability:
sign_in_type_requirments: wallet sign_in_type_requirments: wallet
third_party_dependency: false third_party_dependency: false
compliance: false compliance: false
usecases:
- dapps

View file

@ -38,3 +38,6 @@ traceability:
kyc: false kyc: false
third_party_dependency: false third_party_dependency: false
compliance: false compliance: false
usecases:
- computing-network

View file

@ -22,3 +22,6 @@ project_status:
mainnet: true mainnet: true
have_token: false have_token: false
usecases:
- bridge

View file

@ -19,3 +19,5 @@ tokens:
network: Ethereum network: Ethereum
contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b" contract_address: "0xe0c8b298db4cffe05d1bea0bb1ba414522b33c1b"
sunset: false sunset: false
usecases: [ai]

View file

@ -16,3 +16,5 @@ tokens:
network: Ethereum network: Ethereum
contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98" contract_address: "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98"
sunset: false sunset: false
usecases: [ai]

View file

@ -12,3 +12,6 @@ links:
twitter: https://x.com/origin_trail twitter: https://x.com/origin_trail
discord: https://discord.com/invite/QctFuPCMew discord: https://discord.com/invite/QctFuPCMew
telegram: https://t.me/origintrail telegram: https://t.me/origintrail
usecases:
ai

View file

@ -48,3 +48,5 @@ traceability:
sign_in_type_requirments: wallet sign_in_type_requirments: wallet
third_party_dependency: false third_party_dependency: false
compliance: false compliance: false
usecases: [ai]

View file

@ -69,3 +69,6 @@ audits:
storage: storage:
decentralized: true decentralized: true
usecases:
- browser

View file

@ -11,3 +11,6 @@ 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
usecases:
- FHE

View file

@ -41,3 +41,6 @@ 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:
- wallets

View file

@ -28,3 +28,6 @@ project_status:
mainnet: false mainnet: false
have_token: false have_token: false
usecases:
- Hardware

View file

@ -13,3 +13,5 @@ links:
telegram: https://t.me/+N6HLxnRL_WE5ZDVl telegram: https://t.me/+N6HLxnRL_WE5ZDVl
have_token: false have_token: false
sunset: false sunset: false
usecases: [ai]

View file

@ -51,3 +51,5 @@ traceability:
kyc: false kyc: false
third_party_dependency: false third_party_dependency: false
compliance: false compliance: false
usecases: [ai]

View file

@ -35,3 +35,6 @@ traceability:
sign_in_type_requirments: wallet sign_in_type_requirments: wallet
third_party_dependency: false third_party_dependency: false
compliance: false compliance: false
usecases:
- dapps

View file

@ -37,3 +37,6 @@ compliance: false
storage: storage:
decentralized: true decentralized: true
usecases:
- did

View file

@ -47,3 +47,6 @@ audits:
link: https://www.sentz.com/developers/audits link: https://www.sentz.com/developers/audits
assets_used: [EUSD] assets_used: [EUSD]
usecases:
- dapps

View file

@ -13,3 +13,5 @@ links:
telegram: https://t.me/sightai telegram: https://t.me/sightai
have_token: false have_token: false
sunset: false sunset: false
usecases: [ai]

View file

@ -11,3 +11,5 @@ links:
technology: technology:
type: halo2 type: halo2
features: [""] features: [""]
usecases: infrastructure

View file

@ -7,3 +7,6 @@ links:
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
usecases:
- FHE

View file

@ -12,3 +12,5 @@ links:
telegram: https://t.me/superprotocol telegram: https://t.me/superprotocol
have_token: false have_token: false
sunset: false sunset: false
usecases: [ai]

View file

@ -24,3 +24,6 @@ project_status:
mainnet: true mainnet: true
have_token: false have_token: false
usecases:
- kyc

View file

@ -25,3 +25,6 @@ project_status:
live_status: true live_status: true
have_token: false have_token: false
usecases:
- computing-network

View file

@ -29,3 +29,6 @@ tokens:
symbol: $FOUR symbol: $FOUR
network: Ethereum network: Ethereum
contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0" contract_address: "0x4730fb1463a6f1f44aeb45f6c5c422427f37f4d0"
usecases:
- messaging

View file

@ -7,3 +7,5 @@ links:
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: [ai]

View file

@ -50,3 +50,6 @@ compliance: false
storage: storage:
decentralized: true decentralized: true
usecases:
- dapps

View file

@ -7,3 +7,6 @@ team:
links: links:
web: https://www.zama.ai web: https://www.zama.ai
docs: https://docs.zama.ai/ docs: https://docs.zama.ai/
usecases:
- FHE

View file

@ -12,3 +12,5 @@ links:
telegram: https://t.me/ZkAGI_AI telegram: https://t.me/ZkAGI_AI
have_token: false have_token: false
sunset: false sunset: false
usecases: [ai]

View file

@ -16,3 +16,6 @@ project_status:
mainnet: false mainnet: false
have_token: false have_token: false
sunset: false sunset: false
usecases:
- nft

View file

@ -11,3 +11,6 @@ links:
facebook: https://www.facebook.com/aesirxio facebook: https://www.facebook.com/aesirxio
telegram: https://t.me/aesirx_official_community telegram: https://t.me/aesirx_official_community
have_token: true have_token: true
usecases:
- did

View file

@ -12,3 +12,6 @@ links:
blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e blog: https://medium.com/platon-network/manual-alaya-network-0-16-2-spirit-version-upgrade-operation-manual-643d92c4971e
team: team:
anonymous: true anonymous: true
usecases:
- computing-network

View file

@ -35,3 +35,6 @@ storage:
decentralized: true decentralized: true
compliance: false compliance: false
third_party_dependency: false third_party_dependency: false
usecases:
- infrastructure

View file

@ -20,3 +20,6 @@ team:
anonymous: false anonymous: false
company: company:
link: https://alephzero.org/the-team link: https://alephzero.org/the-team
usecases:
- computing-network

View file

@ -15,3 +15,6 @@ project_status:
version: mainnet version: mainnet
testnet: false testnet: false
mainnet: true mainnet: true
usecases:
- messaging

View file

@ -11,3 +11,6 @@ links:
twitter: https://x.com/AnagolayNet twitter: https://x.com/AnagolayNet
discord: https://discord.com/invite/WHe4EuY discord: https://discord.com/invite/WHe4EuY
have_token: true have_token: true
usecases:
- did

View file

@ -28,3 +28,6 @@ blockchain_features:
storage: storage:
decentralized: true decentralized: true
usecases:
- infrastructure

View file

@ -13,3 +13,6 @@ links:
technology: technology:
type: zk, circom, rsa type: zk, circom, rsa
features: [""] features: [""]
usecases:
- DID

View file

@ -3,3 +3,6 @@ categories: [applications]
description: "Private wallet" description: "Private wallet"
links: links:
web: https://t.me/anoneroapks web: https://t.me/anoneroapks
usecases:
- wallets

View file

@ -8,3 +8,6 @@ links:
blog: https://www.anonybit.io/blog/ blog: https://www.anonybit.io/blog/
twitter: https://x.com/Anonybit1 twitter: https://x.com/Anonybit1
have_token: true have_token: true
usecases:
- did

View file

@ -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." description: "A privacy tool known as a mixer, which we developed to utilize zk-SNARKs technology to increase anonymity."
links: links:
web: https://incognito.anonzk.io web: https://incognito.anonzk.io
usecases:
- mixing-service

View file

@ -7,3 +7,6 @@ links:
blog: https://anydao.medium.com/ blog: https://anydao.medium.com/
twitter: https://x.com/0xAnyDAO twitter: https://x.com/0xAnyDAO
telegram: https://t.me/AnyDAO telegram: https://t.me/AnyDAO
usecases:
- dao

View file

@ -9,3 +9,6 @@ links:
twitter: https://twitter.com/anytypelabs twitter: https://twitter.com/anytypelabs
telegram: https://t.me/anytype telegram: https://t.me/anytype
youtube: https://www.youtube.com/c/anytype youtube: https://www.youtube.com/c/anytype
usecases:
- infrastructure

View file

@ -4,3 +4,6 @@ description: "New supported format by Arcana preserving privacy within NFT minti
links: links:
web: https://arcana.network/blog/launching-private-nfts-on-arcana/ web: https://arcana.network/blog/launching-private-nfts-on-arcana/
github: https://docs.beta.arcana.network/docs/conceptpvtnft/ github: https://docs.beta.arcana.network/docs/conceptpvtnft/
usecases:
- nft

View file

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

View file

@ -18,3 +18,6 @@ links:
telegram: https://t.me/arpa_community telegram: https://t.me/arpa_community
team: team:
anonymous: true anonymous: true
usecases:
- computing-network

View file

@ -8,3 +8,6 @@ links:
blog: https://asmatch.medium.com/ blog: https://asmatch.medium.com/
twitter: https://x.com/AsMatchApp twitter: https://x.com/AsMatchApp
discord: https://discord.com/invite/yqUWDdyfX9 discord: https://discord.com/invite/yqUWDdyfX9
usecases:
- dapps

View file

@ -17,3 +17,6 @@ links:
twitter: https://twitter.com/Asterizm_layer twitter: https://twitter.com/Asterizm_layer
discord: https://discord.gg/z5QVerD48C discord: https://discord.gg/z5QVerD48C
telegram: https://t.me/asterizm_protocol telegram: https://t.me/asterizm_protocol
usecases:
- infrastructure

View file

@ -1,19 +1,21 @@
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:
- infrastructure

View file

@ -16,3 +16,6 @@ project_status:
version: "" version: ""
testnet: true testnet: true
mainnet: false mainnet: false
usecases:
- infrastructure

View file

@ -14,3 +14,6 @@ team:
anonymous: false anonymous: false
company: company:
link: https://www.mysterium.network/team link: https://www.mysterium.network/team
usecases:
- hardware

View file

@ -7,3 +7,6 @@ links:
blog: https://medium.com/@axiatel blog: https://medium.com/@axiatel
team: team:
anonymous: true anonymous: true
usecases:
- hardware

View file

@ -1,8 +1,11 @@
name: Aztec Connect name: Aztec Connect
categories: [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:
- bridge

View file

@ -10,3 +10,6 @@ links:
discord: https://discord.com/invite/BATBrigade discord: https://discord.com/invite/BATBrigade
team: team:
anonymous: false anonymous: false
usecases:
- currency

View file

@ -50,3 +50,6 @@ project_status:
version: Mainnet version: Mainnet
testnet: false testnet: false
mainnet: true mainnet: true
usecases:
- defi

View file

@ -16,3 +16,6 @@ project_status:
version: mainnet version: mainnet
testnet: false testnet: false
mainnet: true mainnet: true
usecases:
- messaging

View file

@ -12,3 +12,6 @@ project_status:
version: "" version: ""
testnet: false testnet: false
mainnet: false mainnet: false
usecases:
- wallets

View file

@ -15,3 +15,6 @@ project_status:
version: "Mainnet" version: "Mainnet"
team: team:
anonymous: false anonymous: false
usecases:
- currency

View file

@ -15,3 +15,6 @@ links:
twitter: https://x.com/beepoapp twitter: https://x.com/beepoapp
discord: https://discord.com/invite/DhYJGgAVzR discord: https://discord.com/invite/DhYJGgAVzR
telegram: https://t.me/beepoapp telegram: https://t.me/beepoapp
usecases:
- messaging

View file

@ -18,3 +18,6 @@ links:
telegram: https://t.me/official_beldex telegram: https://t.me/official_beldex
team: team:
anonymous: false anonymous: false
usecases:
- currency

View file

@ -8,3 +8,6 @@ links:
blog: https://medium.com/@bmdaadmin blog: https://medium.com/@bmdaadmin
twitter: https://x.com/BermudaEth twitter: https://x.com/BermudaEth
telegram: https://t.me/bermudaportal telegram: https://t.me/bermudaportal
usecases:
- dapps

View file

@ -14,3 +14,6 @@ tokens:
symbol: BIDS symbol: BIDS
network: Ethereum network: Ethereum
contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F" contract_address: "0xA53e968b8d8a5Be52d66e5BB35d9b6B6B5A5CD2F"
usecases:
- nft

View file

@ -64,3 +64,6 @@ project_status:
version: Mainnet version: Mainnet
testnet: false testnet: false
mainnet: true mainnet: true
usecases:
- defi

View file

@ -15,3 +15,6 @@ links:
telegram: https://t.me/BlackHatCoin telegram: https://t.me/BlackHatCoin
team: team:
anonymous: true anonymous: true
usecases:
- currency

View file

@ -18,3 +18,6 @@ project_status:
version: 2.0.6 version: 2.0.6
testnet: false testnet: false
mainnet: false mainnet: false
usecases:
- wallets

View file

@ -14,3 +14,6 @@ project_status:
version: v.1.2.9 version: v.1.2.9
testnet: false testnet: false
mainnet: false mainnet: false
usecases:
- wallets

View file

@ -3,3 +3,6 @@ categories: [applications]
description: "The new way to upload files anonymously and without censorship." description: "The new way to upload files anonymously and without censorship."
links: links:
web: https://blockyfile.org web: https://blockyfile.org
usecases:
- dapps

View file

@ -4,3 +4,6 @@ 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:
- nft

View file

@ -13,3 +13,6 @@ links:
telegram: https://t.me/zkbobcommunity telegram: https://t.me/zkbobcommunity
team: team:
anonymous: true anonymous: true
usecases:
- currency

View file

@ -11,3 +11,6 @@ links:
telegram: https://t.me/boltzhq telegram: https://t.me/boltzhq
team: team:
anonymous: true anonymous: true
usecases:
- currency

View file

@ -10,3 +10,6 @@ team:
have_token: true have_token: true
token_link: https://coinmarketcap.com/currencies/boring-protocol/ token_link: https://coinmarketcap.com/currencies/boring-protocol/
sunset: true sunset: true
usecases:
- vpn

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