From de883b9f85292132903b1cd1a83f5a305a0dec23 Mon Sep 17 00:00:00 2001 From: tree Date: Sun, 17 Mar 2024 05:41:28 +0100 Subject: [PATCH] work on migration --- astro.config.mjs | 42 ++- public/docs-new/events/seasons.md | 12 - public/docs-new/funding-requests.md | 292 ------------------ public/docs-new/grants | 223 ------------- public/docs-new/research/diversity-privacy.md | 5 - ... block.png => explorer-activity-block.png} | Bin ... explorer-additional-product-features.png} | Bin ...dule.png => explorer-filtering-module.png} | Bin ...g block.png => explorer-funding-block.png} | Bin ...iew.png => explorer-platform-overview.png} | Bin ...lock.png => explorer-privacy-features.png} | Bin ...ures.png => explorer-product-features.png} | Bin ...s block.png => explorer-quick-preview.png} | Bin ...module.png => explorer-ranking-module.png} | Bin ...png => explorer-recommendations-block.png} | Bin ...s block.png => explorer-reviews-block.png} | Bin ...Team block.png => explorer-team-block.png} | Bin .../content/docs}/events/cfp.md | 4 +- .../content/docs}/events/formats.md | 6 +- .../content/docs}/events/index.md | 14 +- .../content/docs}/events/recording.md | 4 +- .../content/docs}/events/regional-teams.md | 4 +- src/content/docs/events/seasons.md | 12 + .../content/docs}/events/types.md | 6 +- .../content/docs}/news/week-in-the-privacy.md | 4 +- src/content/docs/projects/privacy-explorer.md | 24 +- .../research/Privacy-use-cases-UA-RU-war.md | 4 + .../content/docs}/research/annual-report.md | 4 +- .../research/ethereum-privacy-ecosystem.md | 4 +- .../content/docs}/research/grants.md | 4 + .../content/docs}/research/hackathon-pack.md | 4 +- .../content/docs}/research/hiring.md | 4 +- src/content/docs/research/index.md | 3 + .../content/docs}/research/pagency.md | 4 +- .../content/docs}/research/privacy-guides.md | 5 +- .../docs}/research/privacy-services-db.md | 4 + .../content/docs/research/scoring-model.md | 4 + .../content/docs}/research/usecase-db.md | 4 +- .../content/docs}/research/zk-solutions.md | 4 +- 39 files changed, 117 insertions(+), 587 deletions(-) delete mode 100644 public/docs-new/events/seasons.md delete mode 100644 public/docs-new/funding-requests.md delete mode 100644 public/docs-new/grants delete mode 100644 public/docs-new/research/diversity-privacy.md rename src/content/docs/assets/{Activity block.png => explorer-activity-block.png} (100%) rename src/content/docs/assets/{Additional product features.png => explorer-additional-product-features.png} (100%) rename src/content/docs/assets/{Filtering module.png => explorer-filtering-module.png} (100%) rename src/content/docs/assets/{Funding block.png => explorer-funding-block.png} (100%) rename src/content/docs/assets/{Explorer platform overview.png => explorer-platform-overview.png} (100%) rename src/content/docs/assets/{Privacy features block.png => explorer-privacy-features.png} (100%) rename src/content/docs/assets/{Product features.png => explorer-product-features.png} (100%) rename src/content/docs/assets/{Quick previes block.png => explorer-quick-preview.png} (100%) rename src/content/docs/assets/{Ranking module.png => explorer-ranking-module.png} (100%) rename src/content/docs/assets/{Recommendations block.png => explorer-recommendations-block.png} (100%) rename src/content/docs/assets/{Reviews block.png => explorer-reviews-block.png} (100%) rename src/content/docs/assets/{Team block.png => explorer-team-block.png} (100%) rename {public/docs-new => src/content/docs}/events/cfp.md (71%) rename {public/docs-new => src/content/docs}/events/formats.md (91%) rename {public/docs-new => src/content/docs}/events/index.md (97%) rename {public/docs-new => src/content/docs}/events/recording.md (83%) rename {public/docs-new => src/content/docs}/events/regional-teams.md (76%) create mode 100644 src/content/docs/events/seasons.md rename {public/docs-new => src/content/docs}/events/types.md (97%) rename {public/docs-new => src/content/docs}/news/week-in-the-privacy.md (99%) rename {public/docs-new => src/content/docs}/research/Privacy-use-cases-UA-RU-war.md (91%) rename {public/docs-new => src/content/docs}/research/annual-report.md (97%) rename {public/docs-new => src/content/docs}/research/ethereum-privacy-ecosystem.md (98%) rename {public/docs-new => src/content/docs}/research/grants.md (93%) rename {public/docs-new => src/content/docs}/research/hackathon-pack.md (97%) rename {public/docs-new => src/content/docs}/research/hiring.md (95%) rename {public/docs-new => src/content/docs}/research/pagency.md (89%) rename {public/docs-new => src/content/docs}/research/privacy-guides.md (95%) rename {public/docs-new => src/content/docs}/research/privacy-services-db.md (98%) rename public/docs-new/research/Scoring-model.md => src/content/docs/research/scoring-model.md (99%) rename {public/docs-new => src/content/docs}/research/usecase-db.md (93%) rename {public/docs-new => src/content/docs}/research/zk-solutions.md (93%) diff --git a/astro.config.mjs b/astro.config.mjs index a14158a8..ec4accb4 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -15,13 +15,18 @@ export default defineConfig({ src: './public/logo.svg', replacesTitle: true }, + editLink: { + baseUrl: 'https://github.com/web3privacy/docs/tree/main/', + }, + lastUpdated: true, + favicon: '/favicon.ico', customCss: [ './src/styles/custom.css' ], sidebar: [ { label: 'Introduction', link: '/' }, { - label: 'About Web3Privacy Now', + label: 'About us', items: [ // Each item here is one entry in the navigation menu. { label: 'Manifesto', link: '/manifesto' }, @@ -35,24 +40,27 @@ export default defineConfig({ label: 'Projects', items: [ // Each item here is one entry in the navigation menu. - { label: 'Research', link: '/research' }, - { label: 'Privacy Explorer', link: '/projects/privacy-explorer' }, + { + label: 'πŸ”¬ Research', + collapsed: true, + autogenerate: { directory: 'research' }, + }, + { + label: 'πŸ“… Events', + collapsed: true, + autogenerate: { directory: 'events' }, + }, + { label: 'πŸ‘οΈ Privacy Explorer', link: '/projects/privacy-explorer' }, + { label: 'πŸ“° Week in the Privacy', link: '/news/week-in-the-privacy' }, + { label: 'πŸ† Privacy Tech Awards', link: '/projects/privacy-tech-awards' }, ], }, - { + /*{ label: 'Future concepts', items: [ { label: 'Privacy Tech Awards', link: '/projects/privacy-tech-awards' } ] - }, - { - label: 'Tools', - items: [ - { label: 'Git repositories', link: '/git' }, - { label: 'Communication tools', link: '/communication' }, - { label: 'Workgroups', link: '/workgroups' } - ] - }, + },*/ { label: 'Community', items: [ @@ -70,6 +78,14 @@ export default defineConfig({ { label: 'Code of conduct', link: '/code-of-conduct' }, ] }, + { + label: 'Tools', + items: [ + { label: 'Git repositories', link: '/git' }, + { label: 'Communication tools', link: '/communication' }, + { label: 'Workgroups', link: '/workgroups' } + ] + }, { label: 'Governance', items: [ diff --git a/public/docs-new/events/seasons.md b/public/docs-new/events/seasons.md deleted file mode 100644 index 8ecfd772..00000000 --- a/public/docs-new/events/seasons.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -sidebar_position: 1 ---- - -# List of seasons - -| Season | Regions | Events | Countries | Cities | Talks | People | Budget | -| --- | --- | --- | --- | --- | --- | --- | --- | -| 2024 (ongoing) | Europe, Devcon | >15 | >10 | >10 | >70 | >1000 | $100-150k | -| **2023** | Europe | 3 | 2 | 2 | 29 | 334 | ~$16k | - -Last updated: 16.03.2024 \ No newline at end of file diff --git a/public/docs-new/funding-requests.md b/public/docs-new/funding-requests.md deleted file mode 100644 index d6fe9c4f..00000000 --- a/public/docs-new/funding-requests.md +++ /dev/null @@ -1,292 +0,0 @@ -# Funding Requests -![1500x500](https://github.com/web3privacy/grants/assets/101947219/2b2b6ba7-09ba-4b9b-a5e8-65610e3afc1b) - - -# ⌭ Introduction -In our dedication to enhancing privacy and security in the Web3 ecosystem, we showcase our projects and ideas seeking financial support to foster R&D on specific verticals: - -βš›οΈŽ [Web3privacy Now ecosystem](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#%EF%B8%8E-web3privacy-now-platform) - -βš›οΈŽ [Scoring model for privacy assessment](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#%EF%B8%8E-scoring-model-for-privacy-assessment) - -✡ [Explorer](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#-privacy-beats) - -⌬ [Privacy Annual Report 2023](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#-privacy-annual-report-2023) - -⍚ [Privacy Checker Tool](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#-privacy-checker-tool) - -βŽ† [Privacy Guides](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#-privacy-guides) - -βŽ† [Hackathon Curation Pack](https://github.com/web3privacy/docs/blob/main/docs/funding-requests.md#-hackathon-curation-pack) - -> _We are looking for partners, not advertisers._ - -For more information about our [Ecosystem](https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/_ykJ2VOcRrH720OZTy0tT1kjrgP5kdc0Vykb0VVle0w) please visit the About page on our website. - -# Our Work - -### Delivered (Retroactive Grants) - -| Project | Category | Link | -| ------------- | ------------- | ------------- | -| The biggest privacy-centric DB with 500+ projects and services delivering web3-privacy | Research | [link](https://github.com/web3privacy/web3privacy) | -| Pagency framework for privacy-ideas generation for developers | Research | [link](https://github.com/web3privacy/web3privacy/tree/main/Pagency) | -| 130-pages long privacy market report | Research | [link](https://medium.com/@Svyazniy/privacy-market-outlook-in-web3-report-35a96c35b6ae) | -| Privacy Summit "W3PN ecosystem Launch", Prague, 5 May 2023 | Event | [link](https://prague.web3privacy.info/) | -| Zcash grant on privacy use-case research within the Ukrainian-Russian war | Research | [link](https://github.com/web3privacy/Grants/blob/main/w3p-01.md) | -| Privacy market map | Research | [link](https://github.com/web3privacy/web3privacy/blob/main/Market%20overview/Web3privacy%20landscape%20(jan%202023).jpg) | - -_Discover all historical deliverables in_ [docs](https://docs.web3privacy.info/history) - -### Under Development - -| Project | Description | Category | Link | -| ------------- | ------------- | ------------- | ------------- | -| Web3privacy Now Ecosystem | A comprehensive point-of-entry to ecosystem | Community | [link](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-beat) | -| Explorer | Ranking system of all privacy-related projects in the Web3 | Platform | [link](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-beat) | -| Privacy Checker Tool | TBD | Research | [link](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-checker-tool) | -| Updating general database | TBD | Research | [link](https://github.com/web3privacy/web3privacy/blob/main/README.md) | - -# βš›οΈŽ Web3privacy Now Ecosystem -_"One ring to bring them all"_ β†’ A comprehensive point-of-entry to ecosystem. Helping wide audience find all useful links, explore current projects, collaborate & support us. - -**Details** - -The goal is to make the concept of privacy easily accessible, understandable, and actionable for everyone, fostering a deeper collaboration and engagement with our initiatives. - -_This project is currently supported by Ethereum Foundation._ - -## Readiness: -- Website: 80% -- Data & Research: 90% -- Explorer: 65% -- Privacy Guides: 20% - -## Project Overall Timings: -- Docs delivery: 30 days -- Website: 30 days - -## Milestones - -### 1. Documentation -- Timing: 2 weeks -- Budget: 2,000 USD - -| Task | Description | -| ------------- | ------------- | -| Information & stakeholder search| Fill ecosystem-related information into [docs](http://docs.web3privacy.info) | -| Ecosystem documenting | Document every research (completed, on-going & backlog) | -| Content aggregation | Aggregate all links, documents, useful assets (like infographics) | - -### 2. Design & content -- Timing: 3 weeks -- Budget: 1,000 USD - -### Tasks - -| Task | Description | -| ------------- | ------------- | -| UI | Prototype UI | -| Content | Add basic content | -| Test | Make clickable prototype | - -### 3. Web-design -- Timing: 2 weeks -- Budget: 2,000 USD - -### Tasks - -| Task | Description | -| ------------- | ------------- | -| Front-end | Brief front-end dev | -| Back-end | Sync with the back-end | -| MVP | Deploy beta version (incl mobile-ready) | -| QA | Test & fix bugs | - -# βš›οΈŽ Scoring model for privacy assessment -Expert based scoring model that helps non-techies & techies to assess privacy claims of the web3 services. - -## Milestones - -## 1. Objective | create a privacy assessment playbook for non-techies. - -### Timing: -- 21 days - -### Tasks: -- Analyse non-techies assessment (raw data behind 56 privacy projects) from the field [interview](https://docs.google.com/spreadsheets/d/1JWpAsGL10UTsVeuIVbouzUxRjaSPUAamxcbFljXuUWE/edit?usp=sharing) -- A model potential framework by applying different filters (time on assessment, complexity, web3 literacy grades) -- Create a framework for the assessment & test on non-techies (50 people from managers to designers, web3 & non-web3, different cultures, genders, markets) -- Update framework with interview data -- Make an easy to understandable & actionable playbook (format: PDF) for non-techies (general overview, assessment framework for non-techies, assessment journey examples - 5 different projects) - -## 2. Objective | create a privacy assessment playbook for techies. - -### Timing: -- 30 days - -### Tasks: -- Receive 50 builders’ feedback (from juniors to CTOs) on a techies professional levelling [assumption](https://docs.google.com/spreadsheets/d/1JWpAsGL10UTsVeuIVbouzUxRjaSPUAamxcbFljXuUWE/edit?usp=sharing) -- Expand the technical proficiency model & apply it to initial [feedback](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/Scoringmodel.md) from privacy professionals -- Prototype framework for privacy assessment for techies (tested model, well-written research methodology, links to the initial research) -- Upload the model on GitHub in a Docusaurus wiki -- Setup & launch the Discourse forum (share invites to the privacy professionals for collaboration) -- Collect & review feedback publicly via the forum (validate model with the broader community) -- Update both models (for non-techies & techies) + perform 1on1s via ETH Zurich & ETH Dam - -## 3. Objective | Non-techies & techies models website deployment & community building - -### Timing: -- 30 days - -### Tasks: -- Updating both models into explicit guides (wiki-based) -- Visualisation of the user flows (examples & case studies) -- Privacy project assessment card prototyping (for forum discussion, communal feedback, update & publishing as a benchmarks) -- design + basic branding -- copywriting -- DB sync -- CMS -- QA -- GitHub publishing - -### Deliveries - -* **Playbook**: _Privacy-services' scoring model for non-techies (playbook)_: [Mirror](https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/90XEXa7AG_qc-VgYKs40i88xB1HF97gr1zqb-qvnif0) -* **Research**: _Scoring matching: Brief, Non-techies validity, MVP_: [GitHub](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/scoringmodel/Data%20brief%20%26%20scoring%20model%20comparison.md) -* **Article**: _From scoring model to interfaces: Web3privacy now_: [Mirror](https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/f3EXL1pAuI6gusHf_soq9KopU8ABC1EcV002FFlYKoM) -* **Article**: _Making web3-privacy assessment research: public feedback_: [Mirror](https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/E9QPx9iKgPXPqEsAN-YklipSRJy9VTBMOLwwEcqqVpU) -* **Research**: _Scoring model testing repo_: [GitHub](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/scoringmodel/DeFi%20category%20prototype.md) -* **Research**: _Framework for the privacy assessment for non-techies_: [PDF](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/scoringmodel/Web3Privacy%20Now%20scoring%20platform_test%20framework.pdf) - -## Team -- Project Manager: Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- R&D: [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree) - -# ✡ Explorer - -## Project Overview -A ranking system of all privacy-related projects in the Web3. - -- [Project details](https://docs.web3privacy.info/projects/db) -- [Live Demo](https://taikai.network/ethrome/hackathons/ethrome-23/projects/clng508ts00lswu01030hpfuq/idea) - -A ranking system of all privacy-related projects in the Web3 could help a lot the users to discern and decide who to trust and how to manage their sensible data. - -That is why we are developing this comprehensive platform to empower the general public in making informed decisions about the services they choose to trust by clearly and quickly check the privacy levels and security of various Web3 services. - -![Group 4100](https://github.com/web3privacy/docs/assets/101947219/517e6e1f-af4e-4b0c-b3e4-ce017472c1ee) - -Our approach includes the development of an innovative scoring system, incorporating both expert analysis and community input, to offer impartial resources for evaluating projects - -### Delivery -* **Design**: _Explorer UI_: [GitHub](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/UI/Readme.md), [V1.0](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/UI/Readme.md#v10-eth-rome-prototype),[V1.1](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/UI/Readme.md#v11-post-ethrome-update), [V 1.1 mobile](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/UI/Readme.md#v11-post-ethrome-update-mobile-version), [V1.2](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/UI/Readme.md#v12-post-ethrome-update-basic-scoring-x-brief-sync) -* **Research**: _Explorer breaf_: [Brief](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/Brief.md). Pull requests by [Railgun_](https://github.com/web3privacy/web3privacy/pull/31), [Waku](https://github.com/web3privacy/web3privacy/pull/35), [Lit](https://github.com/web3privacy/web3privacy/pull/34), [Brume](https://github.com/web3privacy/web3privacy/pull/38), [Webb](https://github.com/web3privacy/web3privacy/pull/37) -* **Research**: _Scoring matching: Brief, Non-techies validity, MVP_: [GitHub](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/scoringmodel/Data%20brief%20%26%20scoring%20model%20comparison.md) -* **Research**: _Explorer product features_: [GitHub](https://github.com/web3privacy/web3privacy/tree/main/Web3privacynowplatform/scoringmodel/Product%20features) -* **Research**: _Data Manifest for Explorer platform_: [GitHub](https://github.com/web3privacy/data/tree/main#readme) -* **Research**: Explorer data survey_: [Typeform](https://gy0n92ttldn.typeform.com/to/clX8HhGi) - -### References: -- [l2beat](https://l2beat.com/scaling/risk) -- [certik](https://www.certik.com/) -- [metacritic](https://www.metacritic.com/about-metascores) -- [Clutch](https://clutch.co/methodology) - -### Scoring Mechanism's details -Professional scoring would be a joint R&D with the key web3 people from protocol architects to security specialists. We are collecting feedbacks from privacy experts from the Ethereum Foundation, Railgun, Waku, NYM... while building on the experience of active members from both solar and lunarpunk communities. - -This will help to create an unbiased take from scratch & enabling a transparent working process, accessible to everyone via a forum. - -In parallel to the top-down scorecard method, we'll develop and implement a bottom-up community scoring platform too (think of Metacritic exters + users scorings) -> at the end of the day it's the users who have to become the real watchdogs of the industry, signaling about flaws and shortcomings of solutions. - -We interviewed 100 privacy players & gathered an MVP vision β€” we are running a series of 1-on-1 feedback loop sessions to make the scoring model community validated. - -### Readiness -- Data: 70% -- Platform: 75% -- Scoring Mechanism: 20% - -## Milestones -- [31st Dec 2023] Scoring model v 1.0 + experts validation: -functionality mapping (incl. UX/UI research), copywriting, basic brand design system, scoring model applicability to +150 privacy-preserving web3 projects - -- [3 to 5 months] Scoring model v 2.0 : -advanced functionalities, scoring model applicability to +500 privacy-preserving web3 projects - -### Budget -- Platform v1.0: 10,000 USD -- Platform v2.0: 8,000 USD -- Maintainance (annual): 15,000 USD - -### Team -- Core project manager > Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- Research track: [Mykola Siusko](https://github.com/Msiusko), [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree), [Cryptomar1o](https://github.com/cryptomar1o) - -# ⌬ Privacy Annual Report 2023 - -### Project Overview -Following our [Privacy Market Overview](https://github.com/web3privacy/web3privacy/blob/main/Market%20overview/Privacy%20market%20outlook%20in%20Web3%20by%20Mykola%20Siusko%20(Jan%202023).pdf) (Jan 2023) we intend to produce a comprehensive report to showcase all happenings and achievements of the year. This will consist in structuring the overall picture of the web3-privacy market and exploring hundreds of independent companies - and their connections - with the potential for unity and collaboration. - -### Ecosystem/Market fit - Why is it important now? -Navigating the complex and delicate realm of privacy is very challenging. Although the focus has recently been put back on this foundamental issue, there is a lack of comprehensive overview and there is still little collaboration in this regard. With regulators centralizing the market and surveillance on the rise, the need for privacy champions is clear, especially with actions against private crypto and platforms like Tornado Cash highlighting the risks. Rather than vying for the top tech and perk, we should work together to create a web that prioritizes our collective privacy. - -## Milestones -- Make market survey (50+ experts) -- Collide draft information in 1 place [Skiff Docs](https://app.skiff.com/docs/6c928739-abe6-4643-a9a7-b839a980f846#bhicLRLBDkO2AFyBFErHer37PFKfOjDAWtkZBopv4ns%3D) -- Design report -- Final 100+ pages PDF with visuals and metrics - -### Budget -- 5,000 USD - -### Team -- [Mykola Siusko](https://github.com/Msiusko) -- [PG](https://github.com/EclecticSamurai) - -# ⍚ Privacy Checker Tool - -The "Privacy Checker" is an invaluable and pragmatic tool designed to empower individuals (general public) and organizations by equipping them with insights, information on privacy options and transparency. An effortless way to assess the feasibility of conducting anonymous transactions within the context of the current market conditions. - -In an era where online privacy and security have become paramount concerns, the Privacy Checker emerges as a user-friendly resource, enabling users to make informed decisions. It simplifies a complex process, making it accessible to everyone, from the tech-savvy to those new to the world of cryptocurrencies and digital transactions. - -![PRIVACY ROUTER](https://github.com/web3privacy/grants/assets/101947219/8c4f0a22-2f2d-4683-be8c-0dde686e9ee3) -![PRIVACY-SOLUTIONS](https://github.com/web3privacy/grants/assets/101947219/07cbeb15-36c1-447c-b5ff-6d5d56c44722) - -The tool doesn't just cater to the needs of the seasoned blockchain enthusiasts but extends its utility to those seeking more privacy-conscious transactions in an increasingly interconnected digital landscape. With "Privacy Checker," users are empowered to navigate the intricate web of privacy measures efficiently, ensuring their data and assets remain secure. - -## Milestones -TBD - -### Budget -TBD - -### Team -- Project Managers > Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) | [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree), [Cryptomar1o](https://github.com/cryptomar1o) - -# βŽ† Privacy guides -Extensive privacy guides covering broad audiences from Iranian human rights activists to Ukrainian people living on occupied territories. - -Practical guides will match: -- existing privacy solutions from Sismo to NYM with privacy-personas (NGOs, anon donors, activists). -- non-tech people with accessible privacy solutions (with the focus on human rights & sensitive audiences) -- tech-people with advanced privacy solutions & practices - -### Team -- Project Manager: Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- R&D: [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree) - -# βŽ† Hackathon Curation Pack: -Hacker Manuals & Privacy Guidelines to help the builders to uderstand actual issues in the market. - -### Delivered -**Research**: _Pagency framework - tool to facilitate impactful privacy-enhancing ideas for developers_: [GitHub](https://github.com/web3privacy/web3privacy/tree/main/Pagency), [PDF](https://github.com/web3privacy/web3privacy/blob/main/Pagency/Pagency%20-%20privacy%20use-case%20facilitation%20framework.pdf), [Template](https://github.com/web3privacy/web3privacy/blob/main/Pagency/Privacy%20framework%20template.pptx) - -### Team -- Project Manager: Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- R&D: [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree) diff --git a/public/docs-new/grants b/public/docs-new/grants deleted file mode 100644 index 32b0c468..00000000 --- a/public/docs-new/grants +++ /dev/null @@ -1,223 +0,0 @@ -# Web3Privacy Now Funding Requests -![1500x500](https://github.com/web3privacy/grants/assets/101947219/2b2b6ba7-09ba-4b9b-a5e8-65610e3afc1b) - -# ⌭ Introduction -In our dedication to enhancing privacy and security in the Web3 ecosystem, we showcase our projects and ideas seeking financial support to foster R&D on specific verticals: - -βš›οΈŽ [Web3privacy Now Platform](https://github.com/web3privacy/grants/blob/main/README.md#%EF%B8%8E-web3privacy-now-platform) - -✡ [PrivacyBeats](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-beat) - -⌬ [Privacy Annual Report 2023](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-annual-report-2023) - -⍚ [Privacy Checker Tool](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-checker-tool) - -βŽ† [Privacy Guides](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-guides) - -βŽ† [Hackathon Curation Pack](https://github.com/web3privacy/grants/blob/main/README.md#-hackathon-curation-pack) - -> _We are looking for partners, not advertisers._ - -For more information about our [Ecosystem](https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/_ykJ2VOcRrH720OZTy0tT1kjrgP5kdc0Vykb0VVle0w) please visit the About page on our website. - -# Our Work - -### Delivered - Retroactive Grants -- The biggest privacy-centric [database](https://github.com/web3privacy/web3privacy) with 500+ projects and services delivering web3-privacy -- [Pagency framework](https://github.com/web3privacy/web3privacy/tree/main/Pagency) for privacy-ideas generation for builders -- 130-pages long market and diversity [report](https://medium.com/@Svyazniy/privacy-market-outlook-in-web3-report-35a96c35b6ae) -- ZK-centric privacy-services [database](https://github.com/web3privacy/web3privacy/tree/main/ZKprivacylandscape) -- Privacy market [map](https://github.com/web3privacy/web3privacy/blob/main/Market%20overview/Web3privacy%20landscape%20(jan%202023).jpg) -- Zcash grant on privacy use-case [research](https://github.com/web3privacy/Grants/blob/main/w3p-01.md) within the Ukrainian-Russian war -- [Summit]"Ecosystem Launch"(https://prague.web3privacy.info/), Prague, 5 May 2023, -- Summit #2 "Community 1st - Rome Takeover", Rome, 5 Oct 2023 - -### Under Development -- [PrivacyBeats](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-beat) - Ranking system of all privacy-related projects in the Web3 -- [Privacy Checker Tool](https://github.com/web3privacy/grants/blob/main/README.md#-privacy-checker-tool) -- Updating [general database](https://github.com/web3privacy/web3privacy/blob/main/README.md) with the market stats for future research: % of the token projects, % of the anon/public teams, product liveliness, privacy delivery (year-to-year comparison), ecosystem-to-ecosystem comparison -- Web3Privacy Now Platform - -# βš›οΈŽ Web3privacy Now Platform -_"One ring to bring them all"_ β†’ A comprehensive website to showcase our ecosystem to a wide audience, featuring an interactive and comprehensive collection of our activities and projects. - -Its goal is to make the concept of privacy easily accessible, understandable, and actionable for everyone, fostering a deeper connection and engagement with our initiatives. - -This project is currently supported by Ethereum Foundation. - -## Readiness: -- Website: 80% -- Data & Research: 90% -- Privacy Beat: 65% -- Privacy Guides: 20% - -## Timings: -- GitHub publishing: 30 days - -## Deliverables: - -### 1. Objective | create a privacy assessment playbook for non-techies. - -Timing: 21 days - -Tasks: -- Analyse non-techies assessment (raw data behind 56 privacy projects) from the field [interview](https://docs.google.com/spreadsheets/d/1JWpAsGL10UTsVeuIVbouzUxRjaSPUAamxcbFljXuUWE/edit?usp=sharing) -- A model potential framework by applying different filters (time on assessment, complexity, web3 literacy grades) -- Create a framework for the assessment & test on non-techies (50 people from managers to designers, web3 & non-web3, different cultures, genders, markets) -- Update framework with interview data -- Make an easy to understandable & actionable playbook (format: PDF) for non-techies (general overview, assessment framework for non-techies, assessment journey examples - 5 different projects) - - -### 2. Objective | create a privacy assessment playbook for techies. - -Timing: 30 days - -Tasks: -- Receive 50 builders’ feedback (from juniors to CTOs) on a techies professional levelling [assumption](https://docs.google.com/spreadsheets/d/1JWpAsGL10UTsVeuIVbouzUxRjaSPUAamxcbFljXuUWE/edit?usp=sharing) -- Expand the technical proficiency model & apply it to initial [feedback](https://github.com/web3privacy/web3privacy/blob/main/Web3privacynowplatform/Scoringmodel.md) from privacy professionals -- Prototype framework for privacy assessment for techies (tested model, well-written research methodology, links to the initial research) -- Upload the model on GitHub in a Docusaurus wiki -- Setup & launch the Discourse forum (share invites to the privacy professionals for collaboration) -- Collect & review feedback publicly via the forum (validate model with the broader community) -- Update both models (for non-techies & techies) + perform 1on1s via ETH Zurich & ETH Dam - -### 3. Objective | Non-techies & techies models website deployment & community building - -Timing: 30 days - -Tasks: -- Updating both models into explicit guides (wiki-based) -- Visualisation of the user flows (examples & case studies) -- Privacy project assessment card prototyping (for forum discussion, communal feedback, update & publishing as a benchmarks) -- design + basic branding -- copywriting -- DB sync -- CMS -- QA -- GitHub publishing - -### Team -- Project Manager: Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- R&D: [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree) - -# ✡ Privacy Beats - -### Project Overview -In the digital age, privacy is not just a priority but a fundamental human right. Motivated by this belief, we are pioneering a ranking system that empowers the general public to discern the privacy levels of various Web3 services. Our approach includes the development of an innovative scoring system, incorporating both expert analysis and community input, to offer impartial resources for evaluating projects. - -The aim is to assist users in making informed decisions about the services they choose to trust. - -- [Live Demo](https://taikai.network/ethrome/hackathons/ethrome-23/projects/clng508ts00lswu01030hpfuq/idea) - -### References: -- [l2beat](www.l2beat.com) -- [certik](www.certik.com) -- [metacritic](https://www.metacritic.com/about-metascores) -- [Clutch](https://clutch.co/methodology) - -### Ecosystem/Market fit - Why this is important now -Despite the foundational role that privacy is meant to play in shaping Web3, genuinely impactful initiatives remain scarce. Many projects leverage the concept of privacy as a buzzword or for public relations advantage, rather than addressing tangible issues or enacting substantial changes at the infrastructural and transactional level. -That's why a ranking system of all privacy-related projects in the Web3 could help a lot the users to discern. - -Screenshot 2023-01-28 at 16 26 46 - -### About Scoring Mechanism: -Professional scoring would be a joint R&D with the key web3 people from protocol architects to security specialists. We are collecting feedbacks from privacy experts from the Ethereum Foundation, Railgun, Waku, NYM... while building on the experience of active members from both solar and lunarpunk communities. This will help to create an unbiased take from scratch & enabling a transparent working process, accessible to everyone via a forum. - -In parallel to the top-down scorecard method, we'll develop and implement a bottom-up community scoring platform too (think of Metacritic exters + users scorings) -> at the end of the day it's the users who have to become the real watchdogs of the industry, signaling about flaws and shortcomings of solutions. - -We interviewed 100 privacy players & gathered an MVP vision β€” we are running a series of 1-on-1 feedback loop sessions to make the scoring model community validated. - -### Readiness -- Data: 70% -- Platform: 75% -- Scoring Mechanism: 20% - -### Deliverables & Timings: -- [31st Dec 2023] Scoring model v 1.0 + experts validation: -functionality mapping (incl. UX/UI research), copywriting, basic brand design system, scoring model applicability to +150 privacy-preserving web3 projects - -- [3 to 5 months] Scoring model v 2.0 : -advanced functionalities, scoring model applicability to +500 privacy-preserving web3 projects - -### Budget -- Platform v1.0: 10k -- Platform v2.0: 8k -- Maintainance: 15k - -### Team -- Core project manager > Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- Research track: [Mykola Siusko](https://github.com/Msiusko), [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree), [Cryptomar1o](https://github.com/cryptomar1o) - - -# ⍚ Privacy Checker Tool - -The "Privacy Checker" is an invaluable and pragmatic tool designed to empower individuals (general public) and organizations by equipping them with insights, information on privacy options and transparency. An effortless way to assess the feasibility of conducting anonymous transactions within the context of the current market conditions. - -In an era where online privacy and security have become paramount concerns, the Privacy Checker emerges as a user-friendly resource, enabling users to make informed decisions. It simplifies a complex process, making it accessible to everyone, from the tech-savvy to those new to the world of cryptocurrencies and digital transactions. - -![PRIVACY ROUTER](https://github.com/web3privacy/grants/assets/101947219/8c4f0a22-2f2d-4683-be8c-0dde686e9ee3) -![PRIVACY-SOLUTIONS](https://github.com/web3privacy/grants/assets/101947219/07cbeb15-36c1-447c-b5ff-6d5d56c44722) - -The tool doesn't just cater to the needs of the seasoned blockchain enthusiasts but extends its utility to those seeking more privacy-conscious transactions in an increasingly interconnected digital landscape. With "Privacy Checker," users are empowered to navigate the intricate web of privacy measures efficiently, ensuring their data and assets remain secure. - -### Deliverables & Timings: -- [30 Nov 2023] [Non-tech Playbook](https://mirror.xyz/0x0f1F3DAf416B74DB3DE55Eb4D7513a80F4841073/90XEXa7AG_qc-VgYKs40i88xB1HF97gr1zqb-qvnif0) release -- [5 Jan 2024] Tech Playbook release -- [Feb 2024] Scoring Model v1.0 -- [May 2024] Scoring Model v2.0 - -### Budget -- Tech Playbook: 8k -- Scoring Model v1.0: 15k -- Scoring Model v2.0: 25k - -### Team -- Project Managers > Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) | [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree), [Cryptomar1o](https://github.com/cryptomar1o) - -# βŽ† Privacy guides: -Extensive privacy guides covering broad audiences from Iranian human rights activists to Ukrainian people living on occupied territories. - -Practical guides will match: -- existing privacy solutions from Sismo to NYM with privacy-personas (NGOs, anon donors, activists). -- non-tech people with accessible privacy solutions (with the focus on human rights & sensitive audiences) -- tech-people with advanced privacy solutions & practices - -### Team -- Project Manager: Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- R&D: [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree) - -# βŽ† Hackathon Curation Pack: -Hacker Manuals & Privacy Guidelines to help the builders to uderstand actual issues in the market. - -### Team -- Project Manager: Mykola Siusko [GitHub](https://github.com/Msiusko), [Twitter](https://twitter.com/nicksvyaznoy), [LinkedIn](https://www.linkedin.com/in/siusko/) -- R&D: [PG](https://github.com/EclecticSamurai) -- Product:[Coinmandeer](https://github.com/coinmandeer), [Tree](https://github.com/burningtree) - -# ⌬ Privacy Annual Report 2023 - -### Project Overview -Following our [Privacy Market Overview](https://github.com/web3privacy/web3privacy/blob/main/Market%20overview/Privacy%20market%20outlook%20in%20Web3%20by%20Mykola%20Siusko%20(Jan%202023).pdf) (Jan 2023) we intend to produce a comprehensive report to showcase all happenings and achievements of the year. This will consist in structuring the overall picture of the web3-privacy market and exploring hundreds of independent companies - and their connections - with the potential for unity and collaboration. - -### Ecosystem/Market fit - Why is it important now? -Navigating the complex and delicate realm of privacy is very challenging. Although the focus has recently been put back on this foundamental issue, there is a lack of comprehensive overview and there is still little collaboration in this regard. With regulators centralizing the market and surveillance on the rise, the need for privacy champions is clear, especially with actions against private crypto and platforms like Tornado Cash highlighting the risks. Rather than vying for the top tech and perk, we should work together to create a web that prioritizes our collective privacy. - -### Deliverables: -- Draft of 100+ pages -- Final 100+ pages PDF with visuals and metrics - -### Budget -- 5k - -### Team -- [Mykola Siusko](https://github.com/Msiusko) -- [PG](https://github.com/EclecticSamurai) - - -![Group 3692(2)](https://github.com/web3privacy/grants/assets/101947219/b2db8370-c363-4eda-a132-419891c82455) - diff --git a/public/docs-new/research/diversity-privacy.md b/public/docs-new/research/diversity-privacy.md deleted file mode 100644 index b79f953e..00000000 --- a/public/docs-new/research/diversity-privacy.md +++ /dev/null @@ -1,5 +0,0 @@ -| Research | Info | Link | -| ------------- | ------------- | ------------- | -| Diversity in privacy market | _State of diversity within the privacy market: general cultural practices, actual issues, metrics._ | [link](https://medium.com/@Svyazniy/diversity-in-the-web3-privacy-market-outlook-1a7ccefc872) | - -Status: delivered diff --git a/src/content/docs/assets/Activity block.png b/src/content/docs/assets/explorer-activity-block.png similarity index 100% rename from src/content/docs/assets/Activity block.png rename to src/content/docs/assets/explorer-activity-block.png diff --git a/src/content/docs/assets/Additional product features.png b/src/content/docs/assets/explorer-additional-product-features.png similarity index 100% rename from src/content/docs/assets/Additional product features.png rename to src/content/docs/assets/explorer-additional-product-features.png diff --git a/src/content/docs/assets/Filtering module.png b/src/content/docs/assets/explorer-filtering-module.png similarity index 100% rename from src/content/docs/assets/Filtering module.png rename to src/content/docs/assets/explorer-filtering-module.png diff --git a/src/content/docs/assets/Funding block.png b/src/content/docs/assets/explorer-funding-block.png similarity index 100% rename from src/content/docs/assets/Funding block.png rename to src/content/docs/assets/explorer-funding-block.png diff --git a/src/content/docs/assets/Explorer platform overview.png b/src/content/docs/assets/explorer-platform-overview.png similarity index 100% rename from src/content/docs/assets/Explorer platform overview.png rename to src/content/docs/assets/explorer-platform-overview.png diff --git a/src/content/docs/assets/Privacy features block.png b/src/content/docs/assets/explorer-privacy-features.png similarity index 100% rename from src/content/docs/assets/Privacy features block.png rename to src/content/docs/assets/explorer-privacy-features.png diff --git a/src/content/docs/assets/Product features.png b/src/content/docs/assets/explorer-product-features.png similarity index 100% rename from src/content/docs/assets/Product features.png rename to src/content/docs/assets/explorer-product-features.png diff --git a/src/content/docs/assets/Quick previes block.png b/src/content/docs/assets/explorer-quick-preview.png similarity index 100% rename from src/content/docs/assets/Quick previes block.png rename to src/content/docs/assets/explorer-quick-preview.png diff --git a/src/content/docs/assets/Ranking module.png b/src/content/docs/assets/explorer-ranking-module.png similarity index 100% rename from src/content/docs/assets/Ranking module.png rename to src/content/docs/assets/explorer-ranking-module.png diff --git a/src/content/docs/assets/Recommendations block.png b/src/content/docs/assets/explorer-recommendations-block.png similarity index 100% rename from src/content/docs/assets/Recommendations block.png rename to src/content/docs/assets/explorer-recommendations-block.png diff --git a/src/content/docs/assets/Reviews block.png b/src/content/docs/assets/explorer-reviews-block.png similarity index 100% rename from src/content/docs/assets/Reviews block.png rename to src/content/docs/assets/explorer-reviews-block.png diff --git a/src/content/docs/assets/Team block.png b/src/content/docs/assets/explorer-team-block.png similarity index 100% rename from src/content/docs/assets/Team block.png rename to src/content/docs/assets/explorer-team-block.png diff --git a/public/docs-new/events/cfp.md b/src/content/docs/events/cfp.md similarity index 71% rename from public/docs-new/events/cfp.md rename to src/content/docs/events/cfp.md index 8204e901..1e647619 100644 --- a/public/docs-new/events/cfp.md +++ b/src/content/docs/events/cfp.md @@ -1,4 +1,6 @@ -# Call for Proposals (CfP) +--- +title: Call for Proposals (CfP) +--- Our [events](/events/) are open to all privacy enthusiasts. diff --git a/public/docs-new/events/formats.md b/src/content/docs/events/formats.md similarity index 91% rename from public/docs-new/events/formats.md rename to src/content/docs/events/formats.md index 06a97c7d..c6922339 100644 --- a/public/docs-new/events/formats.md +++ b/src/content/docs/events/formats.md @@ -1,9 +1,9 @@ --- -sidebar_position: 3 +title: Program formats +sidebar: + order: 4 --- -# Program formats - At each event, the program is made up of [slots](/events#slots) that are filled with different formats. ## Formats overview diff --git a/public/docs-new/events/index.md b/src/content/docs/events/index.md similarity index 97% rename from public/docs-new/events/index.md rename to src/content/docs/events/index.md index 2949be4f..f424543e 100644 --- a/public/docs-new/events/index.md +++ b/src/content/docs/events/index.md @@ -1,10 +1,10 @@ --- -sidebar_position: 1 -sidebar_label: Events Introduction +title: Events +sidebar: + label: Events introduction + order: 1 --- -# Events - | Lead | Links | Workgroup | | --- | --- | --- | | @Tree | β€’ Events list: [web3privacy.info/events](https://web3privacy.info/events)
β€’ lu.ma calendar: [lu.ma/web3privacy](https://lu.ma/web3privacy) | [PM](https://github.com/orgs/web3privacy/projects/7), [GitHub](https://github.com/web3privacy/events), [Matrix](https://matrix.to/#/#w3p-events:gwei.cz) | @@ -19,9 +19,7 @@ We aim to produce high quality events that bring a very similar atmosphere and c * [web3privacy.info/events](https://web3privacy.info/events) -import EventListScreen from '../assets/events-list.png'; - - +![](../assets/events-list.png) ## Structured data source @@ -113,7 +111,7 @@ We divide events into different types according to their length and purpose. Example: *Summit, Meetup, Hackathon* etc. -[List of event types β†’](./types) +[List of event types β†’](/events/types) ## Slots diff --git a/public/docs-new/events/recording.md b/src/content/docs/events/recording.md similarity index 83% rename from public/docs-new/events/recording.md rename to src/content/docs/events/recording.md index ea2a6d91..08c7e64e 100644 --- a/public/docs-new/events/recording.md +++ b/src/content/docs/events/recording.md @@ -1,4 +1,6 @@ -# Recording setup +--- +title: Recording setup +--- All content at our events is recorded (unless stated otherwise). diff --git a/public/docs-new/events/regional-teams.md b/src/content/docs/events/regional-teams.md similarity index 76% rename from public/docs-new/events/regional-teams.md rename to src/content/docs/events/regional-teams.md index 83c54d29..11f9bd26 100644 --- a/public/docs-new/events/regional-teams.md +++ b/src/content/docs/events/regional-teams.md @@ -1,9 +1,7 @@ --- -sidebar_position: 4 +title: Regional teams --- -# Regional teams - The regional team is responsible for organising [events](/events) in a [specific region](/events#regions) (e.g. Europe, LATAM, etc.). ## Teams overview diff --git a/src/content/docs/events/seasons.md b/src/content/docs/events/seasons.md new file mode 100644 index 00000000..5532522f --- /dev/null +++ b/src/content/docs/events/seasons.md @@ -0,0 +1,12 @@ +--- +title: List of seasons +sidebar: + order: 2 +--- + +| Season | Regions | Events | Countries | Talks | People | Budget | +| --- | --- | --- | --- | --- | --- | --- | +| *2024* | Europe, Devcon | >15 | >10 | >70 | >1000 | $100-150k | +| **2023** | Europe | 3 | 2 | 29 | 334 | ~$16k | + +Last updated: 16.03.2024 \ No newline at end of file diff --git a/public/docs-new/events/types.md b/src/content/docs/events/types.md similarity index 97% rename from public/docs-new/events/types.md rename to src/content/docs/events/types.md index 56d73c82..a227048a 100644 --- a/public/docs-new/events/types.md +++ b/src/content/docs/events/types.md @@ -1,9 +1,9 @@ --- -sidebar_position: 2 +title: Event types +sidebar: + order: 3 --- -# Event types - We divide events into the following types according to their length and goal: ## Overview diff --git a/public/docs-new/news/week-in-the-privacy.md b/src/content/docs/news/week-in-the-privacy.md similarity index 99% rename from public/docs-new/news/week-in-the-privacy.md rename to src/content/docs/news/week-in-the-privacy.md index 8fd6eb30..ce9e18bc 100644 --- a/public/docs-new/news/week-in-the-privacy.md +++ b/src/content/docs/news/week-in-the-privacy.md @@ -1,9 +1,7 @@ --- -sidebar_label: Week in the Privacy +title: Week in the Privacy News --- -# Week in the Privacy News - | Lead | Links | Workgroup | | --- | --- | --- | | @Tree | β€’ Web: [news.web3privacy.info](https://news.web3privacy.info/)
β€’ newsletter: [paragraph.xyz/@privacynews](https://paragraph.xyz/@privacynews) | [GitHub](https://github.com/web3privacy/news), [Matrix](https://matrix.to/#/#w3p-news:gwei.cz) | diff --git a/src/content/docs/projects/privacy-explorer.md b/src/content/docs/projects/privacy-explorer.md index ac9b145e..a7fc4429 100644 --- a/src/content/docs/projects/privacy-explorer.md +++ b/src/content/docs/projects/privacy-explorer.md @@ -6,7 +6,7 @@ title: Privacy Explorer Live demo [here](https://taikai.network/ethrome/hackathons/ethrome-23/projects/clng508ts00lswu01030hpfuq/idea) -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Explorer%20platform%20overview.png?raw=true) +![alt text](../assets/explorer-platform-overview.png) Despite the foundational role that privacy is meant to play in shaping Web3, genuinely impactful initiatives remain scarce. Many projects leverage the concept of privacy as a buzzword or for public relations advantage, rather than addressing tangible issues or enacting substantial changes at the infrastructural and transactional level. @@ -36,67 +36,67 @@ That's why a ranking system of all privacy-related projects in the Web3 could he - Back critical privacy stack ## About the Scoring Mechanism -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Product%20features.png?raw=true) +![alt text](../assets/explorer-product-features.png) **Quick preview module** _Value_: rapid snapshot of the privacy readiness -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Quick%20previes%20block.png?raw=true) +![alt text](../assets/explorer-quick-preview.png) **Filtering module** _Value_: match projects within your search or use-case (filter "zk", "stealth addresses", "Ethereum" etc) -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Filtering%20module.png?raw=true) +![alt text](../assets/explorer-filtering-module.png) **Ranking module** _Value_: explore the most secure projects within category -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Ranking%20module.png?raw=true) +![alt text](../assets/explorer-ranking-module.png) **Activity module** _Value_: explore latest updates from the product-readiness to the GitHub activity -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Activity%20block.png?raw=true) +![alt text](../assets/explorer-activity-block.png) **Team module** _Value_: explore team, it's reputation (historical privacy track record per person) -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Team%20block.png?raw=true) +![alt text](../assets/explorer-team-block.png) **Privacy features module** _Value_: explore key privacy features & practices from the data collection to compliance-readiness -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Privacy%20features%20block.png?raw=true) +![alt text](../assets/explorer-privacy-features.png) **Funding module** _Value_: find out about funding behind the project (VCs, donations, crowdloans) -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Funding%20block.png?raw=true) +![alt text](../assets/explorer-funding-block.png) **Recommendations module** _Value_: explore similar services matching your search or use-case -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Recommendations%20block.png?raw=true) +![alt text](../assets/explorer-recommendations-block.png) **Reviews module** _Value_: explore or contribute with the transparent feedback by the community -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Reviews%20block.png?raw=true) +![alt text](../assets/explorer-reviews-block.png) **Additional features** _We plan to include more modules from guides & checklists to academy & available jos in privacy_ -![alt text](https://github.com/web3privacy/docs/blob/main/docs/assets/Additional%20product%20features.png?raw=true) +![alt text](../assets/explorer-additional-product-features.png) ## References: - [l2beat](https://l2beat.com/scaling/risk) diff --git a/public/docs-new/research/Privacy-use-cases-UA-RU-war.md b/src/content/docs/research/Privacy-use-cases-UA-RU-war.md similarity index 91% rename from public/docs-new/research/Privacy-use-cases-UA-RU-war.md rename to src/content/docs/research/Privacy-use-cases-UA-RU-war.md index a5ccfcec..0d8be78e 100644 --- a/public/docs-new/research/Privacy-use-cases-UA-RU-war.md +++ b/src/content/docs/research/Privacy-use-cases-UA-RU-war.md @@ -1,3 +1,7 @@ +--- +title: Privacy Use-cases UA-RU war +--- + | Research | Info | Link | | ------------- | ------------- | ------------- | | Privacy use-cases within the Ukrainian-Russian war | _Research how privacy tools can protect human rights, vulnerable audiences within the war, migration & cross-border relations._ Supported by Zcash Foundation. | [link](https://forum.zcashcommunity.com/t/privacy-services-from-zcash-to-status-usage-within-the-ukrainian-russian-war-research/43940?u=aquietinvestor) | diff --git a/public/docs-new/research/annual-report.md b/src/content/docs/research/annual-report.md similarity index 97% rename from public/docs-new/research/annual-report.md rename to src/content/docs/research/annual-report.md index dd687cdc..8ca37f19 100644 --- a/public/docs-new/research/annual-report.md +++ b/src/content/docs/research/annual-report.md @@ -1,4 +1,6 @@ -# Privacy Annual Report +--- +title: Privacy Annual Report +--- Following our [Privacy Market Overview](https://github.com/web3privacy/web3privacy/blob/main/Market%20overview/Privacy%20market%20outlook%20in%20Web3%20by%20Mykola%20Siusko%20(Jan%202023).pdf) (Jan 2023) we intend to produce a comprehensive report to showcase all happenings and achievements of the year. This will consist in structuring the overall picture of the web3-privacy market and exploring hundreds of independent companies - and their connections - with the potential for unity and collaboration. diff --git a/public/docs-new/research/ethereum-privacy-ecosystem.md b/src/content/docs/research/ethereum-privacy-ecosystem.md similarity index 98% rename from public/docs-new/research/ethereum-privacy-ecosystem.md rename to src/content/docs/research/ethereum-privacy-ecosystem.md index 95824bd4..9c829e39 100644 --- a/public/docs-new/research/ethereum-privacy-ecosystem.md +++ b/src/content/docs/research/ethereum-privacy-ecosystem.md @@ -1,4 +1,6 @@ -# Ethereum Privacy Ecosystem: report +--- +title: "Ethereum Privacy Ecosystem: report" +--- Research will cover comprehensive & up to date report on the state of privacy in Ethereum. diff --git a/public/docs-new/research/grants.md b/src/content/docs/research/grants.md similarity index 93% rename from public/docs-new/research/grants.md rename to src/content/docs/research/grants.md index 58994f8e..2827093c 100644 --- a/public/docs-new/research/grants.md +++ b/src/content/docs/research/grants.md @@ -1,3 +1,7 @@ +--- +title: Grants +--- + | Research | Info | Link | | ------------- | ------------- | ------------- | | Privacy grants market | _Allocation of the ongoing grant programs across the market._ | [link](https://docs.google.com/spreadsheets/d/1dN6bIWyOh01Dl-y1iZh-1TASZxKUefD098BUALcnUb8/edit?usp=sharing) | diff --git a/public/docs-new/research/hackathon-pack.md b/src/content/docs/research/hackathon-pack.md similarity index 97% rename from public/docs-new/research/hackathon-pack.md rename to src/content/docs/research/hackathon-pack.md index c280f0ac..dfadf472 100644 --- a/public/docs-new/research/hackathon-pack.md +++ b/src/content/docs/research/hackathon-pack.md @@ -1,4 +1,6 @@ -# Hackathon Curation Pack +--- +title: Hackathon Curation Pack +--- Hacker Manuals & Privacy Guidelines to help the builders to uderstand actual issues in the market. To showcase and distribute during our [events](https://lu.ma/calendar/manage/cal-WJeK56sraztsiIa) worldwide. diff --git a/public/docs-new/research/hiring.md b/src/content/docs/research/hiring.md similarity index 95% rename from public/docs-new/research/hiring.md rename to src/content/docs/research/hiring.md index 6942edea..83fe71b9 100644 --- a/public/docs-new/research/hiring.md +++ b/src/content/docs/research/hiring.md @@ -1,4 +1,6 @@ -# Privacy Projects Hiring +--- +title: Privacy Projects Hiring +--- **Goal**: create one-point-of-entry to privacy jobs market - allocate all existing vacancies & companies diff --git a/src/content/docs/research/index.md b/src/content/docs/research/index.md index dc75c33b..4c29ac62 100644 --- a/src/content/docs/research/index.md +++ b/src/content/docs/research/index.md @@ -1,5 +1,8 @@ --- title: Research +sidebar: + order: 0 + label: Research introduction --- W3PN research branch fills the gap within the market knowledge + makes data free & public forever (not locked within web3 analytical services). diff --git a/public/docs-new/research/pagency.md b/src/content/docs/research/pagency.md similarity index 89% rename from public/docs-new/research/pagency.md rename to src/content/docs/research/pagency.md index 16470abe..ab30544e 100644 --- a/public/docs-new/research/pagency.md +++ b/src/content/docs/research/pagency.md @@ -1,4 +1,6 @@ -# Pagency Framework for private use-case ideation +--- +title: Pagency Framework for private use-case ideation +--- **Pagency framework** is a tool to facilitate impactful privacy-enhancing ideas & raise privacy culture in web3. diff --git a/public/docs-new/research/privacy-guides.md b/src/content/docs/research/privacy-guides.md similarity index 95% rename from public/docs-new/research/privacy-guides.md rename to src/content/docs/research/privacy-guides.md index 69d39f51..b600d4ac 100644 --- a/public/docs-new/research/privacy-guides.md +++ b/src/content/docs/research/privacy-guides.md @@ -1,4 +1,7 @@ -# Privacy Guides +--- +title: Privacy Guides +--- + Extensive privacy guides covering broad audiences from Iranian human rights activists to Ukrainian people living on occupied territories. Practical guides will match: diff --git a/public/docs-new/research/privacy-services-db.md b/src/content/docs/research/privacy-services-db.md similarity index 98% rename from public/docs-new/research/privacy-services-db.md rename to src/content/docs/research/privacy-services-db.md index ec3d7406..9d30e2bf 100644 --- a/public/docs-new/research/privacy-services-db.md +++ b/src/content/docs/research/privacy-services-db.md @@ -1,3 +1,7 @@ +--- +title: Privacy Services DB +--- + | Research | Info | Link | | ------------- | ------------- | ------------- | | Privacy marke DB | _Privacy services x web3 initial market DB aggregation: segmentation, key links (web, git, docs), ecosystem, product liveliness etc. 600 projects in the DB._ | [link](https://github.com/web3privacy/web3privacy) | diff --git a/public/docs-new/research/Scoring-model.md b/src/content/docs/research/scoring-model.md similarity index 99% rename from public/docs-new/research/Scoring-model.md rename to src/content/docs/research/scoring-model.md index b1a6b5a5..fa65d149 100644 --- a/public/docs-new/research/Scoring-model.md +++ b/src/content/docs/research/scoring-model.md @@ -1,3 +1,7 @@ +--- +title: Scoring model +--- + | Research | Info | Link | | ------------- | ------------- | ------------- | | Scoring model for privacy-services attestation | _Research aimed to find out dark patterns in privacy, create comprehensive scoring model to test privacy claims on behalf of the projects_ Supported by Ethereum Foundation, Mask Network. | [link](https://github.com/web3privacy/explorer/blob/main/Research.md#scoring-model) | diff --git a/public/docs-new/research/usecase-db.md b/src/content/docs/research/usecase-db.md similarity index 93% rename from public/docs-new/research/usecase-db.md rename to src/content/docs/research/usecase-db.md index 4082589d..9b028fef 100644 --- a/public/docs-new/research/usecase-db.md +++ b/src/content/docs/research/usecase-db.md @@ -1,4 +1,6 @@ -# Privacy Use-Cases DB +--- +title: Privacy Use-Cases DB +--- Ideas & references for privacy builders diff --git a/public/docs-new/research/zk-solutions.md b/src/content/docs/research/zk-solutions.md similarity index 93% rename from public/docs-new/research/zk-solutions.md rename to src/content/docs/research/zk-solutions.md index 2e181dcf..52e881f6 100644 --- a/public/docs-new/research/zk-solutions.md +++ b/src/content/docs/research/zk-solutions.md @@ -1,4 +1,6 @@ -# ZK Solutions DB +--- +title: ZK Solutions DB +--- Unified database of the privacy-enhancing ZK solutions.