mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
fix: update any project data that has inconsistent yaml formatting and non-existent fields
This commit is contained in:
parent
3f7baf21aa
commit
03d1d68be0
14 changed files with 163 additions and 134 deletions
|
@ -127,7 +127,7 @@ https://data.web3privacy.info/
|
||||||
|
|
||||||
| Field | Type | Required | Description |
|
| Field | Type | Required | Description |
|
||||||
|------------------------|-----------------------|----------|-------------|
|
|------------------------|-----------------------|----------|-------------|
|
||||||
| licenses | string | | Licenses used (ex. MIT License, GGML,...) |
|
| licences | string | | Licenses used (ex. MIT License, GGML,...) |
|
||||||
| privacy_policy defined | boolean | | Is there a document defining privacy policies? (Yes/No)|
|
| privacy_policy defined | boolean | | Is there a document defining privacy policies? (Yes/No)|
|
||||||
| privacy_policy link | string url | | Link to the privacy policy document |
|
| privacy_policy link | string url | | Link to the privacy policy document |
|
||||||
| privacy_policy data_usage | string | | How is the project using your data? (ex. Selling data, Analytics., Not using,...) |
|
| privacy_policy data_usage | string | | How is the project using your data? (ex. Selling data, Analytics., Not using,...) |
|
||||||
|
|
|
@ -135,7 +135,7 @@ storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
|
|
||||||
|
|
||||||
SECURITY ---------------------------------------------------------------------
|
# SECURITY ---------------------------------------------------------------------
|
||||||
|
|
||||||
third_party_dependency: Chainlink oracle
|
third_party_dependency: Chainlink oracle
|
||||||
social_trust: Sample board multisig & DAO
|
social_trust: Sample board multisig & DAO
|
||||||
|
@ -145,3 +145,7 @@ audits:
|
||||||
- name: Privacy audit company - Sample security check
|
- name: Privacy audit company - Sample security check
|
||||||
link: https://pac.com/sample-security.pdf
|
link: https://pac.com/sample-security.pdf
|
||||||
time: "YYYY-MM-DD"
|
time: "YYYY-MM-DD"
|
||||||
|
- name: Competitive Audit - Code4rena
|
||||||
|
link: https://ca.com/audit-result.pdf
|
||||||
|
time: "YYYY-MM-DD"
|
||||||
|
|
||||||
|
|
|
@ -24,10 +24,12 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
pattern: '^[A-Z0-9-]+$'
|
pattern: '^[A-Z0-9-]+$'
|
||||||
ecosystem:
|
ecosystem:
|
||||||
type: array
|
anyOf: [{type: array}, {type: string}]
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
pattern: '^[A-Z0-9-]+$'
|
pattern: '^[A-Z0-9-]+$'
|
||||||
|
have_token:
|
||||||
|
type: boolean
|
||||||
token_link:
|
token_link:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
format: uri
|
||||||
|
@ -53,6 +55,8 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
project_type:
|
project_type:
|
||||||
type: string
|
type: string
|
||||||
|
product_readiness:
|
||||||
|
type: string
|
||||||
product_launch_day:
|
product_launch_day:
|
||||||
type: string
|
type: string
|
||||||
technology:
|
technology:
|
||||||
|
@ -149,8 +153,6 @@ properties:
|
||||||
link:
|
link:
|
||||||
type: string
|
type: string
|
||||||
format: uli
|
format: uli
|
||||||
third_party_dependency:
|
|
||||||
type: boolean
|
|
||||||
opensource:
|
opensource:
|
||||||
type: boolean
|
type: boolean
|
||||||
viewing_key:
|
viewing_key:
|
||||||
|
@ -179,21 +181,38 @@ properties:
|
||||||
format: uri
|
format: uri
|
||||||
data_usage:
|
data_usage:
|
||||||
type: string
|
type: string
|
||||||
|
traceability:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
tracked_data:
|
||||||
|
type: string
|
||||||
|
kyc:
|
||||||
|
type: boolean
|
||||||
|
sign_in_type_requirments:
|
||||||
|
type: string
|
||||||
team:
|
team:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
anonymous:
|
anonymous:
|
||||||
type: boolean
|
type: boolean
|
||||||
teammembers:
|
company:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
role:
|
|
||||||
type: string
|
|
||||||
link:
|
link:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
format: uri
|
||||||
|
teammembers:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
role:
|
||||||
|
type: string
|
||||||
|
link:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
storage:
|
storage:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
@ -209,23 +228,25 @@ properties:
|
||||||
sign_in_type_requirments:
|
sign_in_type_requirments:
|
||||||
type: string
|
type: string
|
||||||
third_party_dependency:
|
third_party_dependency:
|
||||||
type: string
|
type: boolean
|
||||||
compliance:
|
compliance:
|
||||||
type: string
|
anyOf: [{type: boolean}, {type: string}]
|
||||||
audits:
|
audits:
|
||||||
type: object
|
type: array
|
||||||
properties:
|
items:
|
||||||
name:
|
type: object
|
||||||
type: string
|
properties:
|
||||||
company:
|
name:
|
||||||
type: string
|
type: string
|
||||||
logo:
|
company:
|
||||||
type: string
|
type: string
|
||||||
link:
|
logo:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
link:
|
||||||
time:
|
type: string
|
||||||
type: string
|
format: uri
|
||||||
|
time:
|
||||||
|
type: string
|
||||||
social_trust:
|
social_trust:
|
||||||
type: string
|
type: string
|
||||||
technical_spof:
|
technical_spof:
|
||||||
|
@ -247,13 +268,15 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
format: uri
|
||||||
client_diversability:
|
client_diversability:
|
||||||
type: object
|
type: array
|
||||||
properties:
|
items:
|
||||||
name:
|
type: object
|
||||||
type: string
|
properties:
|
||||||
link:
|
name:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
link:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
default_privacy:
|
default_privacy:
|
||||||
type: boolean
|
type: boolean
|
||||||
funding:
|
funding:
|
||||||
|
|
|
@ -43,11 +43,11 @@ tracebility:
|
||||||
tracked_data: Chains activity
|
tracked_data: Chains activity
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallets
|
sign_in_type_requirments: wallets
|
||||||
third_party_dependency: none
|
third_party_dependency: false
|
||||||
compliance: none
|
compliance: none
|
||||||
client_diversability:
|
client_diversability:
|
||||||
name: BasicSwap client
|
- name: BasicSwap client
|
||||||
link: https://basicswapdex.com/
|
link: https://basicswapdex.com/
|
||||||
default_privacy: false
|
default_privacy: false
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
|
|
|
@ -37,14 +37,14 @@ privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
name: Trivium Nodes
|
||||||
|
link: https://trivium.network/
|
||||||
|
contacts: info@trivium.network
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Xiphiar
|
- name: Xiphiar
|
||||||
role: rdeveloper
|
role: rdeveloper
|
||||||
link: https://github.com/Xiphiar
|
link: https://github.com/Xiphiar
|
||||||
company:
|
|
||||||
- name: Trivium Nodes
|
|
||||||
link: https://trivium.network/
|
|
||||||
contacts: info@trivium.network
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
tracebility:
|
tracebility:
|
||||||
|
|
|
@ -32,16 +32,16 @@ privacy_policy:
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
teammembers:
|
||||||
name: Haz Æ 41
|
- name: Haz Æ 41
|
||||||
role: developer
|
role: developer
|
||||||
link: https://bento.me/hazae41
|
link: https://bento.me/hazae41
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
tracebility:
|
tracebility:
|
||||||
tracked_data: no ( Tor based )
|
tracked_data: no ( Tor based )
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: seed
|
sign_in_type_requirments: seed
|
||||||
third_party_dependency: none
|
third_party_dependency: false
|
||||||
compliance: compliant
|
compliance: compliant
|
||||||
|
|
||||||
history:
|
history:
|
||||||
|
|
|
@ -14,5 +14,5 @@ project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
company:
|
||||||
link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280778213%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=s_%40
|
link: https://www.linkedin.com/search/results/people/?currentCompany=%5B%2280778213%22%5D&origin=COMPANY_PAGE_CANNED_SEARCH&sid=s_%40
|
||||||
|
|
|
@ -2,11 +2,11 @@ name: Firn Protocol
|
||||||
categories: [ defi ]
|
categories: [ defi ]
|
||||||
ecosystem: Ethereum
|
ecosystem: Ethereum
|
||||||
description: 'Firn is the first-ever zero-knowledge privacy platform in the account-based model, and introduces pluggable, flexible privacy to Ethereum-based chains.'
|
description: 'Firn is the first-ever zero-knowledge privacy platform in the account-based model, and introduces pluggable, flexible privacy to Ethereum-based chains.'
|
||||||
token:
|
tokens:
|
||||||
name: Firn
|
- name: Firn
|
||||||
symbol: FIRN
|
symbol: FIRN
|
||||||
network: Optimism
|
network: Optimism
|
||||||
contract_address: "0xb20d84ebFeCdC6821448C7094564a039F0AE5EA4"
|
contract_address: "0xb20d84ebFeCdC6821448C7094564a039F0AE5EA4"
|
||||||
project_type: DeFi
|
project_type: DeFi
|
||||||
product_launch_day: "2021-11-06"
|
product_launch_day: "2021-11-06"
|
||||||
technology:
|
technology:
|
||||||
|
@ -67,11 +67,11 @@ client_diversability:
|
||||||
link: https://www.metamask.io
|
link: https://www.metamask.io
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
funding:
|
funding:
|
||||||
- name: LunarDAO
|
name: LunarDAO
|
||||||
type: token sale
|
type: token sale
|
||||||
link: https://lunardao.net/firn_investment.html
|
link: https://lunardao.net/firn_investment.html
|
||||||
value: 45.000 $
|
value: 45.000 $
|
||||||
time: Jun 1, 2023
|
time: Jun 1, 2023
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
|
|
@ -10,6 +10,6 @@ project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
teammembers:
|
company:
|
||||||
link: https://offshift.io/#team
|
link: https://offshift.io/#team
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: RAILGUN
|
name: RAILGUN
|
||||||
categories: [ defi ]
|
categories: [ defi ]
|
||||||
token:
|
tokens:
|
||||||
- name: Railgun
|
- name: Railgun
|
||||||
symbol: RAIL
|
symbol: RAIL
|
||||||
network: Ethereum
|
network: Ethereum
|
||||||
|
@ -43,38 +43,38 @@ blockchain_features:
|
||||||
reversability_condition: viewing key, hack
|
reversability_condition: viewing key, hack
|
||||||
data_masking: Contract deposit
|
data_masking: Contract deposit
|
||||||
asset_custody_type: non-custody
|
asset_custody_type: non-custody
|
||||||
licences:
|
|
||||||
privacy_policy:
|
privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
team:
|
team:
|
||||||
- name: Alan Scott
|
anonymous: false
|
||||||
role: researcher
|
teammembers:
|
||||||
- name: Kieran Mesquita
|
- name: Alan Scott
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: John Meurer
|
- name: Kieran Mesquita
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: Dylan Oliver
|
- name: John Meurer
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: Hisham Galan
|
- name: Dylan Oliver
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: Peter Simpson
|
- name: Hisham Galan
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: Bill Liang
|
- name: Peter Simpson
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: Matias Grote
|
- name: Bill Liang
|
||||||
role: researcher
|
role: researcher
|
||||||
- name: Jacob Makarsky
|
- name: Matias Grote
|
||||||
role: Software engineer
|
role: researcher
|
||||||
- name: Edward P. Fricker
|
- name: Jacob Makarsky
|
||||||
role: Legal counsel
|
role: Software engineer
|
||||||
- name: Phil Huang
|
- name: Edward P. Fricker
|
||||||
role: Advisor
|
role: Legal counsel
|
||||||
- name: Emmanuel Goldstein
|
- name: Phil Huang
|
||||||
role: Global economist
|
role: Advisor
|
||||||
|
- name: Emmanuel Goldstein
|
||||||
|
role: Global economist
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
tracebility:
|
tracebility:
|
||||||
tracked_data:
|
|
||||||
kyc: false
|
kyc: false
|
||||||
sign_in_type_requirments: wallet
|
sign_in_type_requirments: wallet
|
||||||
third_party_dependency: false
|
third_party_dependency: false
|
||||||
|
@ -83,8 +83,6 @@ audits:
|
||||||
- name: Railgun audit report
|
- name: Railgun audit report
|
||||||
link: https://assets.railgun.org/docs/audits/
|
link: https://assets.railgun.org/docs/audits/
|
||||||
time: July, 2021
|
time: July, 2021
|
||||||
social_trust:
|
|
||||||
technical_spof:
|
|
||||||
history:
|
history:
|
||||||
title: Mainet
|
title: Mainet
|
||||||
event_type: launch
|
event_type: launch
|
||||||
|
@ -98,11 +96,11 @@ client_diversability:
|
||||||
link: https://tokenshielder.com/
|
link: https://tokenshielder.com/
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
funding:
|
funding:
|
||||||
- name: DCG
|
name: DCG
|
||||||
type: Investments
|
type: Investments
|
||||||
link: https://www.coindesk.com/business/2022/01/26/railgun-aims-for-private-defi-with-10m-backing-from-dcg/
|
link: https://www.coindesk.com/business/2022/01/26/railgun-aims-for-private-defi-with-10m-backing-from-dcg/
|
||||||
value: 10.000.000 $
|
value: 10.000.000 $
|
||||||
time: Jan 26, 2022
|
time: Jan 26, 2022
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
|
|
@ -49,14 +49,14 @@ privacy_policy:
|
||||||
defined: false
|
defined: false
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
teammembers:
|
|
||||||
name: Alex Zaidelson
|
|
||||||
role: SLabs CEO
|
|
||||||
link: https://twitter.com/azaidelson
|
|
||||||
company:
|
company:
|
||||||
name: Secret Labs
|
name: Secret Labs
|
||||||
link: https://www.scrtlabs.com/
|
link: https://www.scrtlabs.com/
|
||||||
contacts: info@scrtlabs.com
|
contacts: info@scrtlabs.com
|
||||||
|
teammembers:
|
||||||
|
- name: Alex Zaidelson
|
||||||
|
role: SLabs CEO
|
||||||
|
link: https://twitter.com/azaidelson
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
tracebility:
|
tracebility:
|
||||||
|
@ -80,11 +80,11 @@ client_diversability:
|
||||||
link: https://starshell.net/
|
link: https://starshell.net/
|
||||||
default_privacy: false
|
default_privacy: false
|
||||||
funding:
|
funding:
|
||||||
- name: Private investors
|
name: Private investors
|
||||||
type: ICO
|
type: ICO
|
||||||
link: https://icodrops.com/secret-network/
|
link: https://icodrops.com/secret-network/
|
||||||
value: 236.500.000 $
|
value: 236.500.000 $
|
||||||
time: Jul 23, 2020
|
time: Jul 23, 2020
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
name: Shade Protocol
|
name: Shade Protocol
|
||||||
categories: [ defi ]
|
categories: [ defi ]
|
||||||
ecosystem: Secret
|
ecosystem: Secret
|
||||||
token:
|
tokens:
|
||||||
name: Shade Protocol
|
- name: Shade Protocol
|
||||||
symbol: SHD
|
symbol: SHD
|
||||||
network: Secret Network
|
network: Secret Network
|
||||||
contract_address: secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm
|
contract_address: secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm
|
||||||
description: 'Super app for private DeFi'
|
description: 'Super app for private DeFi'
|
||||||
project_type: DeFi
|
project_type: DeFi
|
||||||
product_launch_day: "2022-02-21"
|
product_launch_day: "2022-02-21"
|
||||||
|
@ -21,12 +21,10 @@ links:
|
||||||
telegram: https://t.me/ShadeProtocol
|
telegram: https://t.me/ShadeProtocol
|
||||||
discord: https://discord.com/invite/YMcUrXK476
|
discord: https://discord.com/invite/YMcUrXK476
|
||||||
blog: https://shadeprotocol.io/blog
|
blog: https://shadeprotocol.io/blog
|
||||||
facebook:
|
|
||||||
block_explorer: https://www.mintscan.io/secret
|
block_explorer: https://www.mintscan.io/secret
|
||||||
whitepaper: https://framerusercontent.com/modules/assets/aAMeX7kkaxljkFRXRIN4CElVJbo~pEHSkrNceWvWuHWRiNuOD_CQEuYf_tS-dLtgATuz0QY.pdf
|
whitepaper: https://framerusercontent.com/modules/assets/aAMeX7kkaxljkFRXRIN4CElVJbo~pEHSkrNceWvWuHWRiNuOD_CQEuYf_tS-dLtgATuz0QY.pdf
|
||||||
github: https://github.com/securesecrets/shade
|
github: https://github.com/securesecrets/shade
|
||||||
docs: https://docs.shadeprotocol.io/shade-protocol/
|
docs: https://docs.shadeprotocol.io/shade-protocol/
|
||||||
changelog:
|
|
||||||
forum: https://forum.shadeprotocol.io/
|
forum: https://forum.shadeprotocol.io/
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
p2p: false
|
p2p: false
|
||||||
|
@ -53,14 +51,14 @@ privacy_policy:
|
||||||
data_usage: tools you are making TXs on
|
data_usage: tools you are making TXs on
|
||||||
team:
|
team:
|
||||||
anonymous: false
|
anonymous: false
|
||||||
|
company:
|
||||||
|
name: Secure Secrets
|
||||||
|
link: https://www.securesecrets.org/
|
||||||
|
contacts: https://twitter.com/securesecrets
|
||||||
teammembers:
|
teammembers:
|
||||||
- name: Carter L. Woetzel
|
- name: Carter L. Woetzel
|
||||||
role: researcher
|
role: researcher
|
||||||
link: https://twitter.com/l_woetzel
|
link: https://twitter.com/l_woetzel
|
||||||
company:
|
|
||||||
- name: Secure Secrets
|
|
||||||
link: https://www.securesecrets.org/
|
|
||||||
contacts: https://twitter.com/securesecrets
|
|
||||||
storage:
|
storage:
|
||||||
decentralized: true
|
decentralized: true
|
||||||
tracebility:
|
tracebility:
|
||||||
|
@ -91,11 +89,11 @@ client_diversability:
|
||||||
link: https://starshell.net/
|
link: https://starshell.net/
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
funding:
|
funding:
|
||||||
- name: Private investors
|
name: Private investors
|
||||||
type: ICO
|
type: ICO
|
||||||
link: https://shadeprotocol.io/blog/shade-protocol-raises-5m-20-key-partners-invested
|
link: https://shadeprotocol.io/blog/shade-protocol-raises-5m-20-key-partners-invested
|
||||||
value: 5.000.000 $
|
value: 5.000.000 $
|
||||||
time: Feb 17, 2022
|
time: Feb 17, 2022
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
name: Sienna Network
|
name: Sienna Network
|
||||||
categories: [ defi ]
|
categories: [ defi ]
|
||||||
ecosystem: Secret
|
ecosystem: Secret
|
||||||
token:
|
tokens:
|
||||||
name: Sienna Network
|
- name: Sienna Network
|
||||||
symbol: SIENNA
|
symbol: SIENNA
|
||||||
network: Secret Network
|
network: Secret Network
|
||||||
contract_address: secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4
|
contract_address: secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4
|
||||||
description: 'Privacy-first, cross-chain decentralized finance protocol powered by Secret Network in the Cosmos ecosystem.'
|
description: 'Privacy-first, cross-chain decentralized finance protocol powered by Secret Network in the Cosmos ecosystem.'
|
||||||
project_type: DeFi
|
project_type: DeFi
|
||||||
product_launch_day: "2022-04-27"
|
product_launch_day: "2022-04-27"
|
||||||
|
@ -61,15 +61,15 @@ compliance: false
|
||||||
audits:
|
audits:
|
||||||
- name: Halborn and Certik
|
- name: Halborn and Certik
|
||||||
link: https://sienna.network/audits/
|
link: https://sienna.network/audits/
|
||||||
time: April 28th, 2021
|
time: "2021-04-18"
|
||||||
social_trust: Slabs ( MRSINGER )
|
social_trust: Slabs ( MRSINGER )
|
||||||
technical_spof: Can decrypt
|
technical_spof: Can decrypt
|
||||||
history:
|
history:
|
||||||
- title: Mainet
|
title: Mainet
|
||||||
event_type: launch
|
event_type: launch
|
||||||
description: V1
|
description: V1
|
||||||
time: October 2021
|
time: October 2021
|
||||||
link: https://docs.scrt.network/secret-network-documentation/overview-ecosystem-and-technology/secret-network-overview/history
|
link: https://docs.scrt.network/secret-network-documentation/overview-ecosystem-and-technology/secret-network-overview/history
|
||||||
client_diversability:
|
client_diversability:
|
||||||
- name: Keplr
|
- name: Keplr
|
||||||
link: https://www.keplr.app/
|
link: https://www.keplr.app/
|
||||||
|
@ -77,11 +77,11 @@ client_diversability:
|
||||||
link: https://starshell.net/
|
link: https://starshell.net/
|
||||||
default_privacy: true
|
default_privacy: true
|
||||||
funding:
|
funding:
|
||||||
- name: Public presale
|
name: Public presale
|
||||||
type: ICO
|
type: ICO
|
||||||
link: https://icodrops.com/sienna-network/
|
link: https://icodrops.com/sienna-network/
|
||||||
value: 11.200.000
|
value: 11.200.000
|
||||||
time: May 5, 2021
|
time: May 5, 2021
|
||||||
project_status:
|
project_status:
|
||||||
live_status: true
|
live_status: true
|
||||||
version: Mainnet
|
version: Mainnet
|
||||||
|
|
|
@ -8,7 +8,13 @@ product_readiness: Mainnet
|
||||||
product_launch_day: 01 April 2018
|
product_launch_day: 01 April 2018
|
||||||
project_type: Memecoin
|
project_type: Memecoin
|
||||||
technology:
|
technology:
|
||||||
features: Ring Signatures (21 decoys), Ring Confidential Transactions (RingCT), Stealth Addresses, Bulletproofs+, Dynamic Block Size
|
type: Privacy
|
||||||
|
features:
|
||||||
|
- Ring Signatures (21 decoys)
|
||||||
|
- Ring Confidential Transactions (RingCT)
|
||||||
|
- Stealth Addresses
|
||||||
|
- Bulletproofs+
|
||||||
|
- Dynamic Block Size
|
||||||
blockchain_features:
|
blockchain_features:
|
||||||
p2p: true
|
p2p: true
|
||||||
network: Dandelion++, RandomX PoW (lite variant)
|
network: Dandelion++, RandomX PoW (lite variant)
|
||||||
|
@ -21,7 +27,7 @@ links:
|
||||||
discord: https://discord.gg/ykZyAzJhDK
|
discord: https://discord.gg/ykZyAzJhDK
|
||||||
team:
|
team:
|
||||||
anonymous: true
|
anonymous: true
|
||||||
licenses: MIT License
|
licences: MIT License
|
||||||
traceability:
|
traceability:
|
||||||
tracked_data: None
|
tracked_data: None
|
||||||
kyc: false
|
kyc: false
|
||||||
|
|
Loading…
Reference in a new issue