mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
fix: naming of schemas and test
This commit is contained in:
parent
2270ad7b3d
commit
03934fb7e9
11 changed files with 40 additions and 35 deletions
|
@ -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
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
- id: non-custody
|
||||
name: Non-custody
|
4
src/custodys.yaml
Normal file
4
src/custodys.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- id: non-custody
|
||||
name: Non-custody
|
||||
- id: custodial
|
||||
name: Custodial
|
10
src/phases.yaml
Normal file
10
src/phases.yaml
Normal 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
|
|
@ -1,10 +0,0 @@
|
|||
- id: mainnet
|
||||
name: Mainnet
|
||||
- id: testnet
|
||||
name: Testnet
|
||||
- id: alpha
|
||||
name: Alpha
|
||||
- id: beta
|
||||
name: Beta
|
||||
- id: mvp
|
||||
name: MVP
|
6
src/requirements.yaml
Normal file
6
src/requirements.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
- id: wallet
|
||||
name: Wallet
|
||||
- id: email
|
||||
name: Email
|
||||
- id: seed
|
||||
name: Seed
|
|
@ -1,6 +0,0 @@
|
|||
- id: wallet
|
||||
name: Wallet
|
||||
- id: email
|
||||
name: Email
|
||||
- id: seed
|
||||
name: Seed
|
|
@ -50,6 +50,9 @@ const matrix = {
|
|||
features: "feature",
|
||||
usecases: "usecase",
|
||||
ranks: "rank",
|
||||
custodys: "custody",
|
||||
phases: "phase",
|
||||
requirements: "requirement"
|
||||
};
|
||||
|
||||
const schemaDir = "./schema";
|
||||
|
|
Loading…
Reference in a new issue