mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
feat: add ids based on folder name
This commit is contained in:
parent
f807a8ca9f
commit
183358c960
427 changed files with 532 additions and 119 deletions
61
script.py
61
script.py
|
@ -1,39 +1,42 @@
|
||||||
import os
|
import os
|
||||||
|
import yaml
|
||||||
|
|
||||||
# Cesta ke složce, kde jsou projekty
|
# Cesta ke složce, kde jsou projekty
|
||||||
projects_folder = './src/projects'
|
projects_folder = './src/projects'
|
||||||
|
|
||||||
# Počítadla
|
# Funkce na úpravu YAML dat
|
||||||
total_folders = 0
|
def update_id_in_yaml(file_path, folder_name):
|
||||||
renamed_folders = 0
|
with open(file_path, 'r') as f:
|
||||||
skipped_folders = 0
|
try:
|
||||||
|
data = yaml.safe_load(f) or {} # Načte YAML nebo prázdný slovník
|
||||||
|
except yaml.YAMLError as exc:
|
||||||
|
print(f"Chyba při načítání {file_path}: {exc}")
|
||||||
|
return
|
||||||
|
|
||||||
|
# Vygeneruj ID na základě názvu složky (lowercase s pomlčkami)
|
||||||
|
new_id = folder_name.lower().replace(' ', '-').replace('_', '-')
|
||||||
|
|
||||||
|
# Zkontroluj, jestli již existuje ID, a porovnej
|
||||||
|
if 'id' in data:
|
||||||
|
print(f"Soubor {file_path} již má ID '{data['id']}', nahrazuji s '{new_id}'")
|
||||||
|
else:
|
||||||
|
print(f"Soubor {file_path} nemá ID, přidávám '{new_id}'")
|
||||||
|
|
||||||
# Projde všechny složky v složce projects
|
# Aktualizuj nebo přidej ID na začátek dat
|
||||||
|
data['id'] = new_id
|
||||||
|
|
||||||
|
# Ulož aktualizovaný soubor zpět
|
||||||
|
with open(file_path, 'w') as f:
|
||||||
|
yaml.dump(data, f, default_flow_style=False, sort_keys=False)
|
||||||
|
|
||||||
|
# Projde všechny složky ve složce projects
|
||||||
for root, dirs, files in os.walk(projects_folder):
|
for root, dirs, files in os.walk(projects_folder):
|
||||||
for dir_name in dirs:
|
for dir_name in dirs:
|
||||||
total_folders += 1 # Započítáme každou složku
|
folder_path = os.path.join(root, dir_name)
|
||||||
|
index_file = os.path.join(folder_path, 'index.yaml')
|
||||||
|
|
||||||
# Získáme původní cestu ke složce
|
# Zkontroluj, jestli soubor 'index.yaml' existuje
|
||||||
original_path = os.path.join(root, dir_name)
|
if os.path.exists(index_file):
|
||||||
|
update_id_in_yaml(index_file, dir_name)
|
||||||
# Převést název složky na lowercase a nahradit mezery a podtržítka pomlčkami
|
|
||||||
new_dir_name = dir_name.lower().replace(' ', '-').replace('_', '-')
|
|
||||||
new_path = os.path.join(root, new_dir_name)
|
|
||||||
|
|
||||||
# Pokud je původní název jiný než nový (abychom předešli zbytečným přejmenováním)
|
|
||||||
if original_path != new_path:
|
|
||||||
try:
|
|
||||||
os.rename(original_path, new_path)
|
|
||||||
print(f"Přejmenovávám složku: '{original_path}' -> '{new_path}'")
|
|
||||||
renamed_folders += 1
|
|
||||||
except OSError as e:
|
|
||||||
print(f"Chyba při přejmenování složky {original_path}: {e}")
|
|
||||||
else:
|
else:
|
||||||
print(f"Složka '{original_path}' již má správný název, preskakuji.")
|
print(f"Soubor {index_file} neexistuje, preskakuji.")
|
||||||
skipped_folders += 1
|
|
||||||
|
|
||||||
# Výsledný souhrn
|
|
||||||
print("\n--- SOUHRN ---")
|
|
||||||
print(f"Celkový počet složek: {total_folders}")
|
|
||||||
print(f"Počet přejmenovaných složek: {renamed_folders}")
|
|
||||||
print(f"Počet přeskočených složek (již správné): {skipped_folders}")
|
|
||||||
|
|
|
@ -12,3 +12,4 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: 01-labs
|
||||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: 0xtip
|
||||||
|
|
|
@ -14,3 +14,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: '1984'
|
||||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
||||||
- rpc-provider
|
- rpc-provider
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: 1rpc
|
||||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: 2fa-guru
|
||||||
|
|
|
@ -20,3 +20,4 @@ sunset: false
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: actilist
|
||||||
|
|
|
@ -15,3 +15,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: aesirx-web3-id
|
||||||
|
|
|
@ -22,3 +22,4 @@ usecases:
|
||||||
- computing
|
- computing
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: alaya
|
||||||
|
|
|
@ -43,3 +43,4 @@ third_party_dependency: false
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
|
id: aleo
|
||||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
||||||
- computing
|
- computing
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: aleph-zero
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- messaging
|
- messaging
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: alter
|
||||||
|
|
|
@ -15,3 +15,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anagolay
|
||||||
|
|
|
@ -37,3 +37,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anoma
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- did
|
- did
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anon-aadhaar
|
||||||
|
|
|
@ -8,3 +8,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anon-nero
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
id: anon-club
|
id: anonklub
|
||||||
name: AnonKlub
|
name: AnonKlub
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
|
|
@ -14,3 +14,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anonybit
|
||||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anonzk-incognito
|
||||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
||||||
- dao
|
- dao
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anydao
|
||||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: anytype
|
||||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: arcana-s-private-nft
|
||||||
|
|
|
@ -31,3 +31,4 @@ tokens:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: arcana
|
||||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
||||||
- computing
|
- computing
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: arpa
|
||||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: asmatch
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: asterizm
|
||||||
|
|
|
@ -18,3 +18,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: auth3
|
||||||
|
|
|
@ -21,3 +21,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: automata-network
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: avado
|
||||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: axiatel
|
||||||
|
|
|
@ -11,3 +11,4 @@ usecases:
|
||||||
- bridge
|
- bridge
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: aztec-connect
|
||||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: basic-attention-token
|
||||||
|
|
|
@ -55,3 +55,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
|
id: basicswap
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- messaging
|
- messaging
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: bcchat
|
||||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: beam-wallet
|
||||||
|
|
|
@ -24,3 +24,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: beam
|
||||||
|
|
|
@ -22,3 +22,4 @@ usecases:
|
||||||
- messaging
|
- messaging
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: beepo
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: beldex
|
||||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: bermuda
|
||||||
|
|
|
@ -19,3 +19,4 @@ tokens:
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: bidshop
|
||||||
|
|
|
@ -68,3 +68,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
|
id: blackbox
|
||||||
|
|
|
@ -23,3 +23,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: blockwallet
|
||||||
|
|
|
@ -8,3 +8,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: blockyfile
|
||||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: bluum
|
||||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: boltz
|
||||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
||||||
- alliances
|
- alliances
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: bpsaa
|
||||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: brace
|
||||||
|
|
|
@ -12,3 +12,4 @@ usecases:
|
||||||
- browser
|
- browser
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: brave
|
||||||
|
|
|
@ -15,3 +15,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: brightid
|
||||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: bringing-privacy-to-ens
|
||||||
|
|
|
@ -12,3 +12,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: buildoor
|
||||||
|
|
|
@ -24,3 +24,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: burstiq
|
||||||
|
|
|
@ -20,3 +20,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cake-wallet
|
||||||
|
|
|
@ -19,3 +19,4 @@ usecases:
|
||||||
- operation-systems
|
- operation-systems
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: calyxos
|
||||||
|
|
|
@ -18,3 +18,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cape
|
||||||
|
|
|
@ -12,3 +12,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cerebrum
|
||||||
|
|
|
@ -18,3 +18,4 @@ sunset: false
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: certup
|
||||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cheqd
|
||||||
|
|
|
@ -22,3 +22,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: chimp-exchange
|
||||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cia-protocol
|
||||||
|
|
|
@ -11,3 +11,4 @@ usecases:
|
||||||
- data-management
|
- data-management
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cirus-foundation
|
||||||
|
|
|
@ -11,3 +11,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cog
|
||||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: coinbook
|
||||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: coinomize
|
||||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: coinshuffle
|
||||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: colossusxt
|
||||||
|
|
|
@ -19,3 +19,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: comit-network
|
||||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: common
|
||||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: conceal-network
|
||||||
|
|
|
@ -29,3 +29,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: concordium
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cool-wallet
|
||||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
||||||
- storage
|
- storage
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: crust
|
||||||
|
|
|
@ -26,3 +26,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: crypviser-secure-messenger
|
||||||
|
|
|
@ -45,3 +45,4 @@ audits:
|
||||||
usecases:
|
usecases:
|
||||||
- dao
|
- dao
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cultdao
|
||||||
|
|
|
@ -30,3 +30,4 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: cyclone
|
||||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: damus
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: dappnode
|
||||||
|
|
|
@ -18,3 +18,4 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: darkfi
|
||||||
|
|
|
@ -14,3 +14,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: dauth-network
|
||||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
||||||
- browser
|
- browser
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: decentr
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: decred
|
||||||
|
|
|
@ -20,3 +20,4 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: deeper-network
|
||||||
|
|
|
@ -1,60 +1,59 @@
|
||||||
#PROJECT DESCRIPTION -------------------------------------------------------------
|
|
||||||
name: DeepOnion
|
name: DeepOnion
|
||||||
categories: [applications]
|
categories:
|
||||||
assets_used: ["ZK-SNARKS", "TOR-NETWORK"]
|
- applications
|
||||||
ecosystem: [deeponion-network]
|
assets_used:
|
||||||
|
- ZK-SNARKS
|
||||||
|
- TOR-NETWORK
|
||||||
|
ecosystem:
|
||||||
|
- deeponion-network
|
||||||
project_type: Hybrid cryptocurrency
|
project_type: Hybrid cryptocurrency
|
||||||
description: DeepOnion (ONION) is a decentralized, open-source, community-driven cryptocurrency that offers multi-layered privacy and everyday use cases. It uses an x13 hybrid PoW/PoS to secure the network. DeepOnion is one of the earliest cryptos to integrate the Tor network into the wallet, which has not leaked any IP addresses since its release on 12 July 2017.
|
description: DeepOnion (ONION) is a decentralized, open-source, community-driven cryptocurrency
|
||||||
|
that offers multi-layered privacy and everyday use cases. It uses an x13 hybrid
|
||||||
|
PoW/PoS to secure the network. DeepOnion is one of the earliest cryptos to integrate
|
||||||
|
the Tor network into the wallet, which has not leaked any IP addresses since its
|
||||||
|
release on 12 July 2017.
|
||||||
product_readiness: Mainnet
|
product_readiness: Mainnet
|
||||||
product_launch_day: "2017-07-12"
|
product_launch_day: '2017-07-12'
|
||||||
|
|
||||||
have_token: true
|
have_token: true
|
||||||
tokens:
|
tokens:
|
||||||
- name: DeepOnion
|
- name: DeepOnion
|
||||||
symbol: ONION
|
symbol: ONION
|
||||||
network: DeepOnion Network
|
network: DeepOnion Network
|
||||||
fee: 0.0001 ONION/kB
|
fee: 0.0001 ONION/kB
|
||||||
|
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Deeper
|
- name: Deeper
|
||||||
role: Marketing Manager
|
role: Marketing Manager
|
||||||
link: https://deeponion.org/community/members/deeper.2/
|
link: https://deeponion.org/community/members/deeper.2/
|
||||||
- name: Monocolor
|
- name: Monocolor
|
||||||
role: Lead Blockchain Developer
|
role: Lead Blockchain Developer
|
||||||
link: https://deeponion.org/community/members/monocolor.207/
|
link: https://deeponion.org/community/members/monocolor.207/
|
||||||
- name: Nezero
|
- name: Nezero
|
||||||
role: Blockchain Developer
|
role: Blockchain Developer
|
||||||
link: https://deeponion.org/community/members/nezero.1858/
|
link: https://deeponion.org/community/members/nezero.1858/
|
||||||
- name: Obszoenling
|
- name: Obszoenling
|
||||||
role: Blockchain Developer
|
role: Blockchain Developer
|
||||||
link: https://deeponion.org/community/members/obszoenling.414/
|
link: https://deeponion.org/community/members/obszoenling.414/
|
||||||
- name: Impressive
|
- name: Impressive
|
||||||
role: Web Developer
|
role: Web Developer
|
||||||
link: https://deeponion.org/community/members/impressive.2278/
|
link: https://deeponion.org/community/members/impressive.2278/
|
||||||
- name: DogLover
|
- name: DogLover
|
||||||
role: Web Developer
|
role: Web Developer
|
||||||
link: https://deeponion.org/community/members/doglover.2258/
|
link: https://deeponion.org/community/members/doglover.2258/
|
||||||
|
|
||||||
funding:
|
funding:
|
||||||
name: Community Contributions
|
name: Community Contributions
|
||||||
type: Community Support
|
type: Community Support
|
||||||
link: https://deeponion.org/community
|
link: https://deeponion.org/community
|
||||||
value: Not applicable
|
value: Not applicable
|
||||||
time: Ongoing
|
time: Ongoing
|
||||||
|
|
||||||
sunset: false
|
sunset: false
|
||||||
|
|
||||||
# LINKS ---------------------------------------------------------------------
|
|
||||||
links:
|
links:
|
||||||
web: https://deeponion.org
|
web: https://deeponion.org
|
||||||
github: https://github.com/deeponion/deeponion/
|
github: https://github.com/deeponion/deeponion/
|
||||||
block_explorer: https://explorer.deeponion.org/
|
block_explorer: https://explorer.deeponion.org/
|
||||||
forum: https://deeponion.org/community/
|
forum: https://deeponion.org/community/
|
||||||
whitepaper: https://deeponion.org/White-Paper.pdf
|
whitepaper: https://deeponion.org/White-Paper.pdf
|
||||||
|
|
||||||
twitter: https://twitter.com/TheDeepOnion
|
twitter: https://twitter.com/TheDeepOnion
|
||||||
facebook: https://www.facebook.com/deeponionx
|
facebook: https://www.facebook.com/deeponionx
|
||||||
telegram: https://t.me/getdeeponion
|
telegram: https://t.me/getdeeponion
|
||||||
|
@ -62,23 +61,19 @@ links:
|
||||||
gettr: https://gettr.com/user/deeponion
|
gettr: https://gettr.com/user/deeponion
|
||||||
rumble: https://rumble.com/user/DeepOnion
|
rumble: https://rumble.com/user/DeepOnion
|
||||||
primal: http://primal.net/p/npub1l3h54332pdmwnvyg83fsd5g6cfsrdf75mqy3fnh8nxhls0gr2eysm5hucr
|
primal: http://primal.net/p/npub1l3h54332pdmwnvyg83fsd5g6cfsrdf75mqy3fnh8nxhls0gr2eysm5hucr
|
||||||
|
|
||||||
education: https://deeponion.org/#academy
|
education: https://deeponion.org/#academy
|
||||||
|
|
||||||
# TECHNOLOGY ---------------------------------------------------------------------
|
|
||||||
technology:
|
technology:
|
||||||
type: x13 PoW & PoS
|
type: x13 PoW & PoS
|
||||||
features:
|
features:
|
||||||
- Private wallet
|
- Private wallet
|
||||||
- Hybrid - PoW & PoS
|
- Hybrid - PoW & PoS
|
||||||
- ZK-Snarks for privacy
|
- ZK-Snarks for privacy
|
||||||
- TOR Network integration
|
- TOR Network integration
|
||||||
- DeepSend for transaction masking
|
- DeepSend for transaction masking
|
||||||
- DeepVault for file verification
|
- DeepVault for file verification
|
||||||
- DeepProtocol for encrypted messaging
|
- DeepProtocol for encrypted messaging
|
||||||
- DeepOnionJ for Java integration
|
- DeepOnionJ for Java integration
|
||||||
- VoteCentral for community governance
|
- VoteCentral for community governance
|
||||||
|
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
encryption: zksnark
|
encryption: zksnark
|
||||||
opensource: true
|
opensource: true
|
||||||
|
@ -86,36 +81,28 @@ blockchain_features:
|
||||||
frontend_anonymity: TOR addresses
|
frontend_anonymity: TOR addresses
|
||||||
asset_custody_type: non-custodial
|
asset_custody_type: non-custodial
|
||||||
p2p: true
|
p2p: true
|
||||||
|
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: V2.3.3
|
version: V2.3.3
|
||||||
testnet: false
|
testnet: false
|
||||||
mainnet: true
|
mainnet: true
|
||||||
|
|
||||||
client_diversability:
|
client_diversability:
|
||||||
name: DeepOnion Wallet
|
name: DeepOnion Wallet
|
||||||
link: https://deeponion.org/#download
|
link: https://deeponion.org/#download
|
||||||
|
|
||||||
# PRIVACY ---------------------------------------------------------------------
|
|
||||||
licences: General Public License
|
licences: General Public License
|
||||||
|
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: true
|
defined: true
|
||||||
link: https://deeponion.org/privacypolicy.html
|
link: https://deeponion.org/privacypolicy.html
|
||||||
data_usage: Not using
|
data_usage: Not using
|
||||||
|
|
||||||
tracebility:
|
tracebility:
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirements: wallet
|
sign_in_type_requirements: wallet
|
||||||
|
|
||||||
compliance: none
|
compliance: none
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
# SECURITY ---------------------------------------------------------------------
|
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
social_trust: DeepOnion uses a multisig system for governance decisions and has a DAO for community voting.
|
social_trust: DeepOnion uses a multisig system for governance decisions and has a
|
||||||
|
DAO for community voting.
|
||||||
usecases: [currency]
|
usecases:
|
||||||
|
- currency
|
||||||
|
id: deeponion
|
||||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: definer
|
||||||
|
|
|
@ -15,3 +15,4 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: demox-labs
|
||||||
|
|
|
@ -21,3 +21,4 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: dero
|
||||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
||||||
- rpc-provider
|
- rpc-provider
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: derp
|
||||||
|
|
|
@ -19,3 +19,4 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: discreet-labs
|
||||||
|
|
|
@ -23,3 +23,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: discreet
|
||||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: diva
|
||||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
||||||
- operation-systems
|
- operation-systems
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: divestos
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- storage
|
- storage
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: djib
|
||||||
|
|
|
@ -16,3 +16,4 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: dmail-network
|
||||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: dusk-network
|
||||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: ecash
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: edge
|
||||||
|
|
|
@ -20,3 +20,4 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: electric-coin-co
|
||||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: elite
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: elusiv
|
||||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
id: email-wallet
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue