mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
feat: move ids to first line
This commit is contained in:
parent
183358c960
commit
1e13c21467
425 changed files with 424 additions and 466 deletions
42
script.py
42
script.py
|
@ -1,42 +0,0 @@
|
||||||
import os
|
|
||||||
import yaml
|
|
||||||
|
|
||||||
# Cesta ke složce, kde jsou projekty
|
|
||||||
projects_folder = './src/projects'
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# 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:
|
|
||||||
folder_path = os.path.join(root, dir_name)
|
|
||||||
index_file = os.path.join(folder_path, 'index.yaml')
|
|
||||||
|
|
||||||
# Zkontroluj, jestli soubor 'index.yaml' existuje
|
|
||||||
if os.path.exists(index_file):
|
|
||||||
update_id_in_yaml(index_file, dir_name)
|
|
||||||
else:
|
|
||||||
print(f"Soubor {index_file} neexistuje, preskakuji.")
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: 01-labs
|
||||||
name: 01 Labs
|
name: 01 Labs
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -12,4 +13,3 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: 01-labs
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: 0xtip
|
||||||
name: 0xTIP
|
name: 0xTIP
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -9,4 +10,3 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: 0xtip
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: 1984
|
||||||
name: '1984'
|
name: '1984'
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -14,4 +15,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: '1984'
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: 1rpc
|
||||||
name: 1RPC
|
name: 1RPC
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -10,4 +11,3 @@ usecases:
|
||||||
- rpc-provider
|
- rpc-provider
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: 1rpc
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: 2fa-guru
|
||||||
name: 2FA Guru
|
name: 2FA Guru
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -10,4 +11,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: 2fa-guru
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: actilist
|
||||||
name: Actilist
|
name: Actilist
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -20,4 +21,3 @@ sunset: false
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: actilist
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: aesirx-web3-id
|
||||||
name: AesirX WEB3 ID
|
name: AesirX WEB3 ID
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -15,4 +16,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: aesirx-web3-id
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: alaya
|
||||||
name: Alaya
|
name: Alaya
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -22,4 +23,3 @@ usecases:
|
||||||
- computing
|
- computing
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: alaya
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: aleo
|
||||||
name: Aleo
|
name: Aleo
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -43,4 +44,3 @@ third_party_dependency: false
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
id: aleo
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: aleph-zero
|
||||||
name: Aleph Zero
|
name: Aleph Zero
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -26,4 +27,3 @@ usecases:
|
||||||
- computing
|
- computing
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: aleph-zero
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: alter
|
||||||
name: ALTER
|
name: ALTER
|
||||||
categories:
|
categories:
|
||||||
- social-and-communications
|
- social-and-communications
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- messaging
|
- messaging
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: alter
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anagolay
|
||||||
name: Anagolay
|
name: Anagolay
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -15,4 +16,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anagolay
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anoma
|
||||||
name: Anoma
|
name: Anoma
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -37,4 +38,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anoma
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anon-aadhaar
|
||||||
name: Anon Aadhaar
|
name: Anon Aadhaar
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -25,4 +26,3 @@ usecases:
|
||||||
- did
|
- did
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anon-aadhaar
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anon-nero
|
||||||
name: Anon/Nero
|
name: Anon/Nero
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -8,4 +9,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anon-nero
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anonybit
|
||||||
name: Anonybit
|
name: Anonybit
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -14,4 +15,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anonybit
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anonzk-incognito
|
||||||
name: AnonZK Incognito
|
name: AnonZK Incognito
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -9,4 +10,3 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anonzk-incognito
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anydao
|
||||||
name: AnyDAO
|
name: AnyDAO
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -13,4 +14,3 @@ usecases:
|
||||||
- dao
|
- dao
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anydao
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: anytype
|
||||||
name: Anytype
|
name: Anytype
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -16,4 +17,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: anytype
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: arcana-s-private-nft
|
||||||
name: Arcana's Private NFT
|
name: Arcana's Private NFT
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -9,4 +10,3 @@ usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: arcana-s-private-nft
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: arcana
|
||||||
name: Arcana
|
name: Arcana
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -31,4 +32,3 @@ tokens:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: arcana
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: arpa
|
||||||
name: ARPA
|
name: ARPA
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -26,4 +27,3 @@ usecases:
|
||||||
- computing
|
- computing
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: arpa
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: asmatch
|
||||||
name: AsMatch
|
name: AsMatch
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -13,4 +14,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: asmatch
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: asterizm
|
||||||
name: Asterizm
|
name: Asterizm
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -25,4 +26,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: asterizm
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: auth3
|
||||||
name: Auth3
|
name: Auth3
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -18,4 +19,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: auth3
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: automata-network
|
||||||
name: Automata Network
|
name: Automata Network
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -21,4 +22,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: automata-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: avado
|
||||||
name: Avado
|
name: Avado
|
||||||
categories:
|
categories:
|
||||||
- hardware
|
- hardware
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: avado
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: axiatel
|
||||||
name: AXIAtel
|
name: AXIAtel
|
||||||
categories:
|
categories:
|
||||||
- hardware
|
- hardware
|
||||||
|
@ -13,4 +14,3 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: axiatel
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: aztec-connect
|
||||||
name: Aztec Connect
|
name: Aztec Connect
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -11,4 +12,3 @@ usecases:
|
||||||
- bridge
|
- bridge
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: aztec-connect
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: basic-attention-token
|
||||||
name: Basic Attention Token
|
name: Basic Attention Token
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -17,4 +18,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: basic-attention-token
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: basicswap
|
||||||
name: Basic Swap
|
name: Basic Swap
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -55,4 +56,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
id: basicswap
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: bcchat
|
||||||
name: BCchat
|
name: BCchat
|
||||||
categories:
|
categories:
|
||||||
- social-and-communications
|
- social-and-communications
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- messaging
|
- messaging
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: bcchat
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: beam-wallet
|
||||||
name: Beam
|
name: Beam
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -17,4 +18,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: beam-wallet
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: beam
|
||||||
name: Beam
|
name: Beam
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -24,4 +25,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: beam
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: beepo
|
||||||
name: Beepo
|
name: Beepo
|
||||||
categories:
|
categories:
|
||||||
- social-and-communications
|
- social-and-communications
|
||||||
|
@ -22,4 +23,3 @@ usecases:
|
||||||
- messaging
|
- messaging
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: beepo
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: beldex
|
||||||
name: Beldex
|
name: Beldex
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -25,4 +26,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: beldex
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: bermuda
|
||||||
name: Bermuda
|
name: Bermuda
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -13,4 +14,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: bermuda
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: bidshop
|
||||||
name: Bidshop
|
name: Bidshop
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -19,4 +20,3 @@ tokens:
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: bidshop
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: blackbox
|
||||||
name: Blackbox
|
name: Blackbox
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -68,4 +69,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
id: blackbox
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: blockwallet
|
||||||
name: BlockWallet
|
name: BlockWallet
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -23,4 +24,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: blockwallet
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: blockyfile
|
||||||
name: Blockyfile
|
name: Blockyfile
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -8,4 +9,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: blockyfile
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: bluum
|
||||||
name: Bluum
|
name: Bluum
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -9,4 +10,3 @@ usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: bluum
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: boltz
|
||||||
name: Boltz
|
name: Boltz
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -16,4 +17,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: boltz
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: bpsaa
|
||||||
name: BPSAA
|
name: BPSAA
|
||||||
categories:
|
categories:
|
||||||
- social-and-communications
|
- social-and-communications
|
||||||
|
@ -10,4 +11,3 @@ usecases:
|
||||||
- alliances
|
- alliances
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: bpsaa
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: brace
|
||||||
name: Brace.to
|
name: Brace.to
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -16,4 +17,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: brace
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: brave
|
||||||
name: Brave
|
name: Brave
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -12,4 +13,3 @@ usecases:
|
||||||
- browser
|
- browser
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: brave
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: brightid
|
||||||
name: BrightID
|
name: BrightID
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -15,4 +16,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: brightid
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: bringing-privacy-to-ens
|
||||||
name: bringing-privacy-to-ens
|
name: bringing-privacy-to-ens
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -9,4 +10,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: bringing-privacy-to-ens
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: Brume wallet
|
|
||||||
id: brume-wallet
|
id: brume-wallet
|
||||||
|
name: Brume wallet
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
ecosystem:
|
ecosystem:
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: buildoor
|
||||||
name: Buildoor
|
name: Buildoor
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -12,4 +13,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: buildoor
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: burstiq
|
||||||
name: burstIQ
|
name: burstIQ
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -24,4 +25,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: burstiq
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cake-wallet
|
||||||
name: Cake Wallet
|
name: Cake Wallet
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -20,4 +21,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cake-wallet
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: calyxos
|
||||||
name: CalyxOS
|
name: CalyxOS
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -19,4 +20,3 @@ usecases:
|
||||||
- operation-systems
|
- operation-systems
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: calyxos
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cape
|
||||||
name: CAPE
|
name: CAPE
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -18,4 +19,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cape
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cerebrum
|
||||||
name: Cerebrum
|
name: Cerebrum
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -12,4 +13,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cerebrum
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: certup
|
||||||
name: certUP
|
name: certUP
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -18,4 +19,3 @@ sunset: false
|
||||||
usecases:
|
usecases:
|
||||||
- nft-community
|
- nft-community
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: certup
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cheqd
|
||||||
name: CheqD
|
name: CheqD
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -17,4 +18,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cheqd
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: chimp-exchange
|
||||||
name: ChimpExchange
|
name: ChimpExchange
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -22,4 +23,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: chimp-exchange
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cia-protocol
|
||||||
name: CIA protocol
|
name: CIA protocol
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -5,4 +6,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cia-protocol
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cirus-foundation
|
||||||
name: Cirus foundation
|
name: Cirus foundation
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -11,4 +12,3 @@ usecases:
|
||||||
- data-management
|
- data-management
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cirus-foundation
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cog
|
||||||
name: COG
|
name: COG
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -11,4 +12,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cog
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: coinbook
|
||||||
name: CoinBook
|
name: CoinBook
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -5,4 +6,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: coinbook
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: coinomize
|
||||||
name: Coinomize
|
name: Coinomize
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -10,4 +11,3 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: coinomize
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: coinshuffle
|
||||||
name: CoinShuffle++
|
name: CoinShuffle++
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -9,4 +10,3 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: coinshuffle
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: colossusxt
|
||||||
name: ColossusXT
|
name: ColossusXT
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -26,4 +27,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: colossusxt
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: comit-network
|
||||||
name: Comit Network
|
name: Comit Network
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -19,4 +20,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: comit-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: common
|
||||||
name: Common
|
name: Common
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -5,4 +6,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: common
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: conceal-network
|
||||||
name: Conceal Network
|
name: Conceal Network
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -5,4 +6,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: conceal-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: concordium
|
||||||
name: Concordium
|
name: Concordium
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -29,4 +30,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: concordium
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cool-wallet
|
||||||
name: Cool Wallet
|
name: Cool Wallet
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cool-wallet
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: crust
|
||||||
name: Crust
|
name: Crust
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -26,4 +27,3 @@ usecases:
|
||||||
- storage
|
- storage
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: crust
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: crypviser-secure-messenger
|
||||||
name: Crypviser Secure Messenger
|
name: Crypviser Secure Messenger
|
||||||
categories:
|
categories:
|
||||||
- social-and-communications
|
- social-and-communications
|
||||||
|
@ -26,4 +27,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- messaging
|
- messaging
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: crypviser-secure-messenger
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cultdao
|
||||||
name: CULT DAO
|
name: CULT DAO
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -45,4 +46,3 @@ audits:
|
||||||
usecases:
|
usecases:
|
||||||
- dao
|
- dao
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cultdao
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: cyclone
|
||||||
name: Cyclone
|
name: Cyclone
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -30,4 +31,3 @@ usecases:
|
||||||
- mixing-service
|
- mixing-service
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: cyclone
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: damus
|
||||||
name: Damus
|
name: Damus
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -10,4 +11,3 @@ usecases:
|
||||||
- dapps
|
- dapps
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: damus
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: dappnode
|
||||||
name: DappNode
|
name: DappNode
|
||||||
categories:
|
categories:
|
||||||
- hardware
|
- hardware
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: dappnode
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: darkfi
|
||||||
name: DarkFi
|
name: DarkFi
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -18,4 +19,3 @@ usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: darkfi
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: dauth-network
|
||||||
name: DAuth Network
|
name: DAuth Network
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -14,4 +15,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: dauth-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: decentr
|
||||||
name: Decentr
|
name: Decentr
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -16,4 +17,3 @@ usecases:
|
||||||
- browser
|
- browser
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: decentr
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: decred
|
||||||
name: Decred
|
name: Decred
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: decred
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: deeper-network
|
||||||
name: Deeper Network
|
name: Deeper Network
|
||||||
categories:
|
categories:
|
||||||
- hardware
|
- hardware
|
||||||
|
@ -20,4 +21,3 @@ usecases:
|
||||||
- hardware
|
- hardware
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: deeper-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: deeponion
|
||||||
name: DeepOnion
|
name: DeepOnion
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -105,4 +106,3 @@ social_trust: DeepOnion uses a multisig system for governance decisions and has
|
||||||
DAO for community voting.
|
DAO for community voting.
|
||||||
usecases:
|
usecases:
|
||||||
- currency
|
- currency
|
||||||
id: deeponion
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: definer
|
||||||
name: DeFiner
|
name: DeFiner
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -5,4 +6,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: definer
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: demox-labs
|
||||||
name: Demox labs
|
name: Demox labs
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -15,4 +16,3 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: demox-labs
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: dero
|
||||||
name: Dero
|
name: Dero
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -21,4 +22,3 @@ project_status:
|
||||||
usecases:
|
usecases:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: dero
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: derp
|
||||||
name: DERP
|
name: DERP
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -10,4 +11,3 @@ usecases:
|
||||||
- rpc-provider
|
- rpc-provider
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: derp
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: discreet-labs
|
||||||
name: Discreet Labs
|
name: Discreet Labs
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -19,4 +20,3 @@ usecases:
|
||||||
- research-and-development
|
- research-and-development
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: discreet-labs
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: discreet
|
||||||
name: Discreet
|
name: Discreet
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -23,4 +24,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: discreet
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: diva
|
||||||
name: Diva
|
name: Diva
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -5,4 +6,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: diva
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: divestos
|
||||||
name: DivestOS
|
name: DivestOS
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -17,4 +18,3 @@ usecases:
|
||||||
- operation-systems
|
- operation-systems
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: divestos
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: djib
|
||||||
name: DJIB
|
name: DJIB
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -25,4 +26,3 @@ usecases:
|
||||||
- storage
|
- storage
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: djib
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: dmail-network
|
||||||
name: Dmail Network
|
name: Dmail Network
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -16,4 +17,3 @@ have_token: false
|
||||||
usecases:
|
usecases:
|
||||||
- did
|
- did
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: dmail-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: dusk-network
|
||||||
name: Dusk Network
|
name: Dusk Network
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -21,4 +22,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: dusk-network
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: ecash
|
||||||
name: eCash
|
name: eCash
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -17,4 +18,3 @@ usecases:
|
||||||
- currency
|
- currency
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: ecash
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: edge
|
||||||
name: Edge
|
name: Edge
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -25,4 +26,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: edge
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: electric-coin-co
|
||||||
name: Electric Coin. Co
|
name: Electric Coin. Co
|
||||||
categories:
|
categories:
|
||||||
- infrastructure
|
- infrastructure
|
||||||
|
@ -20,4 +21,3 @@ 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
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: elite
|
||||||
name: Elite
|
name: Elite
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -16,4 +17,3 @@ usecases:
|
||||||
- wallets
|
- wallets
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: elite
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: elusiv
|
||||||
name: Elusiv
|
name: Elusiv
|
||||||
categories:
|
categories:
|
||||||
- defi
|
- defi
|
||||||
|
@ -25,4 +26,3 @@ usecases:
|
||||||
- defi
|
- defi
|
||||||
have_token: false
|
have_token: false
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
id: elusiv
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
id: email-wallet
|
||||||
name: Email Wallet
|
name: Email Wallet
|
||||||
categories:
|
categories:
|
||||||
- applications
|
- applications
|
||||||
|
@ -25,4 +26,3 @@ 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