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 yaml
|
||||
|
||||
# Cesta ke složce, kde jsou projekty
|
||||
projects_folder = './src/projects'
|
||||
|
||||
# Počítadla
|
||||
total_folders = 0
|
||||
renamed_folders = 0
|
||||
skipped_folders = 0
|
||||
# Funkce na úpravu YAML dat
|
||||
def update_id_in_yaml(file_path, folder_name):
|
||||
with open(file_path, 'r') as f:
|
||||
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
|
||||
|
||||
# Projde všechny složky v složce projects
|
||||
# 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}'")
|
||||
|
||||
# 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 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
|
||||
original_path = os.path.join(root, 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}")
|
||||
# Zkontroluj, jestli soubor 'index.yaml' existuje
|
||||
if os.path.exists(index_file):
|
||||
update_id_in_yaml(index_file, dir_name)
|
||||
else:
|
||||
print(f"Složka '{original_path}' již má správný název, 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}")
|
||||
print(f"Soubor {index_file} neexistuje, preskakuji.")
|
||||
|
|
|
@ -12,3 +12,4 @@ usecases:
|
|||
- research-and-development
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: 01-labs
|
||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
|||
- mixing-service
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: 0xtip
|
||||
|
|
|
@ -14,3 +14,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: '1984'
|
||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
|||
- rpc-provider
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: 1rpc
|
||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: 2fa-guru
|
||||
|
|
|
@ -20,3 +20,4 @@ sunset: false
|
|||
usecases:
|
||||
- nft-community
|
||||
third_party_dependency: false
|
||||
id: actilist
|
||||
|
|
|
@ -15,3 +15,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: aesirx-web3-id
|
||||
|
|
|
@ -22,3 +22,4 @@ usecases:
|
|||
- computing
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: alaya
|
||||
|
|
|
@ -43,3 +43,4 @@ third_party_dependency: false
|
|||
usecases:
|
||||
- infrastructure
|
||||
have_token: false
|
||||
id: aleo
|
||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
|||
- computing
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: aleph-zero
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- messaging
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: alter
|
||||
|
|
|
@ -15,3 +15,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: anagolay
|
||||
|
|
|
@ -37,3 +37,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: anoma
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- did
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: anon-aadhaar
|
||||
|
|
|
@ -8,3 +8,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: anon-nero
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
id: anon-club
|
||||
id: anonklub
|
||||
name: AnonKlub
|
||||
categories:
|
||||
- applications
|
||||
|
|
|
@ -14,3 +14,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: anonybit
|
||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
|||
- mixing-service
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: anonzk-incognito
|
||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
|||
- dao
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: anydao
|
||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: anytype
|
||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
|||
- nft-community
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: arcana-s-private-nft
|
||||
|
|
|
@ -31,3 +31,4 @@ tokens:
|
|||
usecases:
|
||||
- infrastructure
|
||||
third_party_dependency: false
|
||||
id: arcana
|
||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
|||
- computing
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: arpa
|
||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: asmatch
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: asterizm
|
||||
|
|
|
@ -18,3 +18,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: auth3
|
||||
|
|
|
@ -21,3 +21,4 @@ project_status:
|
|||
usecases:
|
||||
- infrastructure
|
||||
third_party_dependency: false
|
||||
id: automata-network
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- hardware
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: avado
|
||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
|||
- hardware
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: axiatel
|
||||
|
|
|
@ -11,3 +11,4 @@ usecases:
|
|||
- bridge
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: aztec-connect
|
||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: basic-attention-token
|
||||
|
|
|
@ -55,3 +55,4 @@ project_status:
|
|||
usecases:
|
||||
- defi
|
||||
have_token: false
|
||||
id: basicswap
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- messaging
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: bcchat
|
||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: beam-wallet
|
||||
|
|
|
@ -24,3 +24,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: beam
|
||||
|
|
|
@ -22,3 +22,4 @@ usecases:
|
|||
- messaging
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: beepo
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: beldex
|
||||
|
|
|
@ -13,3 +13,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: bermuda
|
||||
|
|
|
@ -19,3 +19,4 @@ tokens:
|
|||
usecases:
|
||||
- nft-community
|
||||
third_party_dependency: false
|
||||
id: bidshop
|
||||
|
|
|
@ -68,3 +68,4 @@ project_status:
|
|||
usecases:
|
||||
- defi
|
||||
have_token: false
|
||||
id: blackbox
|
||||
|
|
|
@ -23,3 +23,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: blockwallet
|
||||
|
|
|
@ -8,3 +8,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: blockyfile
|
||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
|||
- nft-community
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: bluum
|
||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: boltz
|
||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
|||
- alliances
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: bpsaa
|
||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: brace
|
||||
|
|
|
@ -12,3 +12,4 @@ usecases:
|
|||
- browser
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: brave
|
||||
|
|
|
@ -15,3 +15,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: brightid
|
||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: bringing-privacy-to-ens
|
||||
|
|
|
@ -12,3 +12,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: buildoor
|
||||
|
|
|
@ -24,3 +24,4 @@ project_status:
|
|||
usecases:
|
||||
- infrastructure
|
||||
third_party_dependency: false
|
||||
id: burstiq
|
||||
|
|
|
@ -20,3 +20,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cake-wallet
|
||||
|
|
|
@ -19,3 +19,4 @@ usecases:
|
|||
- operation-systems
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: calyxos
|
||||
|
|
|
@ -18,3 +18,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cape
|
||||
|
|
|
@ -12,3 +12,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: cerebrum
|
||||
|
|
|
@ -18,3 +18,4 @@ sunset: false
|
|||
usecases:
|
||||
- nft-community
|
||||
third_party_dependency: false
|
||||
id: certup
|
||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cheqd
|
||||
|
|
|
@ -22,3 +22,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: chimp-exchange
|
||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cia-protocol
|
||||
|
|
|
@ -11,3 +11,4 @@ usecases:
|
|||
- data-management
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cirus-foundation
|
||||
|
|
|
@ -11,3 +11,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cog
|
||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: coinbook
|
||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
|||
- mixing-service
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: coinomize
|
||||
|
|
|
@ -9,3 +9,4 @@ usecases:
|
|||
- mixing-service
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: coinshuffle
|
||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: colossusxt
|
||||
|
|
|
@ -19,3 +19,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: comit-network
|
||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: common
|
||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: conceal-network
|
||||
|
|
|
@ -29,3 +29,4 @@ project_status:
|
|||
usecases:
|
||||
- infrastructure
|
||||
third_party_dependency: false
|
||||
id: concordium
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cool-wallet
|
||||
|
|
|
@ -26,3 +26,4 @@ usecases:
|
|||
- storage
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: crust
|
||||
|
|
|
@ -26,3 +26,4 @@ project_status:
|
|||
usecases:
|
||||
- messaging
|
||||
third_party_dependency: false
|
||||
id: crypviser-secure-messenger
|
||||
|
|
|
@ -45,3 +45,4 @@ audits:
|
|||
usecases:
|
||||
- dao
|
||||
third_party_dependency: false
|
||||
id: cultdao
|
||||
|
|
|
@ -30,3 +30,4 @@ usecases:
|
|||
- mixing-service
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: cyclone
|
||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
|||
- dapps
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: damus
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- hardware
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: dappnode
|
||||
|
|
|
@ -18,3 +18,4 @@ usecases:
|
|||
- infrastructure
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: darkfi
|
||||
|
|
|
@ -14,3 +14,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: dauth-network
|
||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
|||
- browser
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: decentr
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: decred
|
||||
|
|
|
@ -20,3 +20,4 @@ usecases:
|
|||
- hardware
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: deeper-network
|
||||
|
|
|
@ -1,60 +1,59 @@
|
|||
#PROJECT DESCRIPTION -------------------------------------------------------------
|
||||
name: DeepOnion
|
||||
categories: [applications]
|
||||
assets_used: ["ZK-SNARKS", "TOR-NETWORK"]
|
||||
ecosystem: [deeponion-network]
|
||||
|
||||
categories:
|
||||
- applications
|
||||
assets_used:
|
||||
- ZK-SNARKS
|
||||
- TOR-NETWORK
|
||||
ecosystem:
|
||||
- deeponion-network
|
||||
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_launch_day: "2017-07-12"
|
||||
|
||||
product_launch_day: '2017-07-12'
|
||||
have_token: true
|
||||
tokens:
|
||||
- name: DeepOnion
|
||||
symbol: ONION
|
||||
network: DeepOnion Network
|
||||
fee: 0.0001 ONION/kB
|
||||
|
||||
- name: DeepOnion
|
||||
symbol: ONION
|
||||
network: DeepOnion Network
|
||||
fee: 0.0001 ONION/kB
|
||||
team:
|
||||
anonymous: true
|
||||
teammembers:
|
||||
- name: Deeper
|
||||
role: Marketing Manager
|
||||
link: https://deeponion.org/community/members/deeper.2/
|
||||
- name: Monocolor
|
||||
role: Lead Blockchain Developer
|
||||
link: https://deeponion.org/community/members/monocolor.207/
|
||||
- name: Nezero
|
||||
role: Blockchain Developer
|
||||
link: https://deeponion.org/community/members/nezero.1858/
|
||||
- name: Obszoenling
|
||||
role: Blockchain Developer
|
||||
link: https://deeponion.org/community/members/obszoenling.414/
|
||||
- name: Impressive
|
||||
role: Web Developer
|
||||
link: https://deeponion.org/community/members/impressive.2278/
|
||||
- name: DogLover
|
||||
role: Web Developer
|
||||
link: https://deeponion.org/community/members/doglover.2258/
|
||||
|
||||
- name: Deeper
|
||||
role: Marketing Manager
|
||||
link: https://deeponion.org/community/members/deeper.2/
|
||||
- name: Monocolor
|
||||
role: Lead Blockchain Developer
|
||||
link: https://deeponion.org/community/members/monocolor.207/
|
||||
- name: Nezero
|
||||
role: Blockchain Developer
|
||||
link: https://deeponion.org/community/members/nezero.1858/
|
||||
- name: Obszoenling
|
||||
role: Blockchain Developer
|
||||
link: https://deeponion.org/community/members/obszoenling.414/
|
||||
- name: Impressive
|
||||
role: Web Developer
|
||||
link: https://deeponion.org/community/members/impressive.2278/
|
||||
- name: DogLover
|
||||
role: Web Developer
|
||||
link: https://deeponion.org/community/members/doglover.2258/
|
||||
funding:
|
||||
name: Community Contributions
|
||||
type: Community Support
|
||||
link: https://deeponion.org/community
|
||||
value: Not applicable
|
||||
time: Ongoing
|
||||
|
||||
sunset: false
|
||||
|
||||
# LINKS ---------------------------------------------------------------------
|
||||
links:
|
||||
web: https://deeponion.org
|
||||
github: https://github.com/deeponion/deeponion/
|
||||
block_explorer: https://explorer.deeponion.org/
|
||||
forum: https://deeponion.org/community/
|
||||
whitepaper: https://deeponion.org/White-Paper.pdf
|
||||
|
||||
twitter: https://twitter.com/TheDeepOnion
|
||||
facebook: https://www.facebook.com/deeponionx
|
||||
telegram: https://t.me/getdeeponion
|
||||
|
@ -62,23 +61,19 @@ links:
|
|||
gettr: https://gettr.com/user/deeponion
|
||||
rumble: https://rumble.com/user/DeepOnion
|
||||
primal: http://primal.net/p/npub1l3h54332pdmwnvyg83fsd5g6cfsrdf75mqy3fnh8nxhls0gr2eysm5hucr
|
||||
|
||||
education: https://deeponion.org/#academy
|
||||
|
||||
# TECHNOLOGY ---------------------------------------------------------------------
|
||||
technology:
|
||||
type: x13 PoW & PoS
|
||||
features:
|
||||
- Private wallet
|
||||
- Hybrid - PoW & PoS
|
||||
- ZK-Snarks for privacy
|
||||
- TOR Network integration
|
||||
- DeepSend for transaction masking
|
||||
- DeepVault for file verification
|
||||
- DeepProtocol for encrypted messaging
|
||||
- DeepOnionJ for Java integration
|
||||
- VoteCentral for community governance
|
||||
|
||||
- Private wallet
|
||||
- Hybrid - PoW & PoS
|
||||
- ZK-Snarks for privacy
|
||||
- TOR Network integration
|
||||
- DeepSend for transaction masking
|
||||
- DeepVault for file verification
|
||||
- DeepProtocol for encrypted messaging
|
||||
- DeepOnionJ for Java integration
|
||||
- VoteCentral for community governance
|
||||
blockchain_features:
|
||||
encryption: zksnark
|
||||
opensource: true
|
||||
|
@ -86,36 +81,28 @@ blockchain_features:
|
|||
frontend_anonymity: TOR addresses
|
||||
asset_custody_type: non-custodial
|
||||
p2p: true
|
||||
|
||||
project_status:
|
||||
live_status: true
|
||||
version: V2.3.3
|
||||
testnet: false
|
||||
mainnet: true
|
||||
|
||||
client_diversability:
|
||||
name: DeepOnion Wallet
|
||||
link: https://deeponion.org/#download
|
||||
|
||||
# PRIVACY ---------------------------------------------------------------------
|
||||
licences: General Public License
|
||||
|
||||
privacy_policy:
|
||||
defined: true
|
||||
link: https://deeponion.org/privacypolicy.html
|
||||
data_usage: Not using
|
||||
|
||||
tracebility:
|
||||
kyc: false
|
||||
sign_in_type_requirements: wallet
|
||||
|
||||
compliance: none
|
||||
|
||||
storage:
|
||||
decentralized: true
|
||||
|
||||
# SECURITY ---------------------------------------------------------------------
|
||||
third_party_dependency: false
|
||||
social_trust: DeepOnion uses a multisig system for governance decisions and has a DAO for community voting.
|
||||
|
||||
usecases: [currency]
|
||||
social_trust: DeepOnion uses a multisig system for governance decisions and has a
|
||||
DAO for community voting.
|
||||
usecases:
|
||||
- currency
|
||||
id: deeponion
|
||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: definer
|
||||
|
|
|
@ -15,3 +15,4 @@ usecases:
|
|||
- research-and-development
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: demox-labs
|
||||
|
|
|
@ -21,3 +21,4 @@ project_status:
|
|||
usecases:
|
||||
- infrastructure
|
||||
third_party_dependency: false
|
||||
id: dero
|
||||
|
|
|
@ -10,3 +10,4 @@ usecases:
|
|||
- rpc-provider
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: derp
|
||||
|
|
|
@ -19,3 +19,4 @@ usecases:
|
|||
- research-and-development
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: discreet-labs
|
||||
|
|
|
@ -23,3 +23,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: discreet
|
||||
|
|
|
@ -5,3 +5,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: diva
|
||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
|||
- operation-systems
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: divestos
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- storage
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: djib
|
||||
|
|
|
@ -16,3 +16,4 @@ have_token: false
|
|||
usecases:
|
||||
- did
|
||||
third_party_dependency: false
|
||||
id: dmail-network
|
||||
|
|
|
@ -21,3 +21,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: dusk-network
|
||||
|
|
|
@ -17,3 +17,4 @@ usecases:
|
|||
- currency
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: ecash
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: edge
|
||||
|
|
|
@ -20,3 +20,4 @@ usecases:
|
|||
- research-and-development
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: electric-coin-co
|
||||
|
|
|
@ -16,3 +16,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: elite
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- defi
|
||||
have_token: false
|
||||
third_party_dependency: false
|
||||
id: elusiv
|
||||
|
|
|
@ -25,3 +25,4 @@ usecases:
|
|||
- wallets
|
||||
have_token: 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