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
|
twitter: https://twitter.com/sample_privacy_project
|
||||||
|
|
||||||
# Details on live status + version
|
# Details on live status + version
|
||||||
project_status:
|
# project_status:
|
||||||
live_status: true
|
# live_status: true
|
||||||
version: Mainnet
|
# version: Mainnet
|
||||||
testnet: false
|
# testnet: false
|
||||||
mainnet: true
|
# mainnet: true
|
||||||
|
|
||||||
# Token ticker + contract address - if there is no token "have_token: false"
|
# Token ticker + contract address - if there is no token "have_token: false"
|
||||||
have_token: true
|
have_token: true
|
||||||
|
@ -64,18 +64,18 @@ history:
|
||||||
link: https://infonewspage.com/sample-launch
|
link: https://infonewspage.com/sample-launch
|
||||||
|
|
||||||
# more links
|
# more links
|
||||||
links:
|
# links:
|
||||||
block_explorer: https://samplescan.io/
|
# block_explorer: https://samplescan.io/
|
||||||
forum: https://forum.sample-website.com
|
# forum: https://forum.sample-website.com
|
||||||
changelog: https://changelog.sample-website.com
|
# changelog: https://changelog.sample-website.com
|
||||||
snapshot: https://snapshot.org/sample-dao
|
# snapshot: https://snapshot.org/sample-dao
|
||||||
discord: https://discord.com/invite/jgUQSAMPLE
|
# discord: https://discord.com/invite/jgUQSAMPLE
|
||||||
facebook: https://facebook.com/sample-privacy-crypto
|
# facebook: https://facebook.com/sample-privacy-crypto
|
||||||
telegram: https://t.me/sample_privacy_project
|
# telegram: https://t.me/sample_privacy_project
|
||||||
lens: https://hey.xyz/u/sample_privacy_project
|
# lens: https://hey.xyz/u/sample_privacy_project
|
||||||
farcaster: "@sampleprivacyproject"
|
# farcaster: "@sampleprivacyproject"
|
||||||
rss_feed: https://rss-feeds.com/sample_privacy_project
|
# rss_feed: https://rss-feeds.com/sample_privacy_project
|
||||||
education: https://twitter.com/random_user/status/12345678901234
|
# education: https://twitter.com/random_user/status/12345678901234
|
||||||
|
|
||||||
# TECHNOLOGY - information -------------------------------------------------------------------------------------------------------------
|
# TECHNOLOGY - information -------------------------------------------------------------------------------------------------------------
|
||||||
# Please have a look at https://github.com/web3privacy/explorer-data for explanations + examples
|
# 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",
|
features: "feature",
|
||||||
usecases: "usecase",
|
usecases: "usecase",
|
||||||
ranks: "rank",
|
ranks: "rank",
|
||||||
|
custodys: "custody",
|
||||||
|
phases: "phase",
|
||||||
|
requirements: "requirement"
|
||||||
};
|
};
|
||||||
|
|
||||||
const schemaDir = "./schema";
|
const schemaDir = "./schema";
|
||||||
|
|
Loading…
Reference in a new issue