Merge pull request #790 from web3privacy/dw/addons

Dw/addons
This commit is contained in:
DanielKlein 2024-09-20 12:25:54 +02:00 committed by GitHub
commit 4822c44977
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 73 additions and 17 deletions

View file

@ -31,11 +31,11 @@ links:
twitter: https://twitter.com/sample_privacy_project
# Details on live status + version
project_status:
live_status: true
version: Mainnet
testnet: false
mainnet: true
# project_status:
# live_status: true
# version: Mainnet
# testnet: false
# mainnet: true
# Token ticker + contract address - if there is no token "have_token: false"
have_token: true
@ -64,18 +64,18 @@ history:
link: https://infonewspage.com/sample-launch
# more links
links:
block_explorer: https://samplescan.io/
forum: https://forum.sample-website.com
changelog: https://changelog.sample-website.com
snapshot: https://snapshot.org/sample-dao
discord: https://discord.com/invite/jgUQSAMPLE
facebook: https://facebook.com/sample-privacy-crypto
telegram: https://t.me/sample_privacy_project
lens: https://hey.xyz/u/sample_privacy_project
farcaster: "@sampleprivacyproject"
rss_feed: https://rss-feeds.com/sample_privacy_project
education: https://twitter.com/random_user/status/12345678901234
# links:
# block_explorer: https://samplescan.io/
# forum: https://forum.sample-website.com
# changelog: https://changelog.sample-website.com
# snapshot: https://snapshot.org/sample-dao
# discord: https://discord.com/invite/jgUQSAMPLE
# facebook: https://facebook.com/sample-privacy-crypto
# telegram: https://t.me/sample_privacy_project
# lens: https://hey.xyz/u/sample_privacy_project
# farcaster: "@sampleprivacyproject"
# rss_feed: https://rss-feeds.com/sample_privacy_project
# education: https://twitter.com/random_user/status/12345678901234
# TECHNOLOGY - information -------------------------------------------------------------------------------------------------------------
# Please have a look at https://github.com/web3privacy/explorer-data for explanations + examples

11
schema/custody.yaml Normal file
View file

@ -0,0 +1,11 @@
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string

11
schema/phase.yaml Normal file
View file

@ -0,0 +1,11 @@
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string

11
schema/requirement.yaml Normal file
View file

@ -0,0 +1,11 @@
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string

4
src/custodys.yaml Normal file
View file

@ -0,0 +1,4 @@
- id: non-custody
name: Non-custody
- id: custodial
name: Custodial

10
src/phases.yaml Normal file
View file

@ -0,0 +1,10 @@
- id: mainnet
name: Mainnet
- id: testnet
name: Testnet
- id: alpha
name: Alpha
- id: beta
name: Beta
- id: mvp
name: MVP

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

6
src/requirements.yaml Normal file
View file

@ -0,0 +1,6 @@
- id: wallet
name: Wallet
- id: email
name: Email
- id: seed
name: Seed

View file

@ -50,6 +50,9 @@ const matrix = {
features: "feature",
usecases: "usecase",
ranks: "rank",
custodys: "custody",
phases: "phase",
requirements: "requirement"
};
const schemaDir = "./schema";