├── .all-contributorsrc ├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── doc-submission.yml │ └── job-description.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── brand │ ├── Brand Guidelines Apr 22.pdf │ ├── Main Logo │ ├── eps │ │ ├── SCRF Stamp Black.eps │ │ ├── SCRF Stamp White.eps │ │ └── SCRF Stamp.eps │ ├── jpeg │ │ ├── SCRF-Stamp-Black.jpg │ │ └── SCRF-Stamp.jpg │ └── png │ │ ├── SCRF-Stamp-Black.png │ │ ├── SCRF-Stamp-White.png │ │ └── SCRF-Stamp.png │ ├── Other Logo Options │ ├── SCRF HORIZONTAL │ │ ├── eps │ │ │ ├── SCRF HORIZONTAL Black.eps │ │ │ ├── SCRF HORIZONTAL White.eps │ │ │ └── SCRF HORIZONTAL.eps │ │ ├── jpeg │ │ │ ├── SCRF-HORIZONTAL-Black.jpg │ │ │ └── SCRF-HORIZONTAL.jpg │ │ └── png │ │ │ ├── SCRF-HORIZONTAL-Black.png │ │ │ ├── SCRF-HORIZONTAL-White.png │ │ │ └── SCRF-HORIZONTAL.png │ ├── SCRF PAGES │ │ ├── eps │ │ │ ├── SCRF PAGES Black.eps │ │ │ ├── SCRF PAGES White.eps │ │ │ ├── SCRF PAGES White_Black.eps │ │ │ └── SCRF PAGES.eps │ │ ├── jpeg │ │ │ ├── SCRF-PAGES-Black.jpg │ │ │ └── SCRF-PAGES.jpg │ │ └── png │ │ │ ├── SCRF PAGES.png │ │ │ ├── SCRF-PAGES-Black.png │ │ │ ├── SCRF-PAGES-White.png │ │ │ └── SCRF-PAGES-White_Black.png │ └── SCRF VERTICAL │ │ ├── eps │ │ ├── SCRF VERTICAL Black.eps │ │ ├── SCRF VERTICAL White.eps │ │ └── SCRF VERTICAL.eps │ │ ├── jpeg │ │ ├── SCRF-VERTICAL-Black.jpg │ │ └── SCRF-VERTICAL.jpg │ │ └── png │ │ ├── SCRF-VERTICAL-Black.png │ │ ├── SCRF-VERTICAL-White.png │ │ └── SCRF-VERTICAL.png │ └── Presentation Theme.pdf └── en ├── content_community_calls.md ├── content_connecting_with_scrf.md ├── content_discussion_post_template.md ├── content_how_to_get_compensated_for_work.md ├── content_mini_post_template.md ├── content_notable_works.md ├── content_notable_works_template.md ├── content_research_summary_template.md ├── content_rewards_template.md ├── converting_google_docs_to_markdown.md ├── doc_directory.md ├── grants_contributor_rewards.md ├── grants_general_contributors.md ├── grants_impact_award.md ├── grants_pan_african.md ├── hiring_blockchain_research_mentor.md ├── hiring_community_lead.md ├── hiring_content_project_manager.md ├── hiring_governance_project_management.md ├── hiring_job_description_template ├── hiring_peer_reviewer.md ├── hiring_podcast_project_management.md ├── hiring_project_management.md ├── hiring_project_management_intern.md ├── hiring_research_project_management.md ├── hiring_social_media_manager.md ├── innovation_post_template.md ├── issue_forms_directory.md ├── mission_and_principles.md ├── process_research_improvement_proposal.md ├── program_reading_group.md ├── project_proposal_template.md ├── project_public_goods_student_association.md ├── project_research_improvement_proposal.md ├── reference_style_guide.md ├── reference_terms_glossary.md ├── research_pulse_newsletter_project.md ├── scrf_io_portal_project_plan.md ├── scrf_moderation_guidelines.md ├── scrf_scred.md ├── scrf_terms_and_titles.md ├── scrf_web3_glossary.md ├── transcript_template.md └── transcripts ├── scrf_central_bank_digital_currency_cbdc_and_blockchain_panel_transcript.md ├── scrf_governance_implementation_panel_transcript.md ├── scrf_governance_theory_panel_transcript.md ├── scrf_identity_and_reputation_panel_transcript.md ├── scrf_privacy_and_snarks_panel_transcript.md ├── transcript_cbdc_panel.md ├── transcript_governance_implementation.md ├── transcript_governance_theory.md ├── transcript_panel_identity_and_reputation.md ├── transcript_privacy_and_snarks.md ├── transcript_si_1.md ├── transcript_si_10.md ├── transcript_si_2.md ├── transcript_si_3.md ├── transcript_si_4.md ├── transcript_si_5.md ├── transcript_si_6.md ├── transcript_si_7.md ├── transcript_si_9.md └── transcript_template.md /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "ghettodev", 10 | "name": "Richard Brown", 11 | "avatar_url": "https://avatars.githubusercontent.com/u/1900655?v=4", 12 | "profile": "https://github.com/ghettodev", 13 | "contributions": [ 14 | "content", 15 | "doc", 16 | "maintenance", 17 | "review" 18 | ] 19 | }, 20 | { 21 | "login": "zubepaul", 22 | "name": "zubepaul", 23 | "avatar_url": "https://avatars.githubusercontent.com/u/75752587?v=4", 24 | "profile": "https://github.com/zubepaul", 25 | "contributions": [ 26 | "doc", 27 | "maintenance" 28 | ] 29 | }, 30 | { 31 | "login": "eleventh19", 32 | "name": "Eugene Leventhal", 33 | "avatar_url": "https://avatars.githubusercontent.com/u/595464?v=4", 34 | "profile": "https://github.com/eleventh19", 35 | "contributions": [ 36 | "doc", 37 | "projectManagement" 38 | ] 39 | }, 40 | { 41 | "login": "lw-scrf", 42 | "name": "LW", 43 | "avatar_url": "https://avatars.githubusercontent.com/u/89587160?v=4", 44 | "profile": "https://github.com/lw-scrf", 45 | "contributions": [ 46 | "maintenance", 47 | "doc" 48 | ] 49 | }, 50 | { 51 | "login": "marvino3", 52 | "name": "marvino3", 53 | "avatar_url": "https://avatars.githubusercontent.com/u/90651952?v=4", 54 | "profile": "https://github.com/marvino3", 55 | "contributions": [ 56 | "doc" 57 | ] 58 | }, 59 | { 60 | "login": "vsterling", 61 | "name": "Victoria", 62 | "avatar_url": "https://avatars.githubusercontent.com/u/91158835?v=4", 63 | "profile": "https://github.com/vsterling", 64 | "contributions": [ 65 | "doc" 66 | ] 67 | } 68 | ], 69 | "contributorsPerLine": 7, 70 | "projectName": "docs", 71 | "projectOwner": "smartcontractresearchforum", 72 | "repoType": "github", 73 | "repoHost": "https://github.com", 74 | "skipCi": true 75 | } 76 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ghettodev @smartcontractresearchforum/admin 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc-submission.yml: -------------------------------------------------------------------------------- 1 | name: 💼 Document Submission 2 | description: Add a new document to the doc repo 3 | title: "💼 Document Submission" 4 | assignees: 5 | - vsterling 6 | body: 7 | - type: textarea 8 | id: text 9 | attributes: 10 | label: Document Details 11 | description: Please include the URL to the document source -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/job-description.yml: -------------------------------------------------------------------------------- 1 | name: 💼 Job Description 2 | description: Add a new job description 3 | title: "💼 Job Description" 4 | assignees: 5 | - vsterling 6 | body: 7 | - type: dropdown 8 | id: vertical 9 | attributes: 10 | label: JD Vertical 11 | options: 12 | - None (Default) 13 | - Content 14 | - Engagement 15 | - Discovery 16 | - Outreach 17 | - Operations 18 | 19 | - type: dropdown 20 | id: stage 21 | attributes: 22 | label: Stage 23 | options: 24 | - New idea proposal 25 | - Working draft 26 | - Request for Discovery 27 | - Ready for Publication 28 | 29 | - type: input 30 | id: doc-url 31 | attributes: 32 | label: Link to Doc 33 | validations: 34 | required: true 35 | 36 | - type: textarea 37 | id: relatd-issues 38 | attributes: 39 | label: Related Issues 40 | description: list all links to any related issues 41 | 42 | - type: textarea 43 | id: next-steps 44 | attributes: 45 | label: Next Steps 46 | description: Describe the next steps required to bring this forward 47 | 48 | - type: textarea 49 | id: scrf-team 50 | attributes: 51 | label: SCRF Team 52 | description: List all SCRF team members involved with this document. 53 | 54 | - type: input 55 | id: approval-date 56 | attributes: 57 | label: Approval Date 58 | description: By when does the approval need to be made? 59 | 60 | 61 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # macOS Files 2 | .DS_Storey 3 | .vscode/settings.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SCRF Documentation 2 | 3 | [![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-) 4 | 5 | 6 | ## Our Mission 7 | 8 | [SCRF's](https://www.smartcontractresearch.org/) bold mission is to bring together researchers and builders to create groundbreaking web3 advancements. To succeed in this quest, SCRF facilitates resource and knowledge exchange, sponsors projects, and constructs collaborative forums. SCRF is comprised of an active international network of academics, industry architects, and blockchain advocates. 9 | 10 | ## About SCRF 11 | 12 | - [Mission and Principles](en/mission_and_principles.md) 13 | - [Connecting with SCRF](en/content_connecting_with_scrf.md) 14 | 15 | ## Getting Started 16 | 17 | - [How to Contribute](en/grants_general_contributors.md) 18 | - [How to Get Compensated](en/content_how_to_get_compensated_for_work.md) 19 | 20 | ## Contributor Resources 21 | 22 | - [Docs Directory](en/doc_directory.md) 23 | - [Writing Style Guide](en/reference_style_guide.md) 24 | - [Brand Assets](https://github.com/smartcontractresearchforum/docs/tree/main/assets/brand) 25 | - [GitHub Issue Requests Directory](en/issue_forms_directory.md) 26 | - [Project Proposal](en/project_proposal_template.md) 27 | - [SCRF Terms and Titles](en/scrf_terms_and_titles.md) 28 | 29 | ## Forum 30 | 31 | - [Innovation Post Template](en/innovation_post_template.md) 32 | - [Forum Moderation Guidelines](en/scrf_moderation_guidelines.md) 33 | 34 | ## Projects 35 | 36 | - [Public Goods Student Association](en/project_public_goods_student_association.md) 37 | 38 | ## Web3 39 | - [Web3 Glossary](en/scrf_web3_glossary.md) 40 | 41 | ## Contributors ✨ 42 | 43 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |

Richard Brown

🖋 📖 🚧 👀

zubepaul

📖 🚧

Eugene Leventhal

📖 📆

LW

🚧 📖

marvino3

📖

Brian Alexakis

📖
58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! 66 | -------------------------------------------------------------------------------- /assets/brand/Brand Guidelines Apr 22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Brand Guidelines Apr 22.pdf -------------------------------------------------------------------------------- /assets/brand/Main Logo/eps/SCRF Stamp Black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/eps/SCRF Stamp Black.eps -------------------------------------------------------------------------------- /assets/brand/Main Logo/eps/SCRF Stamp White.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/eps/SCRF Stamp White.eps -------------------------------------------------------------------------------- /assets/brand/Main Logo/eps/SCRF Stamp.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/eps/SCRF Stamp.eps -------------------------------------------------------------------------------- /assets/brand/Main Logo/jpeg/SCRF-Stamp-Black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/jpeg/SCRF-Stamp-Black.jpg -------------------------------------------------------------------------------- /assets/brand/Main Logo/jpeg/SCRF-Stamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/jpeg/SCRF-Stamp.jpg -------------------------------------------------------------------------------- /assets/brand/Main Logo/png/SCRF-Stamp-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/png/SCRF-Stamp-Black.png -------------------------------------------------------------------------------- /assets/brand/Main Logo/png/SCRF-Stamp-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/png/SCRF-Stamp-White.png -------------------------------------------------------------------------------- /assets/brand/Main Logo/png/SCRF-Stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Main Logo/png/SCRF-Stamp.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/eps/SCRF HORIZONTAL Black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/eps/SCRF HORIZONTAL Black.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/eps/SCRF HORIZONTAL White.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/eps/SCRF HORIZONTAL White.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/eps/SCRF HORIZONTAL.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/eps/SCRF HORIZONTAL.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/jpeg/SCRF-HORIZONTAL-Black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/jpeg/SCRF-HORIZONTAL-Black.jpg -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/jpeg/SCRF-HORIZONTAL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/jpeg/SCRF-HORIZONTAL.jpg -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/png/SCRF-HORIZONTAL-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/png/SCRF-HORIZONTAL-Black.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/png/SCRF-HORIZONTAL-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/png/SCRF-HORIZONTAL-White.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF HORIZONTAL/png/SCRF-HORIZONTAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF HORIZONTAL/png/SCRF-HORIZONTAL.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES Black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES Black.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES White.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES White.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES White_Black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES White_Black.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/eps/SCRF PAGES.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/jpeg/SCRF-PAGES-Black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/jpeg/SCRF-PAGES-Black.jpg -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/jpeg/SCRF-PAGES.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/jpeg/SCRF-PAGES.jpg -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/png/SCRF PAGES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/png/SCRF PAGES.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/png/SCRF-PAGES-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/png/SCRF-PAGES-Black.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/png/SCRF-PAGES-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/png/SCRF-PAGES-White.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF PAGES/png/SCRF-PAGES-White_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF PAGES/png/SCRF-PAGES-White_Black.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/eps/SCRF VERTICAL Black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/eps/SCRF VERTICAL Black.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/eps/SCRF VERTICAL White.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/eps/SCRF VERTICAL White.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/eps/SCRF VERTICAL.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/eps/SCRF VERTICAL.eps -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/jpeg/SCRF-VERTICAL-Black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/jpeg/SCRF-VERTICAL-Black.jpg -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/jpeg/SCRF-VERTICAL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/jpeg/SCRF-VERTICAL.jpg -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/png/SCRF-VERTICAL-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/png/SCRF-VERTICAL-Black.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/png/SCRF-VERTICAL-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/png/SCRF-VERTICAL-White.png -------------------------------------------------------------------------------- /assets/brand/Other Logo Options/SCRF VERTICAL/png/SCRF-VERTICAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Other Logo Options/SCRF VERTICAL/png/SCRF-VERTICAL.png -------------------------------------------------------------------------------- /assets/brand/Presentation Theme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartcontractresearchforum/docs/c41edab58817dc4dbdeaa88e6572ba5fac0e1662/assets/brand/Presentation Theme.pdf -------------------------------------------------------------------------------- /en/content_community_calls.md: -------------------------------------------------------------------------------- 1 | # SCRF Weekly Community Calls 2 | 3 | The [Smart Contract Research Forum](smartcontractresearch.org) (SCRF) hosts weekly community calls that are open to everyone. SCRF may use the time to meet new members, catch up on the latest news, talk about active projects at SCRF, or discuss new research proposals. Weekly community calls are summarized in the #[general](https://discord.com/channels/784234332617048065/784234333111451670) channel. Please note, while SCRF encourages participation in community calls, attendance is voluntary and is therefore unpaid. 4 | 5 | ## How to Join 6 | 7 | As an international organization, SCRF hosts community calls for multiple time zones. To join: 8 | 9 | * Check out SCRF’s [public calendar](https://calendar.google.com/calendar/embed?src=c_45nqubmu17kcm9r1p8o5sqtte0%40group.calendar.google.com&ctz=America%2FLos_Angeles) and subscribe to the timezone calls that work best 10 | * Or hop into SCRF’s [#events](https://discord.com/channels/784234332617048065/872234053850529872) channel to see the scheduled meeting times 11 | 12 | ## General Topics 13 | 14 | SCRF welcomes community topic ideas and participation. Discussions may include: 15 | 16 | * General forum and SCRF-related questions 17 | * Content research contributions 18 | * Grants programs and open bounties 19 | * Projects or initiatives across SCRF 20 | * Current events 21 | 22 | ## New Members 23 | 24 | SCRF encourages new members to share: 25 | 26 | * A brief bio 27 | * What brings them to SCRF 28 | * Areas of expertise or interest 29 | * Current projects outside of SCRF 30 | 31 | ## Learn More About SCRF 32 | 33 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 34 | -------------------------------------------------------------------------------- /en/content_connecting_with_scrf.md: -------------------------------------------------------------------------------- 1 | # Connecting with SCRF 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) utilizes different platforms for building community. Every method outlined below is open to anyone interested in web3 or connecting with SCRF. 4 | 5 | At a high level, the forum connects academia to industry by featuring timely, novel, and relevant blockchain and web3 research. Internally, SCRF uses chat and weekly meetings to build community and collectively fulfill its mission. 6 | 7 | ## Forum 8 | 9 | Visit the [forum](https://www.smartcontractresearch.org/) to discover the latest web3 research, discuss ideas, find peers who share common interests, and leave thoughtful well-cited comments, questions, or suggestions. 10 | 11 | ## Website 12 | 13 | SCRF serves the web3 ecosystem by connecting researchers from academia and builders from industry. Learn more about SCRF's impact and how to get involved on the official [website](https://www.scrf.io/). 14 | 15 | ## Chat 16 | 17 | Behind the scenes, SCRF coordinates through the [chat](https://discord.com/invite/BPqN5mjzeC). This space is dedicated for anyone to ask questions, learn about grants and bounties, read news about web3 topics, and get to know the community. 18 | 19 | Drop-in to the [🏁start-here](https://discordapp.com/channels/784234332617048065/962837574991376494) channel. Make an introduction, and share what brings you to SCRF. Feel free to ask about the other channels to get more involved. 20 | 21 | ## Meetings 22 | 23 | The [Community Calendar](https://calendar.google.com/calendar/u/0/embed?src=null@scrf.io&ctz=America/Los_Angeles) provides times and links to weekly Community Calls, Onboarding Bootcamps, guilds, and other recurring meetings. 24 | 25 | At public meetings, learn about news on SCRF's activities, discuss web3 topics, ask questions, and connect with the community. 26 | 27 | ## GitHub 28 | 29 | SCRF uses GitHub for [project management](https://github.com/orgs/smartcontractresearchforum/projects?query=is%3Aopen&type=new) and as [a repository](https://github.com/smartcontractresearchforum/docs) for all documentation on programs, processes, guides, and more. SCRF operates with a dedication to transparency and discoverability to the public. 30 | 31 | ## Social Media 32 | 33 | The SCRF community is active across many social platforms. Follow for updates on cutting-edge web3 research, news about SCRF, interviews, and more. 34 | 35 | * Twitter: [@SCRForum](https://twitter.com/SCRForum) 36 | * Youtube: [Smart Contract Research](https://www.youtube.com/channel/UCSA8Xu-rCemVuoBG2s449UQ) 37 | * LinkedIn: [Smart Contract Research Forum](https://www.linkedin.com/company/smart-contract-research-forum) 38 | 39 | ## Podcast 40 | 41 | SCRF Interviews is a dynamic podcast on all topics web3. Listen to interviews with experts and industry leaders on multiple streaming platforms: 42 | 43 | * [Apple Podcasts](https://podcasts.apple.com/us/podcast/scrf-interviews/id1604680971) 44 | * [Spotify](https://www.google.com/url?q=https://open.spotify.com/show/4RlyfwE7pSCTHvc5OabEDv&sa=D&source=docs&ust=1659373818148228&usg=AOvVaw1FSPOSY2zhkeRJZ3Hs6pFp) 45 | * [YouTube](https://www.youtube.com/watch?v=5kDKSsNks8w&list=PLM6XYWcweAF0NRLrkdPwryKXZGV3vE2Mx) 46 | 47 | ## Learn More About SCRF 48 | 49 | SCRF is an interactive forum supported by an active international community. SCRF's members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 50 | -------------------------------------------------------------------------------- /en/content_discussion_post_template.md: -------------------------------------------------------------------------------- 1 | # SCRF: Template - Discussion Post 2 | 3 | > Call to Action: "In these threads, we attempt to further the discussion of a key problem in this category; particularly where research work has not yet answered the specific problem or question being considered. 4 | 5 | ## Background 6 | 7 | Provide some context about the concepts and domain space discussed in these posts. 8 | 9 | ## Key Problem or Topic Area 10 | 11 | Identify the current or proposed key problem that this specific discussion post relates to. 12 | 13 | ## Specific Question or Problem Statement 14 | 15 | Clearly and precisely define the tangible low-level question or problem that this post is intended to address. 16 | 17 | ## Approach or Methodology 18 | 19 | Provide a breakdown of what the discussion is and what approach this post is taking. This is where you drop on whatever free-form discussion content you want to include. 20 | 21 | ## Conclusions or Key Takeaways 22 | 23 | Provide a one-sentence breakdown of what has been accomplished by this post or what this post does. E.g., is it a new proposed structure, is it 3 or 4 suggested avenues of research, is it further clarification of an uncertain question/design, etc. 24 | -------------------------------------------------------------------------------- /en/content_how_to_get_compensated_for_work.md: -------------------------------------------------------------------------------- 1 | # How to Get Compensated for Work 2 | 3 | The [Smart Contract Research Forum](http://smartcontractresearch.org) (SCRF) created a 'How to Get Compensated for Work' guide to help SCRF contributors navigate the payment system. 4 | 5 | ## Overview 6 | 7 | This document covers how to create an invoice, track hours, alternative payment methods, and important notes. Recently onboarded contributors and recipients of grants, awards, or rewards need to follow the steps below to receive compensation. 8 | 9 | ## Invoicing and Payment System 10 | 11 | SCRF officially pays invoices at the end of each month, after the work has been performed and billed. In certain situations, SCRF may process another round of payments mid-month. **All invoices are due five full business days before the end of the month. Please submit your hours for approval before submitting your invoice.** 12 | 13 | Any billable hours for the month that were forgotten or performed after the invoice was submitted can be added to the next invoice with a description. SCRF uses Request Network for all payments. 14 | 15 | How to get set up: 16 | 17 | * Use an Ethereum wallet address (SCRF recommends [Metamask](https://metamask.io/) but any wallet is acceptable) 18 | * Create an account on [Request Network](https://app.request.finance/login). 19 | 20 | To submit a Request invoice: 21 | 22 | 1. Choose DAI for invoice currency. 23 | 2. Select DAI stablecoin as the payment cryptocurrency. 24 | 3. Add a new client using the email address invoice@scrf.io. 25 | 4. Complete further details with the following information: 26 | > Smart Contract Research Forum 27 | 1250 Broadway 28 | 36th Fl 29 | 10001 New York 30 | 31 | 5. Provide full name and chat username in the memo field. 32 | 6. Attach a copy of [Your Name] [Hours Template Sheet](https://docs.google.com/spreadsheets/d/1pXZlO_mxAbKQ-0gifylb2chdUuU3OniBWllryJ48RAM/edit?usp=sharing) or provide a link to the sheet. 33 | * For anyone submitting bounties, it is not required to submit hours but please include a link to your submission. 34 | 7. Submit the invoice for payment. 35 | 36 | ## Tracking Hours 37 | 38 | Anyone submitting bounties or non-hours-based grants can ignore this step. Anyone else working for SCRF is expected to track their hours using the template sheet and process outlined below: 39 | 40 | * Make a copy of the [Hours Template Sheet](https://docs.google.com/spreadsheets/d/1pXZlO_mxAbKQ-0gifylb2chdUuU3OniBWllryJ48RAM/edit?usp=sharing) and title it '[Your Name] Hours' 41 | * Track time worked in 30-minute increments on the spreadsheet copy 42 | * Provide a detailed description of work completed for each line item 43 | * Submit or share your hours with your supervisor for approval before you submit your invoice 44 | 45 | ## Compensation and Logistics 46 | 47 | If unable to accept funds directly, alternative compensation options may include: 48 | 49 | * Funding a project 50 | * Conference travel 51 | * Charitable donations to an [endowment](https://thegivingblock.com/donate/) 52 | * Credits for compute resources, archive nodes, etc. 53 | * Direct support of a blockchain-related organization or event of choice 54 | 55 | ## Notes 56 | 57 | For questions, concerns, or to make alternative arrangements, contact SCRF's Operations Team in a [Discord chat](https://discord.com/channels/784234332617048065/784234333111451670). 58 | 59 | Key reminders: 60 | 61 | * Participation in community calls, events, and cohorts are not billable 62 | * Invoices are due five full business days before the end of each month 63 | * Check the chat for any announcements such as holidays that impact the invoice due date 64 | * The pay rate varies according to the complexity and time requirements of assignments 65 | * Only submit one invoice per billing cycle, even if both hourly and grant work was completed 66 | * Group payments together from multiple bounties 67 | 68 | To learn about work opportunities at SCRF, look for announcements on the [forum](https://www.smartcontractresearch.org/), check the [project board](https://github.com/orgs/smartcontractresearchforum/projects/4) for active initiatives that may be of interest, join the [💲start-here](https://discord.com/channels/784234332617048065/962841663246585896) channel, or look on GitHub for [open positions](https://github.com/smartcontractresearchforum/docs#open-positions). 69 | 70 | ## Learn More About SCRF 71 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn more about SCRF](https://github.com/smartcontractresearchforum/docs) and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). -------------------------------------------------------------------------------- /en/content_mini_post_template.md: -------------------------------------------------------------------------------- 1 | # SCRF: Template - Mini-Post 2 | 3 | Description: The research or engagement teams can resurface older content by soliciting a long-form comment or short-form discussion post from the research team. 4 | 5 | There are three main ways in which these long-form comments can be used to create new content out of older existing content: 6 | 7 | - A combination of concepts or models presented in distinct posts that can be compared or contrasted 8 | - An update or new development that expands upon the body of work that was laid down in a previous post 9 | - A new take or spin that can be phrased as a question that prompts the rethinking of a previous discussion post or research summary. 10 | 11 | ## General Template 12 | 13 | ### Tone-Setting Statement 14 | 15 | Provide 1-2 sentences that describe what this mini-post is about. 16 | 17 | ### Reference 18 | 19 | Provide 1-3 sentences that indicate what content or existing posts the current mini-post is in reference or response to. Share any links or citations to other works as applicable. 20 | 21 | ### Discussion 22 | 23 | Discuss the main questions or frameworks being raised or proposed in this post. Clearly state any new research questions being surfaced. 24 | 25 | ### Conclusion or Takeaways 26 | 27 | Provide a salient and concise summary, conclusion, or final takeaway that the reader should learn from this post in 1-2 sentences. 28 | -------------------------------------------------------------------------------- /en/content_notable_works_template.md: -------------------------------------------------------------------------------- 1 | # SCRF: Notable Works - Template 2 | 3 | ## [Category Name] 4 | 5 | ### [Full Paper Title] 6 | 7 | - **Source:** <[Link]> 8 | - **Authors:** [Author 1, Author 2, etc.] 9 | - **Description:** [One sentence description of the work] 10 | - **Relevance:** [Once sentence explaining the special relevance of this work] 11 | - **Citation:** [Citation and abstract in plaintext] 12 | - **Tags:** [Relevant forum tags, if any] 13 | 14 | 15 | ### Example: 16 | 17 | > ## Auditing and Security 18 | > 19 | > ### The Security Reference Architecture for Blockchains\: Towards a Standardized Model for Studying Vulnerabilities, Threats, and Defenses 20 | > 21 | > - **Source:** 22 | > - **Authors:** Ivan Homoliak, Sarad Venugopalan, Daniël Reijsbergen, Qingze Hum, Richard Schumi, Pawel Szalachowski 23 | > - **Description:** This paper proposes a 4-layer security reference architecture for blockchains and identifies known threats, countermeasures, and dependencies at each layer 24 | > - **Relevance:** This paper is relevant because it is one of the first contributing towards the standardization of security threat analysis in the blockchain space 25 | > - **Citation:** I. Homoliak, S. Venugopalan, D. Reijsbergen, Q. Hum, R. Schumi and P. Szalachowski, "The Security Reference Architecture for Blockchains: Toward a Standardized Model for Studying Vulnerabilities, Threats, and Defenses," in IEEE Communications Surveys & Tutorials, vol. 23, no. 1, pp. 341-390, Firstquarter 2021, doi: 10.1109/COMST.2020.3033665. 26 | > - **Tags:** 27 | -------------------------------------------------------------------------------- /en/content_research_summary_template.md: -------------------------------------------------------------------------------- 1 | # SCRF: Template - Research Summary 2 | 3 | --- 4 | title: [Research Summary - XXX] 5 | description: One or two sentences of what the post is about. 6 | tags: [tag1, tag2, tag3] 7 | created: [2020-12-25] 8 | researcher: [full name] 9 | --- 10 | 11 | > ### TLDR 12 | > 13 | > Contains one to three bullets that distill the most condensed information about the key takeaways, notable results, or novel methodologies contained in the paper 14 | 15 | ### Core Research Question 16 | 17 | Provide a concise one-sentence statement of the core question being considered in the research paper. 18 | 19 | ### Citation 20 | 21 | A journal-style citation (MLA, APA, IEEE, etc.) of the authors. The precise format is not predetermined, but please be as consistent/standardized as possible. Any quotes, graphs, and data used in the summary must be included in this section, preferably using MLA-9. 22 | 23 | A link to the original research source on a non-paywall host; can be a SCRF-native host. 24 | 25 | Any citations to externally referenced works should either be included in the background section of the document or inserted as an inline hyperlink to the mentioned work where it is mentioned in the summary. 26 | 27 | ### Background 28 | 29 | Provide some context about the concepts and domain space(s) discussed in the research paper. 30 | 31 | The background section can include definitions, additional color, or references to prior works that are important to understand. 32 | 33 | ### Summary 34 | 35 | This section includes a 1-2 sentence summarization of each of the key sections of the original research paper. 36 | 37 | ### Method 38 | 39 | Describe the general approach of the paper (e.g scientific experiment, data/modeling, mathematical proofs) then outline the key steps that the researchers undertook to perform the study. 40 | 41 | For each key step, summarize the nature of the specific approach that the researchers used to complete each step (e.g. statistical test, logic proof, data-driven model). 42 | 43 | ### Results 44 | 45 | Highlight the most salient components of the work product or findings produced by the researchers. 46 | 47 | Include any key graphs, tables, data, or other annotations/appendices that clearly communicate the results. 48 | 49 | ### Discussion and Key Takeaways 50 | 51 | Summarize any discussion/commentary sections included by the researchers. Identify the most concise description of any perspectives or viewpoints the researchers explored in this section. 52 | 53 | Summarize the conclusions or key takeaways as included by the researchers. 54 | 55 | ### Implications and Follow-ups 56 | 57 | Summarize the implicit or explicit implications of the study. If the researchers include such a section, include a few of the most important points discussed. If not, insert some commentary of clear-cut or obvious implications of the work. 58 | 59 | Share any follow-up work discussed by the researchers. 60 | 61 | ### Applicability 62 | 63 | Summarize any notes included by the research team on how this work is currently or might be applied in action in the industry. If not included, insert some commentary of clear-cut or obvious potential applications of the research work. 64 | -------------------------------------------------------------------------------- /en/content_rewards_template.md: -------------------------------------------------------------------------------- 1 | # SCRF Rewards Template 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created a _INSERT TITLE OF THE PROGRAM HERE_ to _INSERT THE PURPOSE OF THE PROGRAM HERE_. (Please keep this one to two sentences.) 4 | 5 | ## Overview 6 | 7 | Provide a high-level summary of what the program does - how it works, who it serves, and why someone would want to participate. 8 | 9 | ## Eligibility 10 | 11 | _INSERT WHO IS_ eligible for _RECOGNITION/ PARTICIPATION_ in the program. 12 | 13 | ## How to Qualify 14 | 15 | What does an individual need to do to qualify for this initiative? Write out the process step-by-step, being as clear and concise as possible. Examples include requirements for posting on the forum, an application, etc. 16 | 17 | ## Compensation & Logistics 18 | 19 | _REWARD/ AWARD/ GRANT_ recipients will receive $ _INSERT AMOUNT HERE to EXPLAIN FOR WHAT_. 20 | 21 | SCRF pays in cryptocurrency. Follow the steps outlined in "[How to Get Compensated for Work](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_how_to_get_compensated_for_work.md)" to claim the _REWARD/ AWARD/ BOUNTY_ after SCRF has announced the recipients. 22 | 23 | If unable to accept funds directly, alternative options could include: 24 | 25 | * Funding a project 26 | * Conference travel 27 | * Charitable donations to an endowment 28 | * Credits for compute resources, archive nodes, etc. 29 | * Direct support of a blockchain-related organization or event of choice 30 | 31 | ## Learn More About SCRF 32 | 33 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 34 | -------------------------------------------------------------------------------- /en/converting_google_docs_to_markdown.md: -------------------------------------------------------------------------------- 1 | # Converting Google Docs to Markdown 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) created "Converting Google Docs to Markdown" to guide contributors on how to structure documentation for GitHub and the forum. 4 | 5 | ## Overview 6 | 7 | Contributors need access to Google Docs and Visual Studio Code (VSCode) to follow the process outlined below to format documentation. After this process, documents are uploaded to HackMD and published to the forum or GitHub. 8 | 9 | ## Install Extensions and Plugins 10 | 11 | * Install the Google Docs add-on "[Docs to Markdown](https://workspace.google.com/u/0/marketplace/app/docs_to_markdown/700168918607?hl=en&pann=docs_addon_widget)" 12 | * Install the free [Grammarly](https://grammarly.com/) browser extension 13 | * [Download VSCode](https://code.visualstudio.com/) and install the following plugins: 14 | * "[Markdown All in One](https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one)" 15 | * "[Markdown Preview Enhanced](https://marketplace.visualstudio.com/items?itemName=shd101wyy.markdown-preview-enhanced)" 16 | * "[Markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint)" 17 | * "[Replace Curly Quotes](https://marketplace.visualstudio.com/items?itemName=jinhyuk.replace-curly-quotes)" 18 | 19 | ## Formatting, Review, and Conversion 20 | 21 | Follow the steps below to format SCRF's documentation: 22 | 23 | * In Google Docs, apply the default settings in the dropdown menu under "Normal text" 24 | * Use "Title" for the name of the document, "Heading 1, 2, etc." for subsections, and "Normal text" for list items or body text 25 | * Upon completion of the Google Doc draft, fix errors reported by Grammarly 26 | * Review the "[SCRF Writing Style Guide](https://github.com/smartcontractresearchforum/docs/blob/main/en/reference_style_guide.md)" to ensure the document follows SCRF's branding language and provisions 27 | * In Google Docs, run the "Docs to Markdown" add-on in the Extensions drop menu 28 | * Copy and paste all the generated markdown into Visual Studio Code 29 | * In VSCode, open the live preview window to see edits as they will appear on the forum or Github 30 | * Run the "Command Pallete" (Ctrl+Shift+P) and choose "Fix all supported markdown violations in the document" and "Replace curly quotes" 31 | * Review the text for any remaining mistakes 32 | * Copy and paste the text to its destination, such as the forum, GitHub or HackMD 33 | 34 | ## Learn More About SCRF 35 | 36 | The Smart Contract Research Forum (SCRF) is a grant-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 37 | -------------------------------------------------------------------------------- /en/doc_directory.md: -------------------------------------------------------------------------------- 1 | # Document Directory 2 | 3 | SCRF's Document Directory is a comprehensive guide of all SCRF documentation. 4 | 5 | ## About SCRF 6 | 7 | * [Mission and Principles](mission_and_principles.md) 8 | 9 | ## Awards, Bounties, Grants 10 | 11 | * [Research Summary Grants](grants_general_contributors.md) 12 | * [Pan-African Microgrants](grants_pan_african.md) 13 | * [Contributor Recognition and Rewards Initiative](grants_contributor_rewards.md) 14 | * [Impact Award](grants_impact_award.md) 15 | 16 | ## Contributor Resources 17 | 18 | * [How to Get Compensated for Work](content_how_to_get_compensated_for_work.md) 19 | * [GitHub Issue Requests Directory](issue_forms_directory.md) 20 | * [Project Proposal](project_proposal_template.md) 21 | * [SCRF Terms and Titles](scrf_terms_and_titles.md) 22 | 23 | ## Discovery 24 | 25 | * [SCRF.io Portal Project Plan](scrf_io_portal_project_plan.md) 26 | * [Research Pulse Newsletter Project](research_pulse_newsletter_project.md) 27 | 28 | ## Events 29 | 30 | * [Weekly Community Calls](content_community_calls.md) 31 | 32 | ## Forum 33 | 34 | * [Research Summary](content_research_summary_template.md) 35 | * [Discussion Posts](content_discussion_post_template.md) 36 | * [Mini-Posts](content_mini_post_template.md) 37 | * [Notable Works](content_notable_works_template.md) 38 | * [Innovation Post Template](innovation_post_template.md) 39 | * [Forum Moderation Guidelines](scrf_moderation_guidelines.md) 40 | 41 | ## SCRF Documentation 42 | 43 | * [Converting Google Docs to Markdown](converting_google_docs_to_markdown.md) 44 | * [Transcript Template](transcript_template.md) 45 | 46 | ## SCRF Reference Materials 47 | 48 | * [Writing Style Guide](reference_style_guide.md) 49 | 50 | ## Transcripts 51 | 52 | * [SCRF Governance Implementation Panel Transcript](transcripts/scrf_governance_implementation_panel_transcript.md) 53 | * [SCRF Privacy and SNARKS Panel Transcript](transcripts/scrf_privacy_and_snarks_panel_transcript.md) 54 | * [SCRF Central Bank Digital Currency (CBDC) and Blockchain Panel Transcript](transcripts/scrf_central_bank_digital_currency_cbdc_and_blockchain_panel_transcript.md) 55 | * [SCRF Identity and Reputation Panel Transcript](transcripts/scrf_identity_and_reputation_panel_transcript.md) 56 | * [SCRF Governance Theory Panel Transcript](transcripts/scrf_governance_theory_panel_transcript.md) 57 | 58 | 59 | ## Web3 Reference Materials 60 | 61 | * [Notable Works](content_notable_works.md) 62 | * [Web3 Glossary](scrf_web3_glossary.md) 63 | 64 | 65 | ## Archive 66 | 67 | * [Research Improvement Process](process_research_improvement_proposal.md) 68 | * [Research Improvement Proposal](project_research_improvement_proposal.md) -------------------------------------------------------------------------------- /en/grants_contributor_rewards.md: -------------------------------------------------------------------------------- 1 | # SCRF Contributor Recognition and Rewards Initiative 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created the Contributor Recognition and Rewards Initiative to feature and encourage thoughtful engagement and high-quality contributions to the forum and chat. 4 | 5 | ## Overview 6 | 7 | Throughout each month, SCRF identifies outstanding comments on the forum and chat. At the end of the month, SCRF's moderation team selects finalists for comment of the month. SCRF’s community then determines the winners by voting through a [poll on the forum](https://www.smartcontractresearch.org/t/scrf-contributor-recognition-and-rewards-initiative/860). SCRF features winning comments on its social platforms, chat, and forum. 8 | 9 | ## Eligibility 10 | 11 | The SCRF community is eligible for participation as part of this program. SCRF community members who receive grants or compensation for forum content do not qualify for monetary rewards but will still receive recognition for their work. In lieu of this, SCRF will donate to their charity of choice. 12 | 13 | ## How to Qualify 14 | 15 | The following lays out general guidelines for creating content and posting to the SCRF forum and chat. Writing specifications can be found in the ["SCRF Writing Style Guide."](https://github.com/smartcontractresearchforum/docs/blob/main/en/reference_style_guide.md) 16 | 17 | Comments on the forum can be responses to posts such as Research Summaries, Discussion Posts, Post Ideas, Mini-Posts, and Reading Group discussions. Generally, comments on forum posts and in the [#general](https://discord.com/channels/784234332617048065/784234333111451670) chat are encouraged to: 18 | 19 | * Ask thoughtful questions 20 | * Introduce quality sources outside of the original post 21 | * Invite or tag other community members to engage and share their ideas 22 | * Contribute to areas that may not have been addressed or considered 23 | * Share current events, trends, or topics of interest 24 | * Spark engagement and garner feedback 25 | * Offer helpful material to other members of the community 26 | 27 | ## Compensation and Logistics 28 | 29 | The reward amount is subject to change and is disclosed to the recipients. 30 | 31 | SCRF pays in cryptocurrency. Follow the steps outlined in ["How to Get Compensated for Work"](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_how_to_get_compensated_for_work.md) to claim the reward after SCRF has announced the recipients. 32 | 33 | ## Learn More About SCRF 34 | 35 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 36 | -------------------------------------------------------------------------------- /en/grants_general_contributors.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | ## What is SCRF? 4 | 5 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is where academics, researchers, and industry leaders from all over the world come together to discuss research, solicit thoughtful peer review, and find new projects on which to collaborate. 6 | 7 | Supporting blockchain research takes global coordination, carefully balanced incentives, a stream of novel research, strong editorial independence, and a critical mass of dedicated and professional forum moderators. 8 | 9 | We believe the forum will pay dividends for academia, industry, and emerging blockchain technologies. Concentrating unbiased blockchain research into a single, _chain-agnostic, civil, and trustworthy space_ accelerates existing work in the field. It sparks the kind of collaborations between academia and industry that created the modern Internet. 10 | 11 | ## What we are looking for 12 | 13 | In order to bridge the divide between industry and academia, the problem-havers and the problem-solvers, we require individuals who are capable of sourcing and summarizing new and existing research. 14 | 15 | The Research Team is the foundation of the forum, and it is their mission to ensure that a steady stream of new and meritorious research is being surfaced to their peers as well as the industry in general. They do this by selecting the best papers from various crypto-related disciplines and summarize them for greater accessibility. 16 | 17 | SCRF content is crafted to surface cutting-edge research and present it in a more succinct format than what is found in a full-fledged research publication. Our goal is to synthesize research, normalize concepts and terminology, and ultimately provide a strong backbone for engaging, objective conversations to take place. 18 | 19 | Given the existing body of research around blockchain and supporting technologies, we also want to positively contribute to researchers working on their publications. We are cognizant that Literature Reviews, Related Works, and Theses can take a considerable amount of time and effort for researchers and post-docs exploring this space. SCRF can be the place where that research is monetized and converted into the form of Research Summaries, which can be shared with the ecosystem. 20 | 21 | * [Some current examples](https://www.smartcontractresearch.org/tag/summary) 22 | 23 | In addition to researchers, we're also looking for moderators, editors, project managers, social media experts, among other roles. 24 | 25 | ## Compensation 26 | 27 | There's a wide variety of work to be done at SCRF, from writing Research Summaries to copy editing and graphic design to various administrative roles. We support flexible payment schedules, honoraria, grants, and other arrangements. 28 | 29 | As our researchers become more deeply engaged with the project, or take on larger pieces of work, we have longer-term relationships available, including salaried positions. 30 | 31 | _We pay in cryptocurrency. For longer commitments, alternative arrangements can be made._ 32 | 33 | If you are unable to accept direct payments because of your university or funding agency, we can discuss alternative options. These could include: 34 | 35 | * funding a project 36 | * conference travel 37 | * charitable donations to an endowment in lieu 38 | * credits for compute resources, archive nodes, etc 39 | * supporting a blockchain-related organization or event of your choice 40 | 41 | We pay depending on the complexity of the work and the time involved. Researchers that commit to longer-term engagements, and have produced a good body of work for the forum, are encouraged to seek additional and more lucrative responsibilities. 42 | 43 | ## How we Communicate 44 | 45 | **Chat:** We use our [#general chat](https://discord.gg/cRVjvJYybX) for discussions about content, blockchain-related events, coordination, and project planning. 46 | 47 | **Project Management:** All the work that SCRF produces is created collaboratively in a [public document pipeline](https://github.com/orgs/smartcontractresearchforum/projects/5). Please feel free to look around. 48 | 49 | **Live meetings:** We have several weekly meetings for pitching ideas, status updates, projects and processes, and planning forum engagement. 50 | 51 | ## How to apply 52 | 53 | If you are an academic, a researcher, or an industry participant with deep insight into blockchain technologies and are comfortable with writing literature reviews, research summaries, long-form technical blog posts, or have even published original research; we would like to talk. 54 | 55 | Interested applicants should send us an [email](mailto:content@scrf.io) that outlines: 56 | 57 | * Why you are interested in the space. 58 | * Which projects you are most interested in, and why. 59 | * Any project or research affiliations you may have. 60 | * _And includes links to three of your best blog posts, articles, or other writing that is related to blockchain research._ 61 | 62 | Please feel free to come and introduce yourself in our [Chat](https://discord.gg/cRVjvJYybX) as well. 63 | 64 | Another great way to introduce yourself to us is to find a thread on the [SCRF website](https://www.smartcontractresearch.org/) and add a well-reseasoned or insightful comment to one of the discussions. 65 | 66 | If you would like to get some deeper insight into how we do work and what we have on the go, you can also have a look at our [project boards](https://github.com/orgs/smartcontractresearchforum/projects). 67 | -------------------------------------------------------------------------------- /en/grants_impact_award.md: -------------------------------------------------------------------------------- 1 | # SCRF Impact Award 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created the Impact Award to honor researchers whose work represents exceptional achievement, particularly in underappreciated or novel areas of blockchain research. 4 | 5 | ## Overview 6 | 7 | The SCRF Impact Award recognizes researchers who are contributing valuable work to the ecosystem. Impact Award grants are announced on SCRF’s [forum](smartcontractresearch.org) every month. 8 | 9 | ## Eligibility 10 | 11 | Researchers whose work is featured in a [Research Pulse](https://www.smartcontractresearch.org/tag/research-pulse), [Research Summary](https://www.smartcontractresearch.org/tag/summary), or showcased in some other interaction on SCRF’s forum are eligible for recognition as a part of this program. 12 | 13 | ## Compensation & Logistics 14 | 15 | Award recipients will receive a $1,000 allocation in recognition of their contributions. SCRF issues funds in cryptocurrency. Follow the steps outlined in "[How to Get Compensated for Work](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_how_to_get_compensated_for_work.md)" to claim the _REWARD/AWARD/BOUNTY_after SCRF has announced the recipients. 16 | 17 | If unable to accept funds directly, alternative options could include: 18 | 19 | * Funding a project 20 | * Conference travel 21 | * Charitable donations to an endowment 22 | * Credits for compute resources, archive nodes, etc. 23 | * Direct support of a blockchain-related organization or event of choice 24 | 25 | ## Learn More About SCRF 26 | 27 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 28 | -------------------------------------------------------------------------------- /en/grants_pan_african.md: -------------------------------------------------------------------------------- 1 | # SCRF Pan-African Microgrant Program 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created the Pan-African Microgrant Program to provide microgrants to the students and alumni of African universities. 4 | 5 | ## Overview 6 | 7 | The Pan-African Microgrants Program is the first of SCRF's regional grants efforts, focusing initially on Western Africa. The program's goal is to extend microgrants to academics and researchers to write [Research Summaries](https://www.smartcontractresearch.org/tag/summary) based on African academic papers, regional blockchain [case studies](https://www.smartcontractresearch.org/t/744), or regional [use case examinations](https://www.smartcontractresearch.org/t/1176). 8 | 9 | From the early adoption of solar power to mobile phone usage and mobile payments, Africa has a long history of technological "leapfrogging." The continent has proven time and again that it is capable of radical technical innovation and developing nations in the region are perfectly positioned to leapfrog the legacy financial system through the widespread adoption of blockchain. Yet, these developments remain largely unknown outside of Africa. 10 | 11 | Through this program, SCRF aims to publish a steady stream of public and open African-focused research that may not be available to the broader crypto community. 12 | 13 | ## Eligibility 14 | 15 | Graduate and undergraduate students are eligible for participation in this program. Academics, researchers, and industry participants are also welcome to [apply](https://forms.gle/GLvFbGZekjaAggXr8). Applicants should be affiliated with an African university, an African research institution, or come from an African country while currently studying abroad. 16 | 17 | ## How to Qualify 18 | 19 | Applicants should have interest and insights into blockchain technologies and be comfortable writing Research Summaries, Case Study Summaries, or Use Case examinations. 20 | 21 | To be considered for this grant, first, submit an [application](https://forms.gle/GLvFbGZekjaAggXr8). Upon approval, complete a Research Summary, Case Study Summary, or Use Case examination within four to eight weeks. The program completion time depends upon the length of the article or paper and the review process that occurs to ensure the summaries achieve the highest quality. During this time, researchers are expected to attend regular check-in meetings, which can be coordinated using this [calendar link](https://calendly.com/chrisbates01/30min). 22 | 23 | SCRF may offer long-term opportunities to successful grantees and ask them to submit additional grant applications. 24 | 25 | ## Compensation & Logistics 26 | 27 | Grant recipients will receive $300 to write a single Research Summary, Case Study Summary, or Use Case examination. 28 | 29 | SCRF pays in cryptocurrency. For longer commitments, alternative arrangements can be made. Follow the steps outlined in "[How to Get Compensated for Work](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_how_to_get_compensated_for_work.md)" to claim the grant after SCRF announces the recipients. 30 | 31 | If unable to accept funds directly, alternative options could include: 32 | 33 | * Funding a project 34 | * Conference travel 35 | * Charitable donations to an endowment 36 | * Credits for cloud computing resources, archive nodes, etc. 37 | * Direct support of a blockchain-related organization or event of choice 38 | 39 | ## Learn More About SCRF 40 | 41 | SCRF is an interactive forum supported by an active international community. SCRF's members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 42 | -------------------------------------------------------------------------------- /en/hiring_blockchain_research_mentor.md: -------------------------------------------------------------------------------- 1 | # SCRF Blockchain Research Mentor 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring a part-time Blockchain Research Mentor to join the Content Team. The ideal candidate will contribute to mentoring content contributors at SCRF. 4 | 5 | SCRF is seeking a highly motivated individual who has insight into the state-of-the-art blockchain technology advancement, an interest in research discussions, and a passion for mentoring blockchain research enthusiasts. 6 | 7 | ## SCRF Mission 8 | 9 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 10 | 11 | ## Role Summary 12 | 13 | The Blockchain Research Mentor will use their expertise in blockchain to guide research content creation on the forum. By working closely with individual SCRF's community members, the mentor will propose, review, and guide mentees to write about focused topics on the forum. The Blockchain Research Mentor helps curate research content to be accurate and insightful. 14 | 15 | ## Responsibilities 16 | 17 | The Blockchain Research Mentor is expected to: 18 | 19 | * Propose ideas for web3 research content that aligns with SCRF's mission 20 | * Review and improve research content ideas generated by the community 21 | * Help define the scope of content to ensure it fits a clear timeline from start to completion 22 | * Provide constructive feedback and guidance for contributors creating ongoing research content 23 | * Offer insight around the importance and relevancy of a piece of research to the challenges faced in the blockchain/web3 space 24 | 25 | ## Qualifications 26 | 27 | SCRF is looking for someone who has knowledge of technical discipline related to blockchain, web3, or cryptocurrencies. 28 | 29 | Qualified candidates have: 30 | 31 | * An academic background (preferably) or equivalent years of work experience 32 | * A general understanding of blockchain-related research spaces is necessary for this role or a specialization in a sub-field of blockchain research 33 | * Experience or strong interest in science communication 34 | * Clear communication skills and willingness to use chat, video, and email to coordinate with team members and mentees 35 | * The ability to work with a remote and globally distributed team 36 | 37 | ## Compensation and Logistics 38 | 39 | Work at SCRF includes: 40 | 41 | * Fully remote location 42 | * Negotiable, competitive pay at $30-50/hour to start 43 | * Part-time (10-15 hours) to start, opportunities to increase with time 44 | * Compensation in cryptocurrency preferred 45 | 46 | ## How to Apply 47 | 48 | To apply for this role, please either email [work@scrf.io](mailto:work@scrf.io) or join SCRF's chat and follow the instructions below. Further application instructions are available on [💲start-here](https://discord.com/channels/784234332617048065/962841663246585896) and [🚅start-here](https://discord.com/channels/784234332617048065/968215614550323210) channels. 49 | 50 | To begin the application process: 51 | 52 | 1. Join SCRF's [chat](https://discord.gg/vNmbPmYEwj). 53 | 2. Use the [🎫apply-here](https://discord.com/channels/784234332617048065/968212285178916914) channel to start an application. 54 | 3. Click on "Start Application". 55 | 4. Follow the prompts, include the name of the role and a link to a CV, resume, or portfolio. 56 | 5. Submit a blurb (1-2 paragraphs) about why you are interested in this position. 57 | 58 | The Onboarding and Hiring Teams will respond to the application with next steps to start working with SCRF. Reach out to [onboarding@scrf.io](mailto:onboarding@scrf.io) with any additional questions. 59 | 60 | ## Learn More About SCRF 61 | 62 | SCRF is an interactive forum supported by an active international community. SCRF's members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 63 | -------------------------------------------------------------------------------- /en/hiring_community_lead.md: -------------------------------------------------------------------------------- 1 | # SCRF Community Manager Job Description 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring a part-time, paid Community Manager to join our Community Team. This role will support SCRF’s community, support community event planning, and propose new interactions beyond the SCRF community while engaging with an active international community in our chat. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking highly motivated individuals who are curious about blockchain technologies and find satisfaction in growing engaged communities. The main focus of the role is to help with community management. 12 | 13 | ## Responsibilities 14 | 15 | The Community Lead is expected to: 16 | 17 | * Work closely with the Community team 18 | * Assist individuals through onboarding 19 | * Support and plan community events and initiatives 20 | * Address any questions or concerns raised by community members 21 | * Help increase community engagement 22 | * Write social media (Twitter, LinkedIn) copy and share with the team to review 23 | * Implement discord bots to facilitate more community interaction 24 | 25 | ## Qualifications 26 | 27 | SCRF is looking for someone who has a background and interest in media and communications, as well as some level of interest and knowledge in blockchain and cryptocurrencies. 28 | 29 | SCRF is looking for candidates who have: 30 | 31 | * Clear communication skills and willingness to use chat, video, and email to coordinate 32 | * The ability to work with a fully remote, globally distributed team 33 | * Experience managing social media accounts 34 | * Experience supporting an online community 35 | 36 | ## Compensation & Logistics 37 | 38 | * Fully remote 39 | * Hourly pay - negotiable, competitive 40 | * Part-time (10-15 hours) to start, opportunities to increase with time 41 | * Compensation in cryptocurrency preferred 42 | 43 | ## How to Apply 44 | 45 | To apply for this role, please either email [work@scrf.io](mailto:work@scrf.io) or join SCRF's chat and follow the instructions below. Further application instructions are available on [💲start-here](https://discord.com/channels/784234332617048065/962841663246585896) and [🚅start-here](https://discord.com/channels/784234332617048065/968215614550323210) channels. 46 | 47 | To begin the application process: 48 | 49 | 1. Join SCRF's [chat](https://discord.gg/vNmbPmYEwj). 50 | 2. Use the [🎫apply-here](https://discord.com/channels/784234332617048065/968212285178916914) channel to start an application. 51 | 3. Click on "Start Application". 52 | 4. Follow the prompts, include the name of the role and a link to a CV, resume, or portfolio. 53 | 5. Submit a blurb (1-2 paragraphs) about why you are interested in this position. 54 | 55 | The Onboarding and Hiring Teams will respond to the application with next steps to start working with SCRF. Reach out to [onboarding@scrf.io](mailto:onboarding@scrf.io) with any additional questions. 56 | 57 | ## Learn More About SCRF 58 | 59 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 60 | -------------------------------------------------------------------------------- /en/hiring_content_project_manager.md: -------------------------------------------------------------------------------- 1 | # SCRF Engagement Moderator Job Description 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring a part-time Engagement Moderator to serve on the Engagement Team. This role will be responsible for driving engagement to and within the forum on select topic areas. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF seeks a highly motivated individual who is curious about blockchain technologies and finds satisfaction in analyzing research and driving discussions about research. 12 | 13 | The main focus of the role is to drive engagement on the forum through thoughtful posts and responses on various topics. This role supports additional research initiatives at SCRF including but not limited to: 14 | 15 | * Growing SCRF's community of researchers and research enthusiasts 16 | * Supporting social media strategies 17 | 18 | ## Responsibilities 19 | 20 | The Engagement Moderator will be expected to: 21 | 22 | * Execute Go-to-Markets on research summaries in areas of expertise and/or interest 23 | * Identify trending threads to assist in marketing announcements on chat 24 | * Write at least three posts in the forum per week 25 | * Support social media strategies that touch on areas of expertise or interest 26 | 27 | ## Qualifications 28 | 29 | SCRF is looking for candidates who have: 30 | 31 | * Clear communication skills and are willing to use chat, video, and email to coordinate 32 | * The ability to work with a fast-paced, fully remote, globally distributed team 33 | * The desire to support more publicly available writing on fundamental blockchain research 34 | * Experience writing for a general audience 35 | * Ability to write broadly about topics related to blockchain and web3 36 | * High level knowledge or curiosity about topics related to blockchain and web3 (technical background is not needed but is a plus) 37 | 38 | ## Compensation & Logistics 39 | 40 | Work at SCRF includes: 41 | 42 | * Fully remote location 43 | * Negotiable, competitive pay at $30-50/hour to start 44 | * Part-time (10-15 hours) to start, opportunities to increase with time 45 | * Compensation in cryptocurrency preferred 46 | 47 | ## How to Apply 48 | 49 | To apply for this role, please either email [work@scrf.io](mailto:work@scrf.io) or join SCRF's chat and follow the instructions below. Instructions will also be found on [💲start-here](https://discord.com/channels/784234332617048065/962841663246585896) and [🚅start-here channels](https://discord.com/channels/784234332617048065/968215614550323210). 50 | 51 | To begin the application process: 52 | 53 | 1. Join the [chat](https://discord.gg/vNmbPmYEwj). 54 | 2. Use the [🎫apply-here](https://discord.com/channels/784234332617048065/968212285178916914) channel to start your application. 55 | 3. Click "Start Application". 56 | 4. Follow the prompts, including the name of the role and a link to a CV, resume, or portfolio. 57 | 5. Additionally but not required, submit a blurb (1-2 paragraphs) about why you're interested. 58 | 59 | The Onboarding and Hiring Teams will respond to the application with next steps to start working with SCRF. Reach out to [onboarding@scrf.io](mailto:onboarding@scrf.io) with any additional questions. 60 | 61 | ## Learn More About SCRF 62 | 63 | SCRF is an interactive forum supported by an active international community. SCRF's members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 64 | -------------------------------------------------------------------------------- /en/hiring_governance_project_management.md: -------------------------------------------------------------------------------- 1 | # SCRF Governance Project Manager 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring for a part-time, paid Governance Project Manager (PM). This role will support a variety of governance initiatives ranging from a podcast to virtual and live events to governance content for the forum. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking a highly motivated individual who is curious about blockchain technologies and finds satisfaction in delving into relevant narratives pertaining to web3 governance and relating that knowledge to a variety of projects. 12 | 13 | The main focus of the role is to support governance content, events, and outreach strategies. Since SCRF’s focus is on supporting open blockchain research, there are other initiatives that the Governance PM can support, including but not limited to: 14 | 15 | * Community events that focus on governance topics 16 | * Creating shared lists of governance resources 17 | * The review of governance content for overall context and correctness 18 | * Working with the engagement team 19 | * Creating frameworks for governance reading groups for university clubs 20 | 21 | ## Responsibilities 22 | 23 | The Governance PM is expected to: 24 | 25 | * Review existing governance podcast content (video, text) 26 | * Plan the future direction of the podcast including subsequent mini-series 27 | * Support the planning of governance events 28 | * Support the planning of a governance bounty challenge as part of ETH Denver 29 | * Review governance content on the forum for additional engagement opportunities 30 | 31 | ## Qualifications 32 | 33 | SCRF is looking for candidates who have: 34 | 35 | * Clear communication skills and willingness to use chat, video, and email to coordinate 36 | * Ability to work with a high-paced fully remote, globally distributed team 37 | * Desire to support more publicly available writing on fundamental blockchain research 38 | * A passion for web3 governance, community governance, or research of governance related topics, direct experience is preferred 39 | * A desire to learn podcast, video, or written media content production, experience is preferred 40 | 41 | ## Compensation & Logistics 42 | 43 | * Fully remote 44 | * Hourly pay - negotiable, competitive 45 | * Part-time (10-15 hours) to start, opportunities to increase with time 46 | * Compensation in cryptocurrency preferred 47 | 48 | ## How to Apply 49 | 50 | To apply, please email [eugene@smartcontractresearch.org](mailto:eugene@smartcontractresearch.org) and include: 51 | 52 | * CV/resume 53 | * A short blurb (1-2 paragraphs) about why you’re interested 54 | * Links to previous work, Github, etc. 55 | 56 | ## Learn More About SCRF 57 | 58 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 59 | -------------------------------------------------------------------------------- /en/hiring_job_description_template: -------------------------------------------------------------------------------- 1 | # SCRF Job Description Template 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring a part-time, paid *ROLE*. This role will *INSERT HIGH-LEVEL INFO AROUND WHAT THE ROLE WILL BE DOING*. 4 | 5 | ## Role Summary 6 | 7 | SCRF is seeking a highly motivated individual who is curious about blockchain technologies and finds satisfaction in *SOMETHING ROLE RELATED*. 8 | 9 | The main focus of the role is to *MAIN FOCUS OF THE ROLE*. Since SCRF’s focus is on supporting open blockchain research, there are other initiatives that *ROLE* can support, including but not limited to: 10 | 11 | * *OTHER OPPORTUNITIES AT SCRF* 12 | * *OPP 2* 13 | * *OPP 3* 14 | 15 | ## Responsibilities 16 | 17 | The *ROLE* will be expected to *HIGH LEVEL EXPECTATIONS AND A BULLETED LIST OF RESPONSIBILITIES BELOW*. 18 | 19 | * *RESPONSIBILITY 1* 20 | * *RESPONSIBILITY 2* 21 | * *RESPONSIBILITY 3* 22 | 23 | ## Qualifications 24 | 25 | SCRF is looking for someone who has *FILL IN THE DESIRED QUALIFICATIONS OF THIS ROLE*. 26 | 27 | SCRF is looking for candidates who have: 28 | 29 | * Clear communication skills and willingness to use chat, video, and email to coordinate 30 | * Ability to work with a fully remote, globally distributed team 31 | * Desire to support more publicly available writing on fundamental blockchain research 32 | * Some *SPECIFIC TYPE OF WORK EXPERIENCE* 33 | * Graduate level knowledge of some technical discipline related to blockchain or cryptocurrencies *(ADJUST BASED ON LEVEL OF KNOWLEDGE REQUIRED)* 34 | 35 | ## Compensation and Logistics 36 | 37 | * Fully remote 38 | * Hourly pay - negotiable, competitive 39 | * Part-time (10-15 hours) to start, opportunities to increase with time 40 | * Compensation in cryptocurrency preferred 41 | 42 | ## Learn More About SCRF 43 | 44 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 45 | -------------------------------------------------------------------------------- /en/hiring_peer_reviewer.md: -------------------------------------------------------------------------------- 1 | # SCRF Peer Reviewer Job Description 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring for a part-time, paid Peer Reviewer. SCRF has many [pieces of research content](https://github.com/orgs/smartcontractresearchforum/projects/5) and [initiatives](https://github.com/orgs/smartcontractresearchforum/projects/4) on the go. The ideal candidate will contribute to peer review for blockchain research and will be experimenting with open peer review as a public good in the space. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking a highly motivated individual who is curious about blockchain technologies and finds satisfaction in diving into people’s research to help them understand how to improve it best. 12 | 13 | The focus of the role is to support peer review in the context of the content pipeline at SCRF and to provide peer review to researchers or students who post their research drafts for comment. 14 | 15 | ## Responsibilities 16 | 17 | The Peer Reviewer is expected to: 18 | 19 | * Partake in the content pipeline and research generation team 20 | * Provide a rigorous examination of research 21 | * Offer constructive feedback on how to improve work going through the content pipeline and for pieces posted directly to the forum by researchers or students 22 | * Improve peer review processes for SCRF’s content pipeline 23 | * Contribute to the planning, execution, and development of open peer review for blockchain and cryptocurrency research 24 | 25 | ## Qualifications 26 | 27 | SCRF is looking for candidates who have: 28 | 29 | * Clear communication skills and willingness to use chat, video, and email to coordinate 30 | * Ability to work with a high-paced fully remote, globally distributed team 31 | * Desire to contribute to open research in the blockchain or cryptocurrency domains 32 | * Formal review and/ or teaching experience 33 | * Graduate level knowledge of some technical discipline related to blockchain or cryptocurrencies (Faculty and Researchers who already defended their PhD strongly preferred, will consider exceptional current graduate students) 34 | 35 | ## Compensation & Logistics 36 | 37 | * Fully remote 38 | * Hourly pay - negotiable, competitive 39 | * Part-time (10-15 hours) to start, opportunities to increase with time 40 | * Compensation in cryptocurrency preferred 41 | 42 | ## How to Apply 43 | 44 | To apply, please email [eugene@smartcontractresearch.org](mailto:eugene@smartcontractresearch.org) and include: 45 | 46 | * CV/resume 47 | * A short blurb (1-2 paragraphs) about why you’re interested 48 | * Links to previous work, Github, etc. 49 | 50 | ## Learn More About SCRF 51 | 52 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 53 | -------------------------------------------------------------------------------- /en/hiring_podcast_project_management.md: -------------------------------------------------------------------------------- 1 | # SCRF Podcast Project Manager 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring for a part-time, paid Podcast Project Manager (PM). SCRF is launching a video and audio podcast in early 2022 and needs a project manager to lead and support the creation of a new series, which touches on topics ranging from decentralizing science, governance, DAOs, and cryptography, amongst others. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking a highly motivated individual to support its new podcast. The ideal candidate has some experience in podcasting/media production, is curious about blockchain technologies, and excited to join and support a new video podcast project. 12 | 13 | ## Responsibilities 14 | 15 | The Podcast PM is expected to: 16 | 17 | * Help plan and execute a new podcast mini-series working with the relevant content experts at SCRF 18 | * Support research and prep for interviews 19 | * Assist with scheduling and recording interviews 20 | * Create and/ or review social media posts 21 | * Assist or oversee the creation of show notes and a transcript per episode 22 | 23 | ## Qualifications 24 | 25 | SCRF is looking for candidates who have: 26 | 27 | * Clear communication skills and willingness to use chat, video, and email to coordinate 28 | * The ability to work with a fully remote, globally distributed team 29 | * A passion for podcasting, prior experience in podcasting or audio/ visual production is strongly preferred 30 | * Willingness to take initiative and ownership with ad-hoc tasks 31 | * An interest in learning about web3, prior knowledge of blockchain is not required but preferred 32 | 33 | ## Compensation & Logistics 34 | 35 | * Fully remote 36 | * Hourly pay - negotiable, competitive 37 | * Part-time (10-15 hours) to start, opportunities to increase with time 38 | * Compensation in cryptocurrency preferred 39 | 40 | ## How to Apply 41 | 42 | To apply, please email [eugene@smartcontractresearch.org](mailto:eugene@smartcontractresearch.org) and include: 43 | 44 | * CV/resume 45 | * A short blurb (1-2 paragraphs) about why you’re interested 46 | * Links to previous work, Github, etc. 47 | 48 | ## Learn More About SCRF 49 | 50 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 51 | -------------------------------------------------------------------------------- /en/hiring_project_management.md: -------------------------------------------------------------------------------- 1 | # SCRF: Project Management 2 | 3 | ## What is SCRF? 4 | 5 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) is where academics, researchers, and industry leaders from all over the world come together to discuss research, solicit thoughtful peer review, and find new projects on which to collaborate. 6 | 7 | ## SCRF Mission 8 | 9 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 10 | 11 | ## Role Summary 12 | 13 | We are looking for part-time, paid Project Managers of all skill levels who are excited by the prospect of supporting our community focused on open blockchain research. We have many [initiatives](https://github.com/orgs/smartcontractresearchforum/projects/4) on the go; we need people to dig in, take ownership, and help shepherd them to success. 14 | 15 | Perfect candidates are highly motivated individuals, curious about blockchain technologies, that find satisfaction in knowing they were the key to taking a project from an idea and turning it into a success. 16 | 17 | Our focus at SCRF is advancing conversation around open blockchain research. To do that, we have several initiatives that new or experienced project managers can help with: 18 | 19 | * Mentoring Researchers as they create content for our forum 20 | * Growing our community of researchers and research enthusiasts 21 | * Supporting the generation of podcasts, audio interviews, and video 22 | * Helping with social media management 23 | * Structuring outreach and onboarding strategies for new researchers 24 | * Administering grants bounty programs 25 | * Coordinating numerous internal administrative activities 26 | 27 | New Project Managers start by joining our weekly meetings, taking notes, reviewing documentation, learning through one-on-one meetings, exploring the forum, and participating in the chat. As PMs learn more about us they have the opportunity to adopt or propose new projects that align with SCRF's mission. 28 | 29 | ## Qualifications 30 | 31 | We have roles available for people with all levels of experience, whether it’s for students looking for their first role or those with 10+ years of experience. We want to work with people who are deeply passionate about the technology, are mission-aligned with SCRF, and want to support crypto by supporting open blockchain research. 32 | 33 | SCRF is looking for candidates who have: 34 | 35 | * Clear communication skills and willingness to use chat, video, and email to coordinate 36 | * Ability to work with a fully remote, global team 37 | * Desire to learn more about fundamental blockchain research and how the industry works 38 | * Some formal Project Management experience is a nice to have, *but not required* 39 | * Blockchain/cryptocurrency knowledge preferred, *but not required* 40 | 41 | ## Compensation & Logistics 42 | 43 | * Fully remote 44 | * Hourly pay - negotiable, competitive 45 | * Part-time (10-15 hours) to start, opportunities to increase with time 46 | * Compensation in cryptocurrency preferred 47 | 48 | ## How to Apply 49 | 50 | To apply, please email [eugene@smartcontractresearch.org](mailto:eugene@smartcontractresearch.org) and include: 51 | 52 | * CV/resume 53 | * A short blurb (1-2 paragraphs) about why you’re interested 54 | * Links to previous work, Github, etc. 55 | 56 | ## Learn More About SCRF 57 | 58 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 59 | -------------------------------------------------------------------------------- /en/hiring_project_management_intern.md: -------------------------------------------------------------------------------- 1 | # SCRF Project Management Internship Job Description 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring for a part-time, paid Project Management (PM) Intern. SCRF has many [projects](https://github.com/orgs/smartcontractresearchforum/projects/4) on the go. The ideal candidate is eager to learn how to manage and help with multiple SCRF projects simultaneously. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking a highly motivated individual who is curious about blockchain technologies and finds satisfaction in helping manage and lead group projects. 12 | 13 | The main focus of the role is to support the General Project Managers with a variety of projects and tasks. 14 | 15 | Additionally, there are many [initiatives](https://github.com/orgs/smartcontractresearchforum/projects/4) underway at SCRF that the PM Intern can further support. 16 | 17 | ## Responsibilities 18 | 19 | The PM Intern is expected to assist with a variety of projects and attend regular meetings. Applicants should have a desire to learn more about SCRF and take initiative to support the highest priority projects that need additional attention. The PM intern will: 20 | * Coordinate, support, and lead multiple projects across international teams 21 | * Keep project management software up to date to ensure that the team is on the same page and that the wider public can see what SCRF is working on 22 | * Help with administrative tasks for relevant projects, such as scheduling meetings, keeping notes, etc. 23 | * Support elements of project strategy including planning out the work to be done, resourcing, and process improvements 24 | 25 | ## Qualifications 26 | 27 | SCRF is looking for candidates who have: 28 | 29 | * Clear communication skills and willingness to use chat, video, and email to coordinate 30 | * Ability to work with a high-paced fully remote, globally distributed team 31 | * Some project management experience is desired, even if that is with course work or extracurricular activities (formal PM experience is desired but not required) 32 | * Some knowledge of blockchain or cryptocurrencies is preferred 33 | 34 | ## Compensation & Logistics 35 | 36 | * Fully remote 37 | * Hourly pay - negotiable, competitive 38 | * Part-time (10-15 hours) to start, opportunities to increase with time 39 | * Compensation in cryptocurrency preferred 40 | 41 | ## How to Apply 42 | 43 | To apply, please email [eugene@smartcontractresearch.org](mailto:eugene@smartcontractresearch.org) and include: 44 | 45 | * CV/resume 46 | * A short blurb (1-2 paragraphs) about why you’re interested 47 | * Links to previous work, Github, etc. 48 | 49 | ## Learn More About SCRF 50 | 51 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 52 | -------------------------------------------------------------------------------- /en/hiring_research_project_management.md: -------------------------------------------------------------------------------- 1 | # SCRF Research Project Manager Job Description 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring for a part-time, paid Research Project Manager (PM). SCRF has [many initiatives](https://github.com/smartcontractresearchforum/docs) on the go, so our ideal candidate will dig in, take ownership, and help the team [stay on track](https://github.com/orgs/smartcontractresearchforum/projects/4). 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking a highly motivated individual who is curious about blockchain technologies and finds satisfaction in taking a project from an idea and turning it into a success. 12 | 13 | The main focus of the role is to manage our research and [content pipeline](https://github.com/orgs/smartcontractresearchforum/projects/5). Since SCRF’s focus is on supporting open blockchain research, there are numerous initiatives that new or experienced project managers can support, including but not limited to: 14 | 15 | * Mentor researchers as they create content for the forum 16 | * Grow our community of researchers and research enthusiasts 17 | * Support the creation of podcasts, audio interviews, and video 18 | * Help with social media management 19 | * Structure outreach and onboarding strategies for new researchers 20 | * Administer our grants and bounty programs 21 | * Coordinate numerous internal administrative activities 22 | 23 | ## Responsibilities 24 | 25 | The Research Project Manager will be expected to support research writing through its life cycle and lead the initial round of technical review. Additionally, the Research PM will: 26 | 27 | * Oversee and manage the content pipeline 28 | * Work with researchers to ensure they are progressing with their projects 29 | * Coordinate with the Engagement team to ensure that the engagement strategy is put together at the appropriate time 30 | * Provide an initial technical review of papers to help them advance through the pipeline 31 | * Join relevant weekly meetings 32 | * Review documentation 33 | * Learn through one-on-one meetings 34 | * Explore the forum and review existing drafts 35 | * Participate in the chat 36 | 37 | Overall, the Research PM's core responsibilities are to support the content review process, provide an initial technical review, project manage the content pipeline, and keep the PM software up to date. Outside of these tasks, there are opportunities, such as the ones mentioned above, to get involved with other projects and initiatives across the organization. 38 | 39 | ## Qualifications 40 | 41 | SCRF is looking for someone who has a graduate level technical understanding and enjoys working with a variety of researchers in ensuring the highest quality of research writing. While there would be space to write research summaries and support research projects, the primary focus of the role is to help manage SCRF’s content pipeline and to perform technical peer review. 42 | 43 | SCRF is looking for candidates who have: 44 | 45 | * Clear communication skills and willingness to use chat, video, and email to coordinate 46 | * Ability to work with a fully remote, global team 47 | * Desire to support publicly available writing on fundamental blockchain research 48 | * Formal research Project Management experience 49 | * Graduate level knowledge of technical disciplines related to blockchain or cryptocurrencies 50 | 51 | ## Compensation & Logistics 52 | 53 | * Fully remote 54 | * Hourly pay - negotiable, competitive 55 | * Part-time (10-15 hours) to start, opportunities to increase with time 56 | * Compensation in cryptocurrency preferred 57 | 58 | ## How to Apply 59 | 60 | To apply, please email [eugene@smartcontractresearch.org](mailto:eugene@smartcontractresearch.org) and include: 61 | 62 | * CV/resume 63 | * A short blurb (1-2 paragraphs) about why you’re interested 64 | * Links to previous work, Github, etc. 65 | 66 | ## Learn More About SCRF 67 | 68 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 69 | -------------------------------------------------------------------------------- /en/hiring_social_media_manager.md: -------------------------------------------------------------------------------- 1 | # SCRF Social Media Manager Job Description 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is hiring a part-time, paid Social Media Manager to join the Discovery Team. This role will oversee SCRF’s social media accounts, including Twitter, LinkedIn, and Facebook, while proposing new ways to engage with the community and wider public. 4 | 5 | ## SCRF Mission 6 | 7 | SCRF is a premier, open discourse hub dedicated to web3 advancement with tools in place to amplify the latest quality research, reward contributions, deliver insights, and facilitate industry connections. Composed of an active international community, SCRF connects academic researchers with blockchain innovators to collaborate on solutions. 8 | 9 | ## Role Summary 10 | 11 | SCRF is seeking highly motivated individuals who are curious about web3 technologies and find satisfaction in growing engaged communities. The role reports to the Head of Discovery with a focus on crafting, improving, and executing social media strategies. 12 | 13 | ## Responsibilities 14 | 15 | The Social Media Manager is expected to: 16 | 17 | * Create, edit, and manage social media posts for Twitter, LinkedIn, and Facebook while adhering to SCRF’s voice and tone. 18 | * Craft and maintain a socials calendar. 19 | * Collaborate with the Engagement, Outreach, and Content Teams to ensure SCRF is posting about notable achievements and pertinent activities throughout the organization. 20 | * Work with Design to ensure posts are engaging and brand-aligned. 21 | * Keep a pulse on web3 news and trends to support relevant conversations and discussions. 22 | * Monitor socials analytics. 23 | * Strategically follow, RT, plan hashtags, and reply to messages. 24 | * Propose socials strategy and process improvements including new channels. 25 | 26 | ## Qualifications 27 | 28 | SCRF is looking for someone who has a background and interest in social media and communications, as well as some level of interest and knowledge in web3. 29 | 30 | Qualified candidates have: 31 | 32 | * Clear communication and writing skills and willingness to use chat, video, and email to coordinate. 33 | * The ability to work with a fully remote, globally distributed team. 34 | * Experience managing social media accounts. 35 | * Existing knowledge of blockchain / web3 is preferred but not required. 36 | 37 | ## Compensation and Logistics 38 | 39 | Work at SCRF is: 40 | * Fully remote 41 | * Part-time (10-15 hours) to start, opportunities to increase with time 42 | * Hourly - pay is negotiable, competitive 43 | * Compensated preferably in cryptocurrency 44 | 45 | ## How to Apply 46 | 47 | To apply, please email maria@scrf.io and include: 48 | * CV/resume 49 | * A short blurb (1-2 paragraphs) about why you’re interested 50 | * Links to previous work, writing samples, etc. 51 | 52 | ## Learn More About SCRF 53 | 54 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 55 | -------------------------------------------------------------------------------- /en/innovation_post_template.md: -------------------------------------------------------------------------------- 1 | # Innovation Post Template 2 | 3 | The Innovation Post template is used to share industry projects or ideas [on the forum](https://www.smartcontractresearch.org/). 4 | 5 | By contributing you get: 6 | 7 | * Access to a community of web3 experts, architects, and researchers 8 | * Constructive feedback and awareness 9 | * A dedicated space for long-tail discussions of your project or idea long after you post 10 | 11 | _If you are interested in posting about academic research instead, please consider using the [Research Summary template](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_research_summary_template.md)._ 12 | 13 | ## General Template 14 | 15 | ### TLDR 16 | 17 | * Using a few bullets, provide an overview of the post. 18 | * You can introduce the problem area, highlight notable findings, or write something that would make people curious enough to stop scrolling and dig into the post. 19 | 20 | ### Background 21 | 22 | Share the motivation behind the project or idea, and provide information to get general readers up to speed. 23 | 24 | Consider: 25 | 26 | * The origin of the question or idea in this post. 27 | * What excites you about this project or idea? 28 | * Context needed to understand the problem 29 | * Notable endeavors already explored in the field. 30 | * Key terminology that may help people understand any technical nuances. 31 | 32 | ### Core Problem 33 | 34 | In a sentence or a short paragraph, summarize the core problem that the project or idea is looking to solve. 35 | 36 | ### Solution to the Problem 37 | 38 | In this section, provide a tentative answer to the core problem. Put forth the perspective with adequate supporting materials. 39 | 40 | Think about: 41 | 42 | * How does the project or idea address the core problem? 43 | * How does the project impact the space? 44 | * What are challenges to building or implementing the project or idea? 45 | * What are externalities or drawbacks of the project/idea, and how can they be offset? 46 | * Support your thesis with data, examples, or evidence. 47 | 48 | ### Further Reading 49 | 50 | Include links for further reading. You can choose to provide a brief description of each link. 51 | 52 | ## Before Posting 53 | 54 | * Do not shill or copy-paste marketing language into the discussion post. Focus on the problem and how the project or idea serves as an interesting solution. 55 | * The template is structured to highlight what needs to be answered in a logical post. 56 | 57 | Because SCRF is not a bulletin board or social media platform, the forum is highly moderated. We may require post owners to make edits to meet requirements. 58 | 59 | To make the most out of your post on the forum, you can reach out to content@scrf.io while sending along your forum username and a short blurb of who you are. SCRF offers light edits and handles the overhead of posting. 60 | 61 | ## Learn More About SCRF 62 | 63 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 64 | -------------------------------------------------------------------------------- /en/issue_forms_directory.md: -------------------------------------------------------------------------------- 1 | # Issue Forms Directory 2 | 3 | SCRF's Issue Forms Directory is a comprehensive guide to creating new Issues on GitHub. 4 | 5 | # IT 6 | 7 | For the latest please see the [Full List of IT Issue Forms](https://github.com/smartcontractresearchforum/IT/issues/new/choose). 8 | 9 | ## General 10 | - [User Permissions](https://github.com/smartcontractresearchforum/IT/issues/new?assignees=SirAh0&labels=uar&template=user-permissions.yml&title=UAR+-+) - Request user permission change for any of the SCRF spaces. 11 | - [Onboarding](https://github.com/smartcontractresearchforum/IT/issues/new?assignees=SirAh0&labels=onboard&template=onboarding.yml&title=Onboard+-+) - A new user needs onbaording for all SCRF spaces. 12 | - [SCRF.io Short URL](https://github.com/smartcontractresearchforum/IT/issues/new?assignees=SirAh0&labels=%F0%9F%95%B8%EF%B8%8Fscrf.io%3Ashort-url&template=scrfio-redirect.yml&title=SCRF.io+Short+URL+-+) - Request a redirect rule for scrf.io 13 | 14 | ## GitHub 15 | - [Automation](https://github.com/smartcontractresearchforum/IT/issues/new?assignees=SirAh0&labels=github&template=github-automation.yml&title=%F0%9F%92%BE+-+Workflow) - Something isnt automating anymore or something needs to be automated. 16 | - [Issue Template](https://github.com/smartcontractresearchforum/IT/issues/new?assignees=SirAh0&labels=github&template=github-issue-template.yml&title=%F0%9F%92%BE+-+Issue+Template) - Request to build a new issue template 17 | - [Project Board](https://github.com/smartcontractresearchforum/IT/issues/new?assignees=SirAh0&labels=github&template=github-project-board.yml&title=%F0%9F%92%BE+-+Project+Board) - Help creating, configuring, or general questions around GitHub Project Boards. 18 | 19 | 20 | 21 | # Discovery 22 | 23 | For the latest please see the [Full List of Discovery Issue Forms](https://github.com/smartcontractresearchforum/discovery/issues/new/choose). 24 | 25 | ## Communications 26 | - [Announcement Request](https://github.com/smartcontractresearchforum/discovery/issues/new?assignees=SirAh0&labels=announcement&template=announcement-request.yml&title=%5B%F0%9F%93%A3Announcement%5D-+%3Cadd+name+here%3E+) - If you have something to share with the SCRF community let us know! 27 | 28 | ## Calendar 29 | - [Calendar Event](https://github.com/smartcontractresearchforum/discovery/issues/new?assignees=SirAh0&labels=&template=calendar.yml&title=%F0%9F%93%85+-+New+Event) - Add an event to the SCRF calendar. 30 | - [Update Calendar Event](https://github.com/smartcontractresearchforum/discovery/issues/new?assignees=SirAh0&labels=&template=update-calendar.yml&title=%F0%9F%93%85+-+%F0%9F%93%85+Update+Calendar+Event) - Change something about an existing calendar. 31 | 32 | ## Media 33 | - [Podcast](https://github.com/smartcontractresearchforum/discovery/issues/new?assignees=eleventh19%2Civanplazacic&labels=&template=podcast.yml&title=%F0%9F%93%BC+-+Episode+Name) - Add proposal for a SCRF Interviews Podcast episode 34 | 35 | 36 | # Engagement 37 | 38 | For the latest please see the [Full List of Engagement Issue Forms](https://github.com/smartcontractresearchforum/engagement/issues/new/choose). 39 | 40 | ## Chat (Discord) 41 | - [Change Reuqest](https://github.com/smartcontractresearchforum/engagement/issues/new?assignees=SirAh0&labels=chat&template=a-chat-change-request.yml&title=%F0%9F%97%AA+%5B%F0%9F%9A%A7%5D+Change+Request) - Change anything about the SCRF Community Discord Chat server 42 | - [Bad Bot](https://github.com/smartcontractresearchforum/engagement/issues/new?assignees=SirAh0&labels=bug%2Cchat&template=chat-bad-bot.yml&title=%F0%9F%97%AA+%5B%F0%9F%A4%96%5D+Bad+Bot) - A bot is doing something wrong or isnt working at all 43 | - [Bad Calendar](https://github.com/smartcontractresearchforum/engagement/issues/new?assignees=SirAh0&labels=bug%2Cchat&template=chat-calendar.yml&title=%F0%9F%97%AA+%5B%F0%9F%93%85%5D+Calendar) - Something is wrong with a calendar listing 44 | - [User Role](https://github.com/smartcontractresearchforum/engagement/issues/new?assignees=SirAh0&labels=bug%2Cchat&template=chat-uar.yml&title=%F0%9F%97%AA+%5B%F0%9F%94%93%5D+UAR) - SCRF Member needs a role change 45 | 46 | # Docs 47 | 48 | For the latest please see the [Full List of Docs Issue Forms](https://github.com/smartcontractresearchforum/docs/issues/new/choose). 49 | 50 | - [Document Submission](https://github.com/smartcontractresearchforum/docs/issues/new?assignees=vsterling&labels=&template=doc-submission.yml&title=%F0%9F%92%BC+Document+Submission) - Add a new document to the doc repo 51 | 52 | # Operations 53 | 54 | For the latest please see the [Full List of Operations Issue Forms](https://github.com/smartcontractresearchforum/operations/issues/new/choose). 55 | 56 | - [Project Proposal](https://github.com/smartcontractresearchforum/operations/issues/new?assignees=&labels=Ops%3A+Proposal&template=Project+Proposal+form.yml&title=%5BProposal%5D%3A+7) - Please use this form to propose your project for review. The decision of the review will be communicated to you. 57 | -------------------------------------------------------------------------------- /en/mission_and_principles.md: -------------------------------------------------------------------------------- 1 | # Mission and Principles 2 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created a Mission and Principles guide to help anyone describing or referring to SCRF to have access to the latest messaging. 3 | 4 | ## Mission 5 | 6 | [SCRF](https://www.smartcontractresearch.org)'s bold mission is to bring together researchers and builders to create groundbreaking web3 advancements through actionable research. To succeed in this quest, SCRF facilitates resource and knowledge exchange, sponsors projects, and constructs collaborative forums. SCRF is comprised of an active international network of academics, industry architects, and blockchain advocates. 7 | 8 | SCRF was founded in early 2021 by [Richard Brown](https://www.linkedin.com/in/richardgbrown/), former Head of Community at [MakerDAO](https://makerdao.com/en/), and [Sergey Nazarov](https://www.linkedin.com/in/sergeydnazarov/), the co-founder of [Chainlink](https://chain.link/). Since its inception, SCRF has sponsored notable research projects such as [Professor Seth Frey](https://twitter.com/enfascination)’s literature review on [building culture across disciplines](https://www.smartcontractresearch.org/t/project-update-building-culture-in-decentralized-organizations-intentionally-and-systematically/1358), Metagov’s Govbase [open database project](https://www.smartcontractresearch.org/t/introducing-govbase-an-open-database-for-governance-models/924), [Professor Nathan Schneider](https://twitter.com/ntnsndr)’s [CommunityRule](https://www.smartcontractresearch.org/t/introducing-the-exit-to-community-collective/1246) and [Modpol](https://www.smartcontractresearch.org/t/modpol-is-a-self-governance-toolkit-for-communities-in-online-worlds/1195) projects, and [TalentDAO](https://twitter.com/talentDAO_)’s research on exploring [leadership patterns in DAOs](https://www.smartcontractresearch.org/t/proposal-leadership-in-decentralized-organizations-principles-and-practices/1293). SCRF has also provided support to the [CMU Cryptography Seminar](https://twitter.com/cmucrypto), helped organize a [mini-conference on DeSci](https://opscientia.notion.site/DeSci-EthDenver-21-c74fc532cccc4979b9cf7977b4ee17ea) with Foresight Institute and OpSci at ETHDenver 2022, and co-organized the first DeSci Day in Amsterdam in April 2022 with DeSci Labs/Foundation, VitaDAO, Molecule, LabDAO, Foresight Institute, and Science Coins. 9 | ## Principles 10 | 1. Access to research should be open and accessible to academics and practitioners alike. 11 | 2. Research should be directly connected to real-world problems, which is why we facilitate the implementation and usability of research. 12 | 3. Frequently, knowledge creation isn’t properly incentivized. At SCRF, we provide academics and practitioners ample opportunities to receive compensation for amplifying their research and sharing their thoughts and opinions. 13 | 4. Anyone with the drive and desire should be able to contribute meaningfully to research. 14 | 5. Important conversations are created around research. That is why we built the Forum. We want to hear what you think, what relevant context an author did not cover, and what are the potential future implications. 15 | ## Learn More About SCRF 16 | 17 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 18 | -------------------------------------------------------------------------------- /en/process_research_improvement_proposal.md: -------------------------------------------------------------------------------- 1 | # SCRF: Process - Research Improvement Proposal 2 | 3 | ## Introduction 4 | 5 | SCRF's culture is based on the open-source software community. Anyone can suggest an improvement or a new process, but it has to fit in the existing framework. Project Proposals are the first step of our Research Improvement Proposal (RIP) process. This is how we decide whether a suggested improvement provides a benefit, whether that benefit is worth the resources spent, and whether or not it makes sense given other projects already in process. 6 | 7 | Before you start a new project plan, check the [Research Team](https://github.com/orgs/smartcontractresearchforum/projects/4) board to determine whether something similar doesn't already exist. If you find something close, contact the author or add a comment to the ticket to see if there's a way to merge your ideas into one project. 8 | 9 | When you're ready, create a new [ticket](https://github.com/orgs/smartcontractresearchforum/projects/4), and create a new Project Plan from the template below and paste a link to it into the ticket. 10 | 11 | Reach out to one of the SCRF team members on the chat and try to arrange some time to discuss the idea during our weekly calls. 12 | 13 | Here's a link to the [Project Plan Template](./project_research_improvement_proposal.md). 14 | 15 | ## Method 16 | 17 | Create a copy of the [Project Plan Template](./project_research_improvement_proposal.md), fill out the relevant fields and then move it to the [Project Proposals](https://drive.google.com/drive/u/0/folders/1nk2Emr6pyGLHx0Hzy-_CfKZJnye2S1bS) directory. Create an issue in GitHub describing the proposal and link to your google doc. 18 | 19 | 1. Fill out the form 20 | 1. Talk about with Ops 21 | 1. Update the plan based on feedback 22 | 1. Be prepared to create Proof of Concept (POC) if the project is creating a specific deliverable. If the proposal outlines a new type of work then a workflow document will be required. 23 | 1. Include plans to present the Proposal to the greater team 24 | 25 | ## Workflow for a New Proposal 26 | 27 | 1. Pitch to the Team 28 | 1. Create an 'elevator pitch' - a quick distillation of your idea. 29 | 1. Give a member of the Ops team your elevator pitch 30 | 1. They'll determine whether the project aligns with SCRF goals and scope 31 | 1. Check in the [Research Team](https://github.com/orgs/smartcontractresearchforum/projects/4) pipeline to determine whether or not a pre-existing project already encompasses your suggestion 32 | 1. If an existing project could encompass the suggestion, reach out to the creator in chat, to see if you could incorporate your ideas into theirs. 33 | 1. If an existing project does not encompass the suggestion, create a new issue with a link to your project plan (adapted from the [Project Plan Template](./project_research_improvement_proposal.md) and a brief description of the project in the issue. 34 | 1. Create a Proposal 35 | 1. Fill in a Project Plan Template 36 | 1. Consider resources needed, potential scope, etc. 37 | 1. Document should describe how many people, what resources, and how much time in detail. Consider the scope of the project when deciding how much detail to add. 38 | 1. Develop goals and analytics. 39 | 1. How does this project define success? 40 | 1. How is that success tracked? 41 | 1. Develop a timeline. 42 | 1. Broken down by weeks 43 | 1. Week 1: 44 | 1. Week 2: 45 | 1. Etc. 46 | 1. Outline how the project would be tracked in Github 47 | 1. (If External, then create a budget) 48 | 1. Flag Ops for a conversation about the project. 49 | 1. Create a proof of concept/workflow document 50 | 1. Discuss with Ops team 51 | 1. Incorporate feedback 52 | 1. Create Project Presentation for the group. 53 | 1. Create a 10-minute presentation 54 | 1. This should detail the project and outline the steps and resources needed to implement it. 55 | 1. Schedule a time during SCRF's weekly Wednesday meetings to present your project. 56 | 1. Present the project. 57 | 1. Tally suggestions and concerns raised by the group. 58 | 1. Schedule a follow-up meeting with SCRF Ops team 59 | -------------------------------------------------------------------------------- /en/program_reading_group.md: -------------------------------------------------------------------------------- 1 | # SCRF Reading Group 2 | 3 | ## What is SCRF? 4 | 5 | The Smart Contract Research Forum (SCRF) serves as an open, agnostic bridge between academia and industry. Supported by an international community dedicated to advancing actionable blockchain research, our mission is to surface challenging problems in the space and present them to an active community of academics, researchers, and developers. It is the ecosystem’s source for problems to solve, and to find the people, projects, and tools to solve them. Learn [more about SCRF here](https://github.com/smartcontractresearchforum/docs). 6 | 7 | ## About the Reading Group 8 | 9 | The SCRF Reading Group is an opportunity for community members to focus their attention on a singular notable work and to discuss that work in-depth. The focus will be on long-form works about blockchain technologies, their impact, and implementations. This reading group helps SCRF develop as a thoughtful community of thinkers seeking to apply knowledge to solve the immediate questions of the crypto ecosystem. It is also a good entry point for new members of SCRF as they seek to develop their analytical skills as future SCRF researchers. 10 | 11 | The reading group selections are chosen by the SCRF community in our [chat](https://discord.gg/QKktHJU9), so make sure to inquire about participation there. Discussion about the selected readings happens on the [Forum](https://www.smartcontractresearch.org). Once the reading group has finished their discussion, one or more members can summarize the work and publish it on the forum as either a [Research Summary or Discussion post](https://github.com/smartcontractresearchforum/docs#content-templates). 12 | 13 | ## How To Join 14 | 15 | You can join a reading group at any point in the process, but each one will have the following stages: 16 | 17 | 1. The reading group is announced in chat and the forum. 18 | 1. Readings are solicited from the community in chat. 19 | 1. The reading is selected and a schedule for discussion is discussed in chat. 20 | 1. The reading group questions and comments are posted to the reading group forum thread. 21 | 1. A final announcement post in the forum thread indicates that the reading group is done with their active discussion. 22 | 23 | ## Contact Us 24 | 25 | - [Connecting with SCRF](content_connecting_with_scrf.md) 26 | 27 | 28 | -------------------------------------------------------------------------------- /en/project_proposal_template.md: -------------------------------------------------------------------------------- 1 | # Project Proposal Template 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) created the Project Proposal Template to allow SCRF contributors to create and submit project proposals. 4 | 5 | ## Overview 6 | 7 | With this document, we are helping SCRF contributors to design, structure, and submit project proposals. Please see the [Project Management Process](https://docs.google.com/document/d/1vmO3W1GbkrCJWSMRLHnC0vB_v0ZEg76XS0uUZyg-xS4/edit) to understand the process to follow to propose a project. 8 | 9 | ## Project Plan Template 10 | 11 | Use the template below to create a Project Proposal. 12 | 13 | **Project Name:** 14 | 15 | **Project lead's Github ID:** 16 | 17 | **Project Vision:** 18 | 19 | Please tell us briefly about the vision you have for this project. 20 | 21 | **Objectives and Key Results:** 22 | 23 | Objectives describe what you plan to accomplish and Key Results tells you what results you need to reach the objective. 24 | 25 | **Which Vertical within SCRF does this project fall under?** 26 | 27 | * Content 28 | * Discovery 29 | * Engagement 30 | * Operations 31 | * Outreach 32 | * Not sure 33 | 34 | **Alignment with SCRFs Vision and Mission:** 35 | 36 | How does your project align with SCRFs vision and mission? 37 | 38 | **Deliverables:** 39 | 40 | What would be the deliverables of the project once it is completed? 41 | 42 | **Project Team:** 43 | 44 | Who would be involved in this project? Please list all collaborators. 45 | 46 | **Is an MVP possible with the Project?** 47 | 48 | Yes/No/Maybe 49 | 50 | **Duration:** 51 | 52 | What is the expected duration of this project in hours? 53 | 54 | **Target Audience:** 55 | 56 | Who is the target audience for this project? 57 | 58 | * SCRF Internal 59 | * Academics/Researchers 60 | * Industry 61 | * Other 62 | 63 | ## Learn More About SCRF 64 | 65 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 66 | -------------------------------------------------------------------------------- /en/project_public_goods_student_association.md: -------------------------------------------------------------------------------- 1 | # Public Goods Student Association Overview 2 | 3 | ## Overview 4 | 5 | The Public Goods Student Association (PGSA) is an initiative from SCRF, supported by Gitcoin and Lobby3 DAO, meant to bring together students from around the world who want to learn more about public goods but aren't sure where to get started. From March 16-April 27, there will be a weekly virtual seminar open to any students who want to delve into specific public goods topics. In addition to these weekly sessions, the PGSA will support the creation of various materials (such as reading lists or curricula) to help guide students in their learning journey. 6 | 7 | Beyond this Spring, the PGSA will partner with appropriate hackathon groups over the summer to provide a pathway for students to apply their knowledge by building the future of public goods. For the 2023-2024 Academic Year, the PGSA will partner with a variety of student groups around the world to build more educational materials and resources around the various topics that fall under the bucket of public goods. 8 | 9 | ### **Schedule Spring 2023** 10 | To register, please RSVP via [this form](https://docs.google.com/forms/d/e/1FAIpQLScqomCAuwxiFtAmzqi2Ur1eAIwy5tfwQuJuBKAZ9d6C6W2nGw/viewform?usp=sf_link). 11 | 12 | All virtual seminars will be hosted from 1p-2p EST/UTC-4 as video calls, unless indicated otherwise, and will feature at least one relevant industry practitioner who can provide some context for that day's topic and lead a Q&A with students. 13 | 14 | - March 15 - Intro to Public Goods 15 | - March 22 - DeSci and Public Goods (featuring contributors from DeSci Labs, DeSci World, Gitcoin's DeSci Grant Rounds, LabDAO, and OpSci/Holonym) 16 | - March 29 - Public Goods Governance Experiments & Building a Pipeline for Students into Public Goods (featuring contributors from Public Nouns) 17 | - April 5 - Funding Public Goods 18 | - April 12 - Health and Public Goods (featuring contributors Athena DAO) 19 | - April 19 - Existential Risks and Public Goods 20 | - April 26 - Governing Public Goods & Planning for Summer/Fall 2023 21 | 22 | For more information, email eugene@scrf.io. 23 | 24 | ## Resources 25 | 26 | ### What are Public Goods? 27 | 28 | This is by no means a comprehensive explanation, but below are some pointers to get started. The PGSA project team will continuie to update this as we gather more resources. 29 | 30 | Public goods refer to things that are [nonexcludable and nonrivalrous](https://www.lawinsider.com/dictionary/nonexcludable). Here's a [Khan Academy link](https://www.khanacademy.org/economics-finance-domain/microeconomics/market-failure-and-the-role-of-government/externalities-topic/a/public-goods-cnx) and a [Stanford Encyclopedia of Philosophy link](https://plato.stanford.edu/entries/public-goods/) for more context and a talk from [Vitalik on the subject of funding public goods](https://protocol.ai/blog/transcription-vitalik-buterin-funding-the-commons/). 31 | 32 | ### Links 33 | 34 | Funding the Commons [Youtube playlist](https://www.youtube.com/playlist?list=PLhuBigpl7lqtMdPkejuo3mHdLFX53ftXJ) 35 | 36 | ## Learn More About SCRF 37 | 38 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md) 39 | -------------------------------------------------------------------------------- /en/project_research_improvement_proposal.md: -------------------------------------------------------------------------------- 1 | # Research Improvement Proposal 2 | 3 | _Refer to the [SCRF: Process - Research Improvement Process](./process_research_improvement_proposal.md) for instructions_ 4 | 5 | ## Description 6 | 7 | _In no more than 3 paragraphs, please explain exactly what the project does._ 8 | 9 | ## Why is this good for 10 | 11 | - Content creation 12 | - Engagement 13 | - Discovery 14 | - Outreach 15 | 16 | ## Define Goals and Analytics 17 | 18 | - How does this project define success? 19 | - How is that success tracked? 20 | 21 | ## Work Plan 22 | 23 | - How is the work done? 24 | - How is the work tracked? 25 | - How often do check-ins happen? 26 | 27 | ## Resources 28 | 29 | - Who is working on this? 30 | - How much time does it take? 31 | - What tools would you need to complete this work? 32 | - How many hours per week? 33 | - Who is the owner? 34 | 35 | ## Detailed Method 36 | 37 | - Consider the type of project you're proposing and its scope. The more complicated, the more detail we'd like to see. 38 | - How does this project define success? 39 | - How can we check whether it's on the way there. 40 | - How is the work done? 41 | - How will it interact with other processes? 42 | 43 | ## Deliverables 44 | 45 | _Describe exactly what the project will produce._ 46 | 47 | 1. Develop key goals and analytics. 48 | 1. How does this project measure success? 49 | 1. Where is that success tracked? 50 | -------------------------------------------------------------------------------- /en/reference_style_guide.md: -------------------------------------------------------------------------------- 1 | # SCRF Writing Style Guide 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) Writing Style Guide summarizes the standards and best practices writers should follow when adding to Community Development resources. 4 | 5 | ## Table of Contents 6 | 7 | - [Principles and Intent](#principles-and-intent) 8 | - [Voice and Tone](#voice-and-tone) 9 | - [Grammar and Mechanics](#grammar-and-mechanics) 10 | - [Use](#use) 11 | - [Avoid](#avoid) 12 | - [Abbreviations](#abbreviations) 13 | - [Acronyms](#acronyms) 14 | - [Capitalization](#capitalization) 15 | - [Currencies](#currencies) 16 | - [Cryptocurrencies](#cryptocurrencies) 17 | - [Dates and Times](#dates-and-times) 18 | - [Decades](#decades) 19 | - [Lists](#lists) 20 | - [Links](#links) 21 | - [Numbers](#numbers) 22 | - [Punctuation](#punctuation) 23 | - [Ranges and Spans](#ranges-and-spans) 24 | - [Submission Tips](#submission-tips) 25 | - [Writing for Social Media](#writing-for-social-media) 26 | 27 | ## Principles and Intent 28 | 29 | The SCRF Style Guide should be used to write clear and consistent content across teams and channels regardless of whether the writer is internal or external. Please use this as a reference guide when writing for SCRF. With every piece of content, aim to: 30 | 31 | - **Educate:** Give readers the exact information they need to know while breaking down concepts into the simplest terms possible. The writer is considered to be the expert educating the reader who may not have access to the same background information. 32 | - **Provide Value:** The writer should understand the topic and use simple words and sentences. Before writing, ask: What purpose does this serve? Who is going to read it? What do they need to know? 33 | - **Be Open and Respectful:** Treat readers with the respect they deserve. Remember they are busy, coming from everywhere, and with varied backgrounds. At SCRF, we want to inform while being considerate, impartial, and inclusive. 34 | 35 | ## Voice and Tone 36 | 37 | SCRF materials should cater to readers who are unfamiliar with the SCRF system. Writers should assume that their readers have tight schedules and short attention spans. As such, writers should focus on communicating concepts as clearly and succinctly as possible. At SCRF, we want to speak like experienced yet respectful academics at the cutting edge of research. 38 | 39 | Style tips: 40 | 41 | - Use simple language. 42 | - Use short, concise sentences. 43 | - Avoid unnecessary words. 44 | - Remain open and objective. 45 | - Provide examples when possible. 46 | - Provide examples to help explain concepts, but avoid complicating them. 47 | - Use math when necessary, but keep it simple. 48 | - Link to basic terms if necessary. 49 | 50 | ## Grammar and Mechanics 51 | 52 | Adhere to specific rules of grammar and mechanics to help keep the writing clear and consistent. This section will lay out overall writing mechanics, which apply to all content unless otherwise noted in this guide. 53 | 54 | ### Use 55 | 56 | - [Oxford commas.](https://en.wikipedia.org/wiki/Serial_comma) 57 | - [Pluralized, gender-neutral pronouns.](https://en.wikipedia.org/wiki/Singular_they) 58 | - Use "they/their" instead of "he/she, his/hers." 59 | - Examples: "When they..." or "If users choose to X, then their..." 60 | - Or generalize the class of individuals. I.e. “When the Community”, “If users” 61 | - The % symbol. Do not spell out "percent." 62 | - Correct: 15% 63 | - Incorrect: 15 percent 64 | - Double quotes " " for phrases, quotes, etc. 65 | - Do not use single ' ' quotes. 66 | - Active, present voice whenever possible. 67 | - Correct: The contributor creates a forum post. 68 | - Incorrect: The forum post was created by the contributor. 69 | 70 | ### Avoid 71 | 72 | - [First-person language.](https://en.wikipedia.org/wiki/Grammatical_person) 73 | - Examples: I, we, our, etc. 74 | - [Second-person language](https://en.wikipedia.org/wiki/Grammatical_person) (unless it is appropriate for a guide or action page). 75 | - Examples: "You then..." or "Now you should..." 76 | - Exclamation points. 77 | - Footnotes. 78 | - Parentheses for stating additional information. 79 | - Incorrect: Research Grants are larger-sized ($5,000 to $50,000) grants aimed at individuals or teams building projects. 80 | - Correct: Research Grants are generally larger-sized grants, ranging from $5,000 to $50,000, aimed at individuals or teams building projects. 81 | 82 | ### Abbreviations 83 | 84 | - Use parentheses to define abbreviated terms the first time they appear in a given document. 85 | - Example: A Research Improvement Proposal (RIP) is a proposal framework to support new initiatives and to expand the scope of existing ones. 86 | - Do not provide an abbreviation for a term that is only used once. 87 | 88 | ### Acronyms 89 | 90 | - Do not use apostrophes to pluralize acronyms. Instead, add an “s” at the end. To make an acronym plural: 91 | - Correct: RIPs 92 | - Incorrect: RIP's 93 | 94 | ### Capitalization 95 | 96 | - Capitalize names, proper nouns, titles, cities, countries, nationalities, and languages. 97 | - Capitalize terms with definitions. 98 | - Use the [Title Case Converter](https://titlecaseconverter.com/) to keep titles consistent. 99 | - Follow _The New York Times_ standard. 100 | - Capitalize the first and last words, all nouns, pronouns, verbs, adverbs, and adjectives. 101 | - Lowercase all articles, conjunctions, and prepositions. 102 | 103 | ### Currencies 104 | 105 | The examples below use dollars, but the same rules apply to all global currencies. 106 | 107 | - Use lowercase except when writing "US Dollar." 108 | - Use figures and the "$" sign in all except casual references or amounts without a figure. 109 | - Standard: "The book costs $4." 110 | - Casual: "Please give me a dollar." 111 | - For amounts under $1 million, follow this format: 112 | - Correct: $4, $25, $500, $1,000, $650,000. 113 | - For amounts over $1 million, use the word, not numerals. 114 | - Correct: "He is worth $4 million." 115 | - Incorrect: "He is worth $4,000,000." 116 | 117 | ### Cryptocurrencies 118 | 119 | - When directly referring to the creation, destruction, or manipulation of a token (particularly as it relates to tooling): 120 | - Use the capitalized TLA version: DAI 121 | - Example: "Draw DAI against ETH from a Vault." 122 | - Similarly, when referring to exchange pairs: 123 | - Use: ETH/DAI 124 | - When referencing the token as a currency, in an instructional or conversational setting, or as a conceptual product of the Foundation or its systems: 125 | - Use: Dai 126 | - Example: "Dai is a price-stable asset that can be used as money." 127 | 128 | ### Dates and Times 129 | 130 | - Generally, abbreviate the day of the week and month but write out the date. May spell out the day of the week and month for a more formal tone. 131 | - Correct: Wed, Oct. 20, 2021 132 | - Correct: Wednesday, October 20, 2021 133 | - Incorrect: 10/20/21 134 | - Use numerals and AM or PM, with a space in between. Don’t use minutes for on-the-hour time. 135 | - Always specify time zones. SCRF is international but our default time zone is ET. Abbreviate time zones within the continental United States as follows: 136 | - Eastern time: ET 137 | - Central time: CT 138 | - Mountain time: MT 139 | - Pacific time: PT 140 | - When referring to international time zones, spell them out: Nepal Standard Time, Australian Eastern Time. If a time zone does not have a set name, use its [Coordinated Universal Time (UTC) offset](https://en.wikipedia.org/wiki/List_of_UTC_time_offsets). 141 | - Correct: 7:00 AM ET 142 | - Incorrect: 7am 143 | - Use a hyphen between times to indicate a time period. 144 | - Example: 7:00 AM - 10:00 PM ET 145 | 146 | ### Decades 147 | 148 | - Do not use apostrophes to indicate decades. Instead, add an "s" at the end. To indicate a decade: 149 | - Correct: 1990s 150 | - Incorrect: 1990's 151 | 152 | ### Lists 153 | 154 | When bulleted and numbered lists contain complete sentences, capitalize the first word, and follow each with a period. If list items are phrases, no capitalization or punctuation is required. 155 | 156 | - Use [parallel construction](https://en.wikipedia.org/wiki/Parallelism_%28grammar%29) for each item in a list. 157 | - Start with the same [part of speech](https://en.wikipedia.org/wiki/Part_of_speech) for each item (in this case, a verb). 158 | - Use the same verb [tense](https://en.wikipedia.org/wiki/Grammatical_tense#English) for each item. 159 | - Use the same [voice](https://en.wikipedia.org/wiki/Voice_%28grammar%29) for each item. 160 | - Use the same sentence type (statement, question, exclamation) for each item. 161 | - List items that include definitions should look like this: 162 | - Team: Core team and Advisers are critical to SCRF's success. 163 | - Community: Sentiment analysis is invaluable. 164 | - Use dashes rather than asterisks for unordered lists. 165 | - Correct: - 166 | - Incorrect: * 167 | - Alphabetize lists of names unless there is a clear priority at work. 168 | - Do not use ordered (numbered) lists unless order matters. 169 | - Ordered list items should use the #1 repeated. 170 | - Markdown will automatically generate numbers. 171 | 172 | Example: 173 | 174 | ```markdown 175 | 1. Item 1 176 | 1. Item 2 177 | 1. Item 3 178 | 1. Item 3a 179 | 1. Item 3b 180 | ``` 181 | 182 | ### Links 183 | 184 | - Use [relative links](https://docs.microsoft.com/en-us/contribute/how-to-write-links) when cross-referencing files from [repositories](https://github.com/smartcontractresearchforum/research_team) on SCRF's GitHub. 185 | - Use absolute links and standard web URLs when referencing external resources. 186 | - Create descriptive hyperlinks and avoid generic language. 187 | - Descriptive: Learn more at [Smart Contract Research Forum.](https://smartcontractresearch.org/) 188 | - Generic: Learn more [here.](https://smartcontractresearch.org/) 189 | - Include a . inside the link for sentences that end with a link. 190 | 191 | ### Numbers 192 | 193 | - Spell out numbers below 10. 194 | - Examples: one, two, three, etc. 195 | - Use numerals for numbers above 10, unless starting a sentence. 196 | - For numbers with million, billion, or trillion, use figures in all except casual cases. 197 | - Standard: "The nation has 1 million citizens." 198 | - Casual: "I'd like to make a billion dollars." 199 | - Spell out fractions. 200 | - Correct: two-thirds 201 | - Incorrect: 2/3 202 | - Use decimal points when a number can’t be easily written out as a fraction, like 1.375 or 47.2. 203 | 204 | ### Punctuation 205 | 206 | - Do not use exclamation points. 207 | - When writing a list, use the Oxford comma. 208 | - Use a colon, rather than an ellipsis, em dash, or comma, to offset a list. 209 | - Example: The writer posted on the forum. 210 | - Don't use ampersands (&) unless one is part of a company or brand name. 211 | - Use semicolons (;) sparingly. Try breaking up the sentence instead. 212 | - Use double quotes " " for phrases, quotes, etc. Periods and commas go within quotation marks. Question marks within quotes follow logic—if the question mark is part of the quotation, it goes within. If you’re asking a question that ends with a quote, it goes outside the quote. 213 | - Do not use single ' ' quotes. 214 | - Avoid dashes (—) and ellipses (...) unless needed. 215 | - Use a hyphen (-) without spaces on either side to link words into a single phrase. 216 | 217 | ### Ranges and Spans 218 | 219 | - Spell out ranges or spans unless they relate to a certain time range. 220 | - Correct: It takes 10 to 30 minutes. 221 | - Correct: The class is from 10:00 AM - 11:00 AM ET. 222 | - Incorrect: It takes 10 - 20 minutes. 223 | 224 | ## Submission Tips 225 | 226 | Run all drafts through Grammarly regularly, and before final submissions. 227 | 228 | - Grammarly will catch most spelling and grammatical errors. 229 | - Copy rendered text into Grammarly and address any mistakes it flags. 230 | - HackMD does not identify spelling and grammatical errors. 231 | - Grammarly will miss errors if it's given raw Markdown text. 232 | - Be careful of copy and pasting code from Grammarly to VScode; Grammarly may mess with formatting. 233 | 234 | ### When migrating to a new document 235 | 236 | - Leave a note in the old file. 237 | - Provide a link to the latest version. 238 | - Do not blindly accept Grammarly suggestions. 239 | - Review edits to make sure they make sense. 240 | 241 | ### Naming Conventions 242 | 243 | - All titles of the docs should match the file names, which should match the named links in other docs. 244 | - Please do not use shorthand or new terms for existing documents. 245 | - All document names should use “[snake case.](https://en.wikipedia.org/wiki/Snake_case)” 246 | 247 | ## Writing for Social Media 248 | 249 | SCRF uses social media to engage with community members and the general public, and to share what SCRF or its members are up to. SCRF is careful to be deliberate in what the organization posts to social channels. 250 | 251 | ### Overview 252 | 253 | SCRF has a presence on a number of major social media platforms. Below are the most active accounts and what is posted on each: 254 | 255 | [Twitter](https://twitter.com/SCRForum): SCRF news and updates, research summaries, research pulse, events, media mentions, evergreen content, timely blockchain news, join us posts 256 | 257 | [LinkedIn](https://www.linkedin.com/company/smart-contract-research-forum/): SCRF news and updates, recruiting content, media mentions, evergreen content 258 | 259 | ### Guidelines 260 | 261 | Writing for social media should generally follow the style points outlined in this Writing Style Guide. Some additional pointers include: 262 | 263 | - Write short, but smart 264 | - Twitter: 280 characters 265 | - LinkedIn: No limit, but aim for 1-2 short paragraphs 266 | - Use correct grammar and punctuation and avoid exclamation points. 267 | - Simplify ideas or reduce the amount of information being shared. Do not alter the spelling or punctuation of the words themselves. It is fine to use the shorter version of some words, like “info” for “information.” But do not use numbers and letters in place of words, like “4” instead of “for” or “u” instead of “you.” 268 | 269 | ### Best Practices 270 | 271 | - Think of Tweets as micro pitches: 272 | - What is the hook? 273 | - What is the value? 274 | - How to find out more? 275 | - Threads are better than tweets 276 | - Use relevant targeted tags 277 | - Limit mentions 278 | - Message people for retweets offline, never in a post 279 | - For each post, add “For further info consider following @expert1 and @expert2” to the end 280 | - Correct: “In recognition of the great work by @ntnsndr, Professor of Media Studies at @cumediastudies and @MEDLabBoulder, SCRF will be supporting two of his governance research projects: CommunityRule and Exit to Community.” 281 | - Correct: “Notice to researchers: SCRF is looking for contributors to write summaries of academic papers focused on blockchain topics. Review our [grants program](https://git.io/JcZgk) to learn more. 282 | - Incorrect: “We are excited to share the work of @ntnsndr, Professor of Media Studies at @cumediastudies and @MEDLabBoulder!” 283 | - Incorrect: “Hey @ntnsndr, can you please retweet this post about you?” 284 | 285 | ### Hashtags 286 | 287 | SCRF employs hashtags deliberately to promote events or connect with specific community members. Do not use current events or trending hashtags to promote SCRF. 288 | 289 | ### Trending topics 290 | 291 | Do not use social media to comment on trending topics or current events that are unrelated to SCRF or to the blockchain. Be aware of any major breaking news when publishing social content. 292 | 293 | ## Learn More About SCRF 294 | 295 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 296 | -------------------------------------------------------------------------------- /en/reference_terms_glossary.md: -------------------------------------------------------------------------------- 1 | # SCRF: Glossary 2 | 3 | | Tag | Term | Definition | Source Link | 4 | | -------- | -------- | -------- | -------- | 5 | | | Algorithmic Stablecoin | Algorithmic stablecoins are cryptocurrencies designed to achieve price stability and balance the circulating supply of the asset with demand (usually pegged to a reserve price). | [Source](https://hackernoon.com/algorithmic-stablecoins-a-beginners-guide-pmh320t) | 6 | | [anonymity](https://www.smartcontractresearch.org/tag/anonymity) | Anonymity | The situation in which someone's name is not given or known | [Source](https://dictionary.cambridge.org/dictionary/english/anonymity) | 7 | | [arbitrage-bots](https://www.smartcontractresearch.org/tag/arbitrage-bots) | Arbitrage Bots | Trading bots are computer programs that algorithmically buy and sell various cryptocurrencies at the right time with the goal of generating a profit. Arbitrage bots are a specific subset of trading bots that structure trades to take advantage of different prices for a single asset either across different trading pairs or on different trading platforms. | [Source](https://towardsdatascience.com/crypto-trading-bots-a-helpful-guide-for-beginners-60decb40e434#:~:text=Cryptocurrency%20trading%20bots%20are%20computer,fact%2C%20most%20aren't.) | 8 | | | Audits | Generally speaking, an audit is an independent assessment of a project seen through the lens of a particular concern. Examples of these concerns include code correctness, security, compliance, economics, etc. | [Source](https://www.smartcontractresearch.org/t/what-is-an-audit/229) | 9 | | [amm](https://www.smartcontractresearch.org/tag/amm) | Automated Market Makers | Decentralized exchanges that implement liquidity pools of trading pairs rather than a centralized orderbook. | [Source](https://research.paradigm.xyz/amm-price-impact) | 10 | | | Block Rewards | The reward given to miners for successfully solving a cryptographic problem at each block in a Proof-of-Work blockchain system. | [Source](https://www.simplilearn.com/bitcoin-mining-explained-article) | 11 | | | Bonding Curves | A linear or non-linear function that relates the price of a token algorithmically to its supply. | [Source](https://medium.com/linum-labs/intro-to-bonding-curves-and-shapes-bf326bc4e11a) | 12 | | [bft](https://www.smartcontractresearch.org/tag/bft) | Byzantine Fault Tolerance | Byzantine Fault Tolerance is the characteristic which defines a system that tolerates the class of failures that belong to the Byzantine Generals’ Problem | [Source](https://medium.com/loom-network/understanding-blockchain-fundamentals-part-1-byzantine-fault-tolerance-245f46fe8419) | 13 | | [chain-reorg-attacks](https://www.smartcontractresearch.org/tag/chain-reorg-attacks) | Chain Reorganization | Chain reorganizations happen when a node on the blockchain network realizes that what it thought was the canonical chain turned out not to be. When this happens, the transactions in the latter part of its chain (i.e. the most recent transactions) are reverted and rather the transactions in the newer replacement are executed. | [Source](https://forum.openzeppelin.com/t/what-is-chain-reorganization/1559) | 14 | | [consensus](https://www.smartcontractresearch.org/tag/consensus) | Consensus | Consensus is a group decision-making process in which group members develop, and agree to support a particular decision (e.g. the one in the best interest of the whole or the most valid decision). | [Source](https://blockgeeks.com/guides/blockchain-consensus/) | 15 | | [cfmm](https://www.smartcontractresearch.org/tag/cfmm) | Constant Function Market Maker | Automated market makers that use a fixed formula to relate price to reserve balances. | [Source](https://web.stanford.edu/~guillean/papers/constant_function_amms.pdf) | 16 | | | Constant Mean Markets | A generalization of a constant product market maker which allows for more than 2 assets and where the reserves of each asset can be weighted in arbitrary other methods than simply 50/50. | [Source](https://medium.com/bollinger-investment-group/constant-function-market-makers-defis-zero-to-one-innovation-968f77022159) | 17 | | [constant-product](https://www.smartcontractresearch.org/tag/constant-product) | Constant Product Markets | Automated market makers that use a formula of the form x*y=k where k is constant to relate price to reserve balances, e.g. Uniswap. | [Source](https://web.stanford.edu/~guillean/papers/constant_function_amms.pdf) | 18 | | | Correct-By-Construction Casper | CBC Casper is a family of "correct-by-construction" consensus protocols that share the same proof of asynchronous, Byzantine fault tolerant consensus safety. | [Source](https://github.com/cbc-casper/cbc-casper-paper) | 19 | | [dao](https://www.smartcontractresearch.org/tag/dao) | DAO | Decentralized Autonomous Organization. A public and permissionless organization that is governed programmatically and is not under the control of a single entity. | [Source](https://hackernoon.com/what-is-a-dao-c7e84aa1bd69) | 20 | | [dex](https://www.smartcontractresearch.org/tag/dex) | Decentralized Exchange | A platform for exchanging asset pairs that is not under the control of a single entity and is generally implemented using a smart contract, allowing users to trade with each other or with the protocol directly without requiring a trusted third party. | [Source](https://www.coincenter.org/education/key-concepts/decentralized-exchange/) | 21 | | [defi](https://www.smartcontractresearch.org/tag/defi) | DeFi | A collective term for public financial products and services that are accessible built on top of smart contract based blockchain systems and are not under the control of a single entity. | [Source](https://ethereum.org/en/defi/) | 22 | | [derivatives](https://www.smartcontractresearch.org/tag/derivatives) | Derivatives | A derivative is a contract between two or more parties whose value is based on an agreed-upon underlying financial asset (like a security) or set of assets (like an index). | [Source](https://www.investopedia.com/ask/answers/12/derivative.asp) | 23 | | [eip1559](https://www.smartcontractresearch.org/tag/eip1559) | EIP-1559 | A particular improvement proposal to the Ethereum blockchain that implements a moving base fee in accordance with demand and gas usage. | [Source](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1559.md) | 24 | | [ethereum](https://www.smartcontractresearch.org/tag/ethereum) | Ethereum | Ethereum is a decentralized blockchain which implements automated smart contracts in a payment and transaction oriented architecture. | [Source](https://www.sciencedirect.com/topics/computer-science/formal-verification) | 25 | | [flash-loans](https://www.smartcontractresearch.org/tag/flash-loans) | Flash Loans | Flash loans are loans issued on a smart-contract based blockchain that require no capital from the borrower and are allowed to be paid back in the same block, allowing users to instantaneously perform arbitrage trades without significant capital investment. | [Source](https://medium.com/marbleorg/introducing-marble-a-smart-contract-bank-c9c438a12890) | 26 | | [formal-verification](https://www.smartcontractresearch.org/tag/formal-verification) | Formal Verification | Formal verification is essentially concerned with identifying the correctness of hardware and software design operation. | | 27 | | | Fraud Proofs | A fraud proof is a way to prove that a blockchain tip is invalid. | [Source](https://bitcoin.stackexchange.com/questions/49647/what-is-a-fraud-proof) | 28 | | [front-running](https://www.smartcontractresearch.org/tag/front-running) | Front-Running | Entering into an equity trade, options or futures contracts with advance knowledge of a block transaction that will influence the price of the underlying security to capitalize on the trade. | [Source](https://www.nasdaq.com/glossary/f/front-running) | 29 | | [game-theory](https://www.smartcontractresearch.org/tag/game-theory) | Game Theory | Game theory is the study of the ways in which interacting choices of economic agents produce outcomes with respect to the preferences (or utilities) of those agents, where the outcomes in question might have been intended by none of the agents. | [Source](https://plato.stanford.edu/entries/game-theory/) | 30 | | | Gas Costs | Gas refers to the unit that measures the amount of computational effort required to execute specific operations on the Ethereum network. Since each Ethereum transaction requires computational resources to execute, each transaction requires a fee. Gas refers to the fee required to successfully conduct a transaction on Ethereum. | [Source](https://ethereum.org/en/developers/docs/gas/) | 31 | | [governance](https://www.smartcontractresearch.org/tag/governance) | Governance | The problem area for answering who can make decisions, how they are made, and who is accountable for a given system. | [Source](https://iog.ca/what-is-governance/) | 32 | | [interoperability](https://www.smartcontractresearch.org/tag/interoperability) | Interoperability | Interoperability refers to the basic ability of computerized systems to connect and communicate with one another readily, even if they were developed by widely different manufacturers in different industries. In crypto-networks, this generally refers to between different blockchain systems. | [Source](https://www.adsc.com/blog/what-is-interoperability-and-why-is-it-important) | 33 | | [iot](https://www.smartcontractresearch.org/tag/iot) | Internet of Things | Internet of Things (IoT) describes the network of physical objects—“things”—that are embedded with sensors, software, and other technologies for the purpose of connecting and exchanging data with other devices and systems over the internet. | [Source](https://www.oracle.com/internet-of-things/what-is-iot/) | 34 | | [layer-2](https://www.smartcontractresearch.org/tag/layer-2) | Layer 2 | Layer 2 is a collective term for solutions designed to help scale applications by handling transactions off the main chain (layer 1). | [Source](https://ethereum.org/en/developers/docs/layer-2-scaling/) | 35 | | [mev](https://www.smartcontractresearch.org/tag/mev) | Miner Extractable Value | Value that is extractable by miners directly from smart contracts as cryptocurrency profits. | [Source](https://arxiv.org/pdf/1904.05234.pdf) | 36 | | [mining](https://www.smartcontractresearch.org/tag/mining) | Mining | Mining is the process of verifying cryptocurrency transactions and recording them in the public blockchain ledger. Those who have the required hardware and computing power are called miners. | [Source](https://www.simplilearn.com/bitcoin-mining-explained-article) | 37 | | | Multi-Signature | Multi-signature wallets (or multisig, for short), are cryptocurrency wallets that require two or more private keys to sign and send a transaction. The storage method requires multiple cryptographic signatures (a private key’s unique fingerprint) to access the wallet. | [Source](https://www.coindesk.com/what-is-a-multisignature-crypto-wallet) | 38 | | [network-security](https://www.smartcontractresearch.org/tag/network-security) | Network Security | Blockchain network security is a comprehensive risk management system for a blockchain network, using cybersecurity frameworks, assurance services and best practices to reduce risks against attacks and fraud. | [Source](https://www.ibm.com/topics/blockchain-security#:~:text=Blockchain%20security%20is%20a%20comprehensive,risks%20against%20attacks%20and%20fraud) | 39 | | [non-fungible](https://www.smartcontractresearch.org/tag/non-fungible) | Non-Fungible | Non-fungible assets are unique, indivisible, and not interchangeable. | [Source](https://blog.rsk.co/noticia/non-fungible-fungible-tokens-a-quick-overview/) | 40 | | | On-Chain Governance | On-chain governance refers to the system for managing control and development of a blockchain-based network. This encompasses methods for collecting information, structuring incentives, collecting signal from ecosystem participants, and ultimately achieving consensus (usually voting) on decisions. | [Source](https://blockonomi.com/blockchain-governance/) | 41 | | | Optimistic | Optimism refers to transaction schemes that use Optimistic Rollups. I.e. they rely on using fraud proofs to prevent invalid state transitions from happening. In simple terms, if there was a dispute about the result of a transaction that modifies a user's ETH balance, the user would try to replay that exact transaction on Ethereum to demonstrate the correct result there. | [Source](https://research.paradigm.xyz/optimism) | 42 | | [oracles](https://www.smartcontractresearch.org/tag/oracles) | Oracles | Oracles are smart contract structures that deliver off-chain information to on-chain systems. | [Source](https://medium.com/mycrypto/wtf-is-a-blockchain-oracle-533fbce95911) | 43 | | [payment-channel](https://www.smartcontractresearch.org/tag/payment-channel) | Payment Channel | A Payment Channel is class of techniques designed to allow users to make multiple payment transaction, namely on Bitcoin, without committing all of the transactions to the Bitcoin block chain. In a typical payment channel, only two transactions are added to the blockchain but a nearly unlimited number of payments can be made between the participants *off-chain*. | [Source](https://en.bitcoin.it/wiki/Payment_channels) | 44 | | | Plasma | An architecture which frames all blockchain calculation into a community of MapReduce structures, plus an additional way to execute Proof-of-Stake token linkage ahead of pre-existing blockchains, with the conception that Nakamoto Consensus Drivers disincline block restraint, guaranteed by implementing a smart contract on the root blockchain using the Proof-of-Fraud method. | [Source](https://www.blockchain-council.org/blockchain/a-complete-guide-to-ethereum-plasma/#:~:text=Plasma%20refers%20to%20a%20framework,not%20currently%20feasible%20on%20Ethereum.) | 45 | | [post-mortem](https://www.smartcontractresearch.org/tag/post-mortem) | Post-Mortem | A retrospective analysis of events that have taken place in the cryptocurrency and crypto-network space. | | 46 | | [privacy](https://www.smartcontractresearch.org/tag/privacy) | Privacy | “Private” is if what you purchased, and for what amount, are unknown. | [Source](https://www.coincenter.org/education/crypto-regulation-faq/how-anonymous-is-bitcoin/) | 47 | | [proof-of-reserve](https://www.smartcontractresearch.org/tag/proof-of-reserve) | Proof of Reserve | A definitive proof regarding the amount of monetary value held in a given account or wallet. | [Source](https://blog.chain.link/chainlink-proof-of-reserve-bringing-transparency-to-defi-collateral/) | 48 | | [proof-of-stake](https://www.smartcontractresearch.org/tag/proof-of-stake) | Proof of Stake | Proof of stake is a type of consensus mechanism used by blockchain networks to achieve distributed consensus where users stake their assets to become a validator in the network. Validators are responsible for the same thing as miners in proof-of-work: ordering transactions and creating new blocks so that all nodes can agree on the state of the network. | [Source](https://ethereum.org/en/developers/docs/consensus-mechanisms/pos/) | 49 | | [proof-of-work](https://www.smartcontractresearch.org/tag/proof-of-work) | Proof of Work | Proof-of-work is the underlying algorithm that sets the difficulty and rules for the work miners do. Mining is the ""work"" itself. It's the act of adding valid blocks to the chain. This is important because the chain's length helps the network spot the valid chain and understand the chain's current state. The more ""work"" done, the longer the chain, and the higher the block number, the more certain the network can be of the current state of things | [Source](https://ethereum.org/en/developers/docs/consensus-mechanisms/pow/) | 50 | | [quantum-computing](https://www.smartcontractresearch.org/tag/quantum-computing) | Quantum Computing | Quantum computer are quantum bits or qubits (CUE-bits) which can store information in quantum form (superposition of multiple states). | [Source](https://www.ibm.com/quantum-computing/what-is-quantum-computing/) | 51 | | | Randomness Beacons | A cryptographic beacon (also known as a randomness beacon) is a service that provides a public source of randomness. | [Source](http://www.copenhagen-interpretation.com/home/cryptography/cryptographic-beacons) | 52 | | [regulatory](https://www.smartcontractresearch.org/tag/regulatory) | Regulatory | Refers to regulatory topics, policies, and bodies. | | 53 | | [rollups](https://www.smartcontractresearch.org/tag/rollups) | Rollups | Rollups are solutions that perform transaction execution outside layer 1, but post transaction data on layer 1 and inherit the security properties of the layer 1 chain. | [Source](https://ethereum.org/en/developers/docs/layer-2-scaling/#:~:text=only%20their%20application.-,Rollups,be%20secured%20by%20layer%201.) | 54 | | [scalability](https://www.smartcontractresearch.org/tag/scalability) | Scalability | Scalability is the measure of a system’s ability to increase or decrease in performance and cost in response to changes in application and system processing demands. In crypto-networks, this refers to how transaction costs grow relative to increased size and usage of the network. | [Source](https://www.gartner.com/en/information-technology/glossary/scalability#:~:text=Scalability%20is%20the%20measure%20of,application%20and%20system%20processing%20demands.&text=Enterprises%20that%20are%20growing%20rapidly,when%20evaluating%20hardware%20and%20software.) | 55 | | [schelling-point](https://www.smartcontractresearch.org/tag/schelling-point) | Schelling Point | The ability of actors to coordinate their behavior even when not able to communicate. Coordinative solutions in games which are arrived at more often than theory would predict. | [Source](https://www.econlib.org/library/Enc/bios/Schelling.html) | 56 | | [securitization](https://www.smartcontractresearch.org/tag/securitization) | Securities | Securities are fungible and tradable financial instruments used to raise capital in public and private markets. | [Source](https://www.investopedia.com/terms/s/security.asp) | 57 | | [simulation](https://www.smartcontractresearch.org/tag/simulation) | Simulation | Computer simulation is a program that is run on a computer and that uses step-by-step methods to explore the approximate behavior of a mathematical model | [Source](https://plato.stanford.edu/entries/simulations-science/#:~:text=In%20its%20narrowest%20sense%2C%20a,an%20imaginary%20or%20hypothetical%20one) | 58 | | | Sidechain | Sidechains are emerging mechanisms that allow tokens and other digital assets from one blockchain to be securely used in a separate blockchain and then be moved back to the original blockchain if needed. | [Source](https://hackernoon.com/what-are-sidechains-1c45ea2daf3) | 59 | | [staking-derivatives](https://www.smartcontractresearch.org/tag/staking-derivatives) | Staking Derivatives | Derivative products linked to either the amount of stake deposited by a user into a protocol and/or the staking rewards distributed by the protocol to network participants. | [Source](https://medium.com/@nicola.santoni/an-intro-to-staking-derivatives-i-a43054efd51c) | 60 | | [sybil-protection](https://www.smartcontractresearch.org/tag/sybil-protection)| Sybil Protection | Protection against an attack where a node in a network illegitimately claims multiple identities. | [Source](https://people.eecs.berkeley.edu/~dawnsong/papers/sybil.pdf) | 61 | | [testing](https://www.smartcontractresearch.org/tag/testing) | Testing | Software testing is an investigation conducted to provide stakeholders with information about the quality of the product or service under test. | [Source](https://computersciencewiki.org/index.php/Testing_implementation) | 62 | | | Verifiable Delay Functions | A verifiable delay function (VDF) is a function f : X → Y that takes a prescribed time to compute, even on a parallel computer. However once computed, the output can be quickly verified by anyone. Moreover, every input x ∈ X must have a unique valid output y ∈ Y. | [Source](https://eprint.iacr.org/2018/712.pdf) | 63 | | [zero-knowledge](https://www.smartcontractresearch.org/tag/zero-knowledge) | Zero Knowledge Proofs | An indirect proof of a public statement where the indirect proof leaks no sensitive details and has the property that truth of the indirect proof means the direct proof is also true. | [Source](https://medium.com/web3studio/a-simple-explanation-of-zero-knowledge-proofs-ca574092e73b) | 64 | -------------------------------------------------------------------------------- /en/research_pulse_newsletter_project.md: -------------------------------------------------------------------------------- 1 | # Research Pulse Newsletter Project 2 | 3 | The Research Pulse Newsletter Project Proposal describes the initial pilot project, the benefits, and the plan to bring the newsletter to life. 4 | 5 | ## Project Tracking 6 | 7 | [Research Pulse Newsletter #61](https://github.com/smartcontractresearchforum/discovery/issues/61) 8 | 9 | ## SCRF Research Pulse Weekly Newsletter 10 | 11 | The Smart Contract Research Forum (SCRF) Discovery Team created this document to pitch and outline strategy for the creation of a weekly Research Pulse newsletter, with the goal of amplifying consequential research in the Web3 space. 12 | 13 | ### Project Vision 14 | 15 | The goal for this project is to create a valuable SCRF asset to circulate important Web3 research and ecosystem information to target audiences. The pilot for accomplishing this goal is to translate the content format of the Research Pulse, which is currently shared as a set of weekly socials posts that link information back to individual weekly features housed on the [Research Pulse category](https://www.smartcontractresearch.org/c/post-ideas/research-pulse/26) of the forum, into a weekly e-newsletter. There has been a lot of positive feedback on the Research Pulse itself from industry players, and an emailed newsletter has the potential to better contextualize the Research Pulse items and foster further discussion than the current socials do alone. 16 | 17 | ### Project Benefits 18 | 19 | * **Content:** The newsletter provides an opportunity for the Discovery Team to Collaborate with the Content Team to ensure we showcase the latest and greatest Web3 research and information, which allows us to continue to provide value and incentives to Researchers and Industry actors to contribute to SCRF. The Content Team is already creating the bulk of the content that will populate this newsletter, so the barrier to entry is relatively low compared to typical new projects. The e-newsletter presentation can include a better visual hierarchy than is possible within Twitter and LinkedIn, which have platform-based restrictions on character count, data viz, etc. 20 | * **Engagement**: The newsletter can help foster greater engagement on the forum, as it will provide direct traffic to the forum, encourage calls to action to discuss forum content, and help cultivate a dedicated Web3 community. 21 | * **Discovery:** As an initiative driven by the Discovery Team, the Research Pulse newsletter will serve as one of the many communication tools within our strategic discovery plan for expanding our audience, creating awareness, and learning how our audience prefers to interact with forum content. 22 | * **Outreach:** The Research Pulse Newsletter will provide knowledge and resource-sharing across the ecosystem. The project is directly tied to learning networks since it is a tool for providing information to all of the players involved in our space. 23 | * **Operations**: The newsletter has the potential to serve as a networking tool to facilitate future partnerships by helping to build out the top of the discovery funnel 24 | 25 | ### Goals and Objectives 26 | 27 | The goal of this project is to further amplify consequential, well-sourced research within the Web3 space for industry constituents via weekly, direct email communications. The call to action for readers is to click through to the Research Pulse sections of the forum for the weekly research discussions. Success is defined and measured based on quantitative data, including click-through rates and page referrals, as well qualitative data, such as reader feedback and interaction on the forum. 28 | 29 | The weekly Research Pulse has proved to be an engaging feature within our socials platforms, especially LinkedIn. It has an even greater capacity for engagement via a direct email communication, which is more personal, enjoys different weight, and has more design flexibility than our socials channels. 30 | 31 | ### Target Audiences 32 | 33 | * Individuals within the Web3 ecosystem who have a grasp of the Web3 space and are looking for the latest credible Web3 research. 34 | * Web3 researchers 35 | * Web3 builders 36 | 37 | ### Pilot Project, Deliverables, and Timing 38 | 39 | 1. **Discovery and Strategy** 40 | * Brainstorm and finalize content and structure ideas 41 | * Create and finalize the project proposal plan 42 | * Approve the project with SCRF ops 43 | * Finalize a tool for facilitating the newsletter 44 | * Ensure resources are in place to create the pilot 45 | 2. **Content Creation, Design, Iteration, Testing, and Publicity** 46 | * Publicize the newsletter and encourage people to subscribe via chat, socials, and the forum 47 | * Create a form capture within the tool we choose to capture people's contact information 48 | * Create Research Pulse newsletter templates 49 | * Ensure that our email list is set up 50 | * Send out the newsletter as a test document to internal constituents, revise and iterate as necessary 51 | * Ensure that scaling and look on the user end are dynamic based on device sizes, different web browsers 52 | * Ensure that links and CTAs are working properly 53 | 3. **Launch the pilot issue** 54 | * Email the pilot issue to the live audience of subscribers 55 | * Troubleshoot any bounce-backs or other issues with the email 56 | 57 | 4. **Measure** 58 | * Assess the quantitative and qualitative metrics from the first two months of newsletter issues 59 | * Discuss areas for growth based on the pilot launch 60 | * Incorporate learned strategies into future newsletter issues 61 | 62 | ### Roles and Resources 63 | 64 | * Roles 65 | * Project Lead - Socials Lead 66 | * Project Sponsor - Head of Discovery 67 | * Content Writer/Editor(s) 68 | * Research Pulse Curator 69 | * Ecosystem News Finder 70 | * Tools 71 | * Requirements: 72 | * Content Hosting (Does not own our data/ Web3) 73 | * Contact and Email Management 74 | * Contact and Email Capture 75 | * Newsletter Templating 76 | * Email Distribution and Management 77 | * Newsletter Analytics 78 | * Possible Tools: 79 | * Hubspot 80 | * Substack 81 | * Mirror.xyz 82 | * Ghost 83 | * Mailchimp 84 | * HubSpot 85 | * Paragraph 86 | * Revue 87 | * ConvertKit 88 | * Headline 89 | * Iterable 90 | 91 | ### Additional Outstanding Questions 92 | 93 | For outstanding questions regarding the project and more detailed discovery information, see the [Research Pulse Newsletter Exploratory Document](https://docs.google.com/document/d/1q0PRG9kxJuZTnxnjigJJuItf7siZrfLR4S7wp8JcuoU/edit?pli=1). 94 | 95 | ## Learn More About SCRF 96 | 97 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 98 | -------------------------------------------------------------------------------- /en/scrf_io_portal_project_plan.md: -------------------------------------------------------------------------------- 1 | 2 | # SCRF.io Portal Project Plan 3 | 4 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) is creating a website to help different stakeholders navigate SCRF. This document serves as the project plan to help support the strategic and logistical elements surrounding the creation of SCRF's website. 5 | 6 | ## Project Tracking 7 | 8 | [GitHub SCRF.io](https://github.com/orgs/smartcontractresearchforum/projects/17/views/13) 9 | 10 | ## Relevant Documents 11 | 12 | [Narrative & Navigation](https://docs.google.com/document/d/1RVCvcZPRhRSjJRfSptziAs4D9_bpDKYx7W-4-2MHKdQ/edit?usp=sharing) 13 | GitHub Repo [smartcontractresearchforum / scrf.io](https://github.com/smartcontractresearchforum/scrf.io) 14 | [SCRF.io Technical Specs](https://docs.google.com/document/d/1VyXvDChESbrDQMKZK3ouzJqEz5v0MyOnZIRqFdYrSZw/edit#heading=h.2oztxqcw41zm) 15 | [Figma Home Page Wireframes](https://www.figma.com/file/iBYT9jpztaldLVQdf1xxxW/SCRF.io-Home-Page-Wireframe?node-id=0%3A1) 16 | 17 | ## Project Vision 18 | 19 | The SCRF website can be a home for people to find out about SCRF, learn about the projects taking place across the organization, and cohesively bring all of the properties together in one place. The vision is to have a place where people can find what they are looking for, understand how to contribute, and what value SCRF can bring. 20 | 21 | ## Project Benefits 22 | 23 | SCRF has several disparate properties (Forum, GitHub) and channels (Discord, Twitter, Youtube, LinkedIn, Facebook), but no central, cohesive space for people to find out about SCRF. With a central, public site, we can help people find relevant resources and devise a system to augment and iteratively add properties or channels over time. 24 | * **Content:** With a website portal, individuals can easily discover the best SCRF content without disrupting the forum. It also allows SCRF to showcase the most relevant content, which can assist with further content creation efforts. 25 | * **Engagement:** A focused website is vital for community building and onboarding efforts. The portal can be a great de-facto place for anyone wanting to connect with SCRF - contact forms, streamlined forum registration, calendar of events, etc. 26 | * **Discovery:** The portal will be a great place to introduce a new layer of taxonomy onto the deep content of SCRF that is more appropriate for public digestion and marketing. A newcomer to SCRF can easily get frustrated attempting to find relevant information, whether on the forum or elsewhere. Searching on the portal is curated and tailored which leads to quality content. SCRF.io can be broad to include GitHub, selected areas of the forum, and other resources. 27 | * **Outreach:** A dedicated space that helps showcase and explain SCRF can help with outreach efforts. Events and other community-facing activities can use the SCRF.io domain to drive traffic organically. 28 | 29 | ## Goals and Objectives 30 | 31 | The website project intends to create a space where people can easily discover what is happening at SCRF and find the information they are seeking. 32 | 33 | * Learn about SCRF and showcase our value to the ecosystem 34 | * Content repository of SCRF's best hits - summaries, discussions, wins, grant winners, comment of the month, etc. 35 | * Mine the forum for important ref materials and compile curated content for the site 36 | * Allow for different audiences to find relevant information 37 | * Ensure different personas know where to go and how to connect with SCRF 38 | * Develop clear CTAs 39 | * Unified Search 40 | * Make information more readily discoverable in a centralized location with unified search functionality. Search on the portal should not lead to deep results directly to forum content but rather surface the curated content. The forum is still directly searchable and it is possible to show on SCRF.io. 41 | * Unified search will combine all data stores such as GitHub, calendar, information hosted on the forum, into a single search. This will allow anyone to just ask SCRF.io what they are looking for and get a fairly intelligent result. Implementation will use the REST APIs provided by each vendor. 42 | * Brand Consistency 43 | * Brand consistency can be further reinforced by the user of the SCRF.io domain as a URL shortener.scrf.io/forum scrf.io/discord scrf.io 44 | * Showcase Legitimacy and Collaborate w SCRF 45 | 46 | ## Measures of Success and Analytics 47 | 48 | Important: 49 | 50 | * Overall traffic aka number of visitors and the source 51 | * Average time on the site plus the bounce rate 52 | * Basic site reqs - fully responsive site, etc. 53 | 54 | TBD: 55 | 56 | * Conversions - what do these look like? Perform an activity vs Sign up 57 | * Track the funnel 58 | * Drive people into the chat to be onboarded 59 | * People contributing to SCRF and deriving value 60 | 61 | Nice to Have: 62 | 63 | * Site Speed - not optimized, but high usability 64 | * Keyword rankings - not a priority 65 | * Low lift - metadata, etc. 66 | 67 | ## Target Audience(s) 68 | 69 | SCRF serves different audiences, which help pave the way to determining the content and composition of the site. 70 | 71 | * Research 72 | * Academia (Students, Faculty, Uni Labs), Independent Researchers, Uni Labs 73 | * How to contribute and collaborate w SCRF aka grants, awards, proposals 74 | * Practitioners 75 | * Early Stage Teams - sample mandates, frameworks, case studies, reference materials (taxonomy, notable works, audit DBs, reading list, etc.) 76 | * Host other teams' materials 77 | * Later Stage Teams - projects, partnerships 78 | * General Public and the SCRF Community (External) 79 | * What is SCRF, How to contribute, Events, Discussions, Media 80 | * Trusted vs General permissions 81 | * SCRF Contributors (Internal) 82 | * Levels - contributor, lead, heads 83 | * SCRF Resources 84 | * Job Seekers 85 | * What roles are available 86 | * How to apply 87 | * Funders 88 | * Collaborative funding 89 | 90 | ## Deliverables 91 | 92 | The main deliverable for the site project is the MVP version of the site. Addition elements are needed for a successful site deliverable including: 93 | 94 | * Brand messaging document (2 weeks) 95 | * Visual brand guide (1 month) 96 | * Website Outline 97 | * Target Audiences and Messaging 98 | * Wireframes/ Prototypes (Responsive) 99 | * Design system (3 weeks) 100 | * A GitHub doc repository for SCRF content curation w relevant metadata (3 weeks) 101 | * v0 of the Website 102 | 103 | Future State: 104 | 105 | * A Forum doc repository for Web3 content curation w relevant metadata (3 weeks) 106 | * CMS 107 | * Templatized CMS Blocks 108 | * Technical Project Plan 109 | * Architecture build system 110 | * Testing/ QA 111 | * Analytics 112 | * v1 of the Website 113 | 114 | ## Roles and Resources 115 | 116 | Project Sponsor - Rich 117 | 118 | Project Lead - Maria 119 | 120 | IT - Brian 121 | 122 | Design - Matt 123 | 124 | Site Content - Michael 125 | 126 | GitHub Content and Curation - Victoria 127 | 128 | Forum Content and Curation - Paul & Ralph 129 | 130 | Tools required: 131 | 132 | * Wireframing - Balsamiq 133 | * Prototyping - TBD 134 | * Design - Adobe 135 | * Project Management - GitHub 136 | * CMS - TBD 137 | * Analytics Tracking - Google Analytics, 138 | 139 | ## Next Steps 140 | 141 | * Review the project plan with all stakeholders 142 | * Layout the project process 143 | * Assign resources 144 | * Determine the Minimum Valuable Product (MVP) 145 | 146 | ## Learn More About SCRF 147 | 148 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 149 | -------------------------------------------------------------------------------- /en/scrf_moderation_guidelines.md: -------------------------------------------------------------------------------- 1 | # Forum Moderation Guidelines 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created a Moderator Workflow to provide moderators with guidelines to ensure comments and posts on the forum align with SCRF's standards. 4 | 5 | ## Overview 6 | 7 | Moderators should reference this document when evaluating forum content. The Moderator Workflow details initial responses to forum notifications, content analysis, proper courses of action, and plan implementations. 8 | 9 | ## Process 10 | 11 | ### Step 1 - Notification 12 | 13 | This section covers the initial actions required once moderators receive notifications on the forum. 14 | 15 | * Check the #forum-notifications channels in chat to see if there are new contributions to the forum. These notifications are to be claimed by a moderator within one business day. 16 | * The first moderator to reach a post indicates that they will take action by using the :pencil2: reaction. 17 | * Please note, when a moderator claims a post, they are obliged to take one of the actions described below. 18 | 19 | ### Step 2 - Identification 20 | 21 | Once a moderator has claimed a post or comment, it should be prioritized according to severity, source, and type as defined below. 22 | 23 | #### Severity 24 | 25 | 26 | 27 | 29 | 31 | 33 | 34 | 35 | 37 | 41 | 43 | 44 | 45 | 47 | 51 | 53 | 54 | 55 | 57 | 61 | 63 | 64 | 65 | 67 | 71 | 73 | 74 |
Priority 28 | Severity 30 | Description 32 |
1 36 | 38 | 39 | :heavy_exclamation_mark: (Red) 40 | Content is detractive in some manner. It may be factually incorrect, rude, discourteous, and/or violates our community ethos in some manner. This would also include persistent and belligerent responses to prior moderation efforts. 42 |
2 46 | 48 | 49 | :warning: (Yellow) 50 | Content has detractive qualities but also appears to be a good faith attempt to contribute to the community. Moderators should consider this classification over a :heavy_exclamation_mark: (Red) classification for new contributors to the forum as a way to socialize their contributions and share our community ethos. 52 |
3 56 | 58 | 59 | :star: (Star) 60 | Content is high quality and thoughtful. This should be reserved for content that would be worth showcasing externally. 62 |
4 66 | 68 | 69 | :green_book: (Green) 70 | Content is well written, contains strong content, and is within our community ethos. 72 |
75 | 76 | ### 77 | 78 | Source 79 | 80 | 81 | 82 | 84 | 86 | 88 | 89 | 90 | 92 | 94 | 96 | 97 | 98 | 100 | 102 | 104 | 105 | 106 | 108 | 110 | 112 | 113 | 114 | 116 | 118 | 120 | 121 |
Priority 83 | Source 85 | Description 87 |
1 91 | System Flagged 93 | A user has clicked the "flag" button in Discourse. 95 |
2 99 | Forum Participant DM 101 | A user has messaged a moderator to flag a post/comment. 103 |
3 107 | Moderator Observed (Continuing) 109 | Moderator has noticed the post/comment and they or another moderator has previously attempted to address an issue through moderation. 111 |
4 115 | Moderator Observed (New) 117 | Moderator has noticed the post/comment and it has not been previously interacted with by a moderator. 119 |
122 | 123 | ### 124 | 125 | Type 126 | 127 | 128 | 129 | 131 | 133 | 135 | 136 | 137 | 139 | 141 | 143 | 144 | 145 | 147 | 149 | 151 | 152 |
Priority 130 | Type 132 | Description 134 |
1 138 | Post 140 | Full-length posts to the forum are slightly higher priority. 142 |
2 146 | Comment 148 | Short-form comments on existing threads are slightly lower priority. 150 |
153 | 154 | ### Step 3 - Action 155 | 156 | Moderators should first determine the proper course of action and then follow the steps outlined below to implement the action plan. 157 | 158 | 159 | 160 | 162 | 164 | 165 | 166 | 168 | 170 | 171 | 172 | 174 | 176 | 177 | 178 | 180 | 182 | 183 | 184 | 186 | 191 | 192 | 193 | 195 | 197 | 198 | 199 | 201 | 204 | 205 | 206 | 208 | 211 | 212 | 213 | 215 | 218 | 219 | 220 | 222 | 224 | 225 | 226 | 228 | 232 | 233 | 234 | 236 | 239 | 240 | 241 | 243 | 254 | 255 |
Range of Actions 161 | Recommended Use 163 |
Delete Content 167 | Generally not recommended. Use for extreme violations of community ethos or when the content is clearly spam. 169 |
Edit Content Directly 173 | Generally not recommended. Use for fixing glaring typos or fixing clearly broken links. It is recommended that the original author be informed before making direct edits. 175 |
Temporarily Hide and Message Author 179 | Recommended for :heavy_exclamation_mark: (Red) content. 181 |
Respond and Correct in Thread 185 | Recommended for :warning: 187 | (Yellow) and content. Use this when there is a genuine content effort, but it does not meet the quality standards or tone in the community ethos. 188 |

189 | For a "thanks" post 190 |

Ignore Comment 194 | Recommended if yellow but just a "thanks type post" 196 |
DM Author and Correct 200 | Recommended for :warning: 202 | (Yellow) content. Use this when the content's tone is ambiguous, the quality is difficult to decipher, or prior experience with the author indicates that correction in private will have a greater impact. 203 |
Like Post 207 | Recommended for :green_book: 209 | (Green) content. 210 |
Respond and Encourage in Thread 214 | Recommended for :green_book: (Green) and :star: 216 | (Star) content. Use this to not only encourage additional contribution by the author of the topic or post and also to move the thread toward an actionable takeaway or a unique question or problem identification. 217 |
Respond and Connect to another positive contributor 221 | Recommended for green and we want them to also talk to another person who typically does green level content 223 |
Nominate for Comment of the Month 227 | Recommended for :star: 229 | (Star) quality posts and strong :green_book: 230 | (Green) quality posts. 231 |
Share/Pin Post 235 | Reserved for :star: 237 | (Star) quality posts. 238 |
Reward 242 | Reserved for users with many green or star 244 |
    245 | 246 |
  • Engagement grant offer 247 | 248 |
  • Moderation team tip 249 | 250 |
  • Reputation reward in Discord 251 |
  • 252 |
253 |
256 | 257 | * Select the appropriate action using the logic defined in this workflow document. 258 | * If there is uncertainty on what action to take, use the #moderation channel in chat to explain the uncertainty so that other moderators can help. 259 | * Use the #moderation channel to make the following types of requests as well: 260 | * **Review:** the moderator prefers a fellow moderator or researcher to review the comment for accuracy. 261 | * **Assist:** the moderator needs a fellow moderator or researcher to do the commenting instead because it is beyond their technical understanding or there are members in the SCRF team that have the greater community weight needed in this situation; tagging someone that could help is recommended. 262 | 263 | ### Step 4 - Follow Up 264 | 265 | * If the author of a post or comment responds positively to moderation, treat that content as a regular incoming moderation notification. In addition, the moderator may want to acknowledge the improvement in tone or quality of the post or comment, if deemed appropriate. 266 | * If poor quality persists, or the author becomes aggressive when being moderated: 267 | * Discuss in #moderation channel 268 | * Ignore "likes" 269 | * Ignore responding with comment until a specific strategy is created as a result of discussion in #moderation channel 270 | * Actions available if disruptive behavior persists: 271 | * Propose creating a separate thread to isolate the bad actor 272 | * Engage in DM discussion 273 | * Potentially ban/silence. This is a last resort and should be carefully considered in consultation with the moderation team. 274 | 275 | ### Step 5 - Curation 276 | 277 | * Refer to the [Discussion Summary Template](https://docs.google.com/document/d/1OBFHVezq8WBAIzx-cbq8tZdS-_W5UKPv5wf2QnTSKk0/edit#heading=h.husueveqa7bj) 278 | 279 | ## Learn More About SCRF 280 | 281 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 282 | -------------------------------------------------------------------------------- /en/scrf_scred.md: -------------------------------------------------------------------------------- 1 | # SourceCred and SCRF 2 | A good starting point to understand the history of SourceCred at SCRF is the main [Implementing SourceCred on the Forum](https://www.smartcontractresearch.org/t/implementing-sourcecred-on-the-forum/1295) topic. 3 | 4 | > “This tool allows a community to identify and incentivize online behaviors through reward mechanisms. As a community dedicated to connecting industry and academia in the web3 space, it seems appropriate that we implement web3 tools that allow us to accomplish our mission of facilitating and rewarding long-tail discussion and thoughtful contributions in the web3 research space.” 5 | > - Paul Zube, Engagement Head SCRF 6 | 7 | ## How to Participate 8 | **PLEASE NOTE:** DAI is no longer being issued for Cred as of January 2023. You may still partake in SourceCred in order to gain reputation in terms of forum contribution. 9 | 10 | In order to earn Cred simply create an account at the [SCRF Forum](https://www.smartcontractresearch.org/) and start contributing. All of the likes you give, likes you get, content you create, and content that gets shared will earn you Cred. 11 | 12 | More information about how SourceCred calculates Cred can be found in the following SCRF presentations. 13 | - [SourceCred - Node and Edge Weights](https://docs.google.com/presentation/d/1C2AjRJyujYJvccnChtWzw-0Ox83AQLy60Jp8FnWu6Eo/edit?usp=sharing) 14 | - [SCRF SourceCred Community Vote](https://docs.google.com/presentation/d/1Mnx6bwN_HV8bhFkYDBtcDN8_wCfCHLbxlBRKRCIJY_k/edit?usp=sharing) 15 | - [SCRF - SourceCred Poll Results and Whats Next](https://docs.google.com/presentation/d/1nkhX9kZv-coVmsxCyBzkZEYIfzNj-DZdRfbNW0Wbgdk/edit?usp=sharing) 16 | 17 | ### Opting In 18 | Before you can Opt In to accrue Cred it is required that the First Time Opt In Form be completed. This form only needs to be filled out once. 19 | - [First Time Opt In Form](https://forms.gle/36iaJNrBAcCqLj3B9) 20 | 21 | Each month you must Opt In. Please do so on the SCRF Discord Server 22 | - [#💲sourcecred-opt-in channel](https://discord.com/channels/784234332617048065/968202164247879730) 23 | 24 | 25 | ## SCRF & SourceCred Resources 26 | ### Presentations 27 | - [SourceCred - Node and Edge Weights](https://docs.google.com/presentation/d/1C2AjRJyujYJvccnChtWzw-0Ox83AQLy60Jp8FnWu6Eo/edit?usp=sharing) 28 | - [SCRF SourceCred Community Vote](https://docs.google.com/presentation/d/1Mnx6bwN_HV8bhFkYDBtcDN8_wCfCHLbxlBRKRCIJY_k/edit?usp=sharing) 29 | - [SCRF - SourceCred Poll Results and Whats Next](https://docs.google.com/presentation/d/1nkhX9kZv-coVmsxCyBzkZEYIfzNj-DZdRfbNW0Wbgdk/edit?usp=sharing) 30 | ### Forum Discussions 31 | - [Implementing SourceCred on the Forum](http://smartcontractresearch.org/t/implementing-sourcecred-on-the-forum/1295) 32 | - [Initial Poll Post](https://www.smartcontractresearch.org/t/sourcecred-polls-and-first-implementation/1477) 33 | ### SourceCred Docs 34 | - [SourceCred](http://sourcecred.io/docs/beta/cred) 35 | - [SourceCred Discourse Plugin](http://sourcecred.io/docs/beta/plugins/discourse) 36 | 37 | ## CredRank Logs 38 | 39 | A record of payout recipients and their CredRank score. 40 | 41 | ## December 2022 42 | 43 |
44 | Open Table 45 | 46 | | User |Cred% | 47 | |:--- |:--- | 48 | | jmcgirk | 6.10% | 49 | | Larry-Bates | 5.20% | 50 | | Ulysses | 2.60% | 51 | | Progrezz | 1.50% | 52 | | Harvesto | 1.40% | 53 | | Henry | 1.30% | 54 | | Samuel94 | 1.20% | 55 | | Humphery | 1.20% | 56 | | Idara-Effiong | 1.10% | 57 | | Tolulope | 1.10% | 58 | | Fizzymidas | 1.00% | 59 | | Cashkid18 | 1.00% | 60 | | freakytainment | 0.90% | 61 | | Angle | 0.80% | 62 | | jyezie | 0.80% | 63 | | Desotech | 0.70% | 64 | | Mansion | 0.70% | 65 | | GloriaOkoba | 0.70% | 66 | | Chrisarch | 0.70% | 67 | | Austin-jul | 0.60% | 68 | | WaterLily | 0.50% | 69 | | Yeoriton56 | 0.50% | 70 | | Sami-B | 0.40% | 71 | | brian-alexakis | 0.40% | 72 | | s-ben | 0.40% | 73 | | Jmax | 0.40% | 74 | | kingdamieth | 0.40% | 75 | | tomideadeoye | 0.40% | 76 | | LTTOguns | 0.40% | 77 | | Raphking | 0.40% | 78 | | Lisayanky | 0.40% | 79 | | Amazingdez | 0.40% | 80 | | Sword-of-Owmens | 0.40% | 81 | | Favvz | 0.30% | 82 | | BenjaminMukoro | 0.30% | 83 | | Never-in-trenches | 0.30% | 84 | | Ivyprogress | 0.30% | 85 | 86 | 87 |
88 |
89 | 90 | ## November 2022 91 | 92 |
93 | Open Table 94 | 95 | | User |Cred% | 96 | |:--- |:--- | 97 | | jmcgirk | 6.90% | 98 | | Larry-Bates | 5.60% | 99 | | Ulysses | 2.40% | 100 | | Twan | 1.90% | 101 | | Harvesto | 1.50% | 102 | | Samuel94 | 1.40% | 103 | | Tolulope | 1.30% | 104 | | Henry | 1.30% | 105 | | gearlad | 1.20% | 106 | | Fizzymidas | 1.10% | 107 | | Idara-Effiong | 0.90% | 108 | | freakytainment | 0.90% | 109 | | Cashkid18 | 0.90% | 110 | | Humphery | 0.80% | 111 | | Angle | 0.80% | 112 | | Progrezz | 0.70% | 113 | | GloriaOkoba | 0.70% | 114 | | Austin-jul | 0.70% | 115 | | Chrisarch | 0.60% | 116 | | WaterLily | 0.50% | 117 | | tomideadeoye | 0.50% | 118 | | jmax | 0.50% | 119 | | Yeoriton56 | 0.40% | 120 | | Sword-of-Owmens | 0.40% | 121 | | stallonaking | 0.40% | 122 | | s-ben | 0.40% | 123 | | Mansion | 0.40% | 124 | | LTTOguns | 0.40% | 125 | | kingdamieth | 0.40% | 126 | | brian-alexakis | 0.40% | 127 | | Never-in-trenches | 0.30% | 128 | | Lisayanky | 0.30% | 129 | | Favvz | 0.30% | 130 | | Amazingdez | 0.30% | 131 | | Raphking | 0.20% | 132 | | parseb | 0.20% | 133 | | Maryjane-Okorie | 0.20% | 134 | | Loni_Grace | 0.20% | 135 | | Jas-mine | 0.20% | 136 | | J-Fraizer | 0.20% | 137 | | Gift82822546 | 0.20% | 138 | | desotech | 0.20% | 139 | | BenjaminMukoro | 0.20% | 140 | | Nicolasdamiens | 0.10% | 141 | | Lucas | 0.10% | 142 | | Lanedot | 0.10% | 143 | | Kvngdrvy | 0.10% | 144 | | ivanplazacic | 0.10% | 145 | | elbeth | 0.10% | 146 | | DIVINE | 0.10% | 147 | | Cindy | 0.10% | 148 | | UFC | 0.00% | 149 | | Tessy | 0.00% | 150 | | Smasherworldwide | 0.00% | 151 | | Prudy | 0.00% | 152 | | Ottononi | 0.00% | 153 | | Mma | 0.00% | 154 | | MaryJude | 0.00% | 155 | | MaryDee | 0.00% | 156 | | Luminous | 0.00% | 157 | | Livinus-Oluchukwu | 0.00% | 158 | | liberty7369 | 0.00% | 159 | | Judi | 0.00% | 160 | | Iyadola | 0.00% | 161 | | Hellenstans |-eth 0.00% | 162 | | Great | 0.00% | 163 | | Emmanuella | 0.00% | 164 | | Danesifav | 0.00% | 165 | | D4th | 0.00% | 166 | 167 |
168 |
169 | 170 | ## October 2022 171 | 172 |
173 | Open Table 174 | 175 | | User |Cred% | 176 | |:--- |:--- | 177 | | jmcgirk | 7.70% | 178 | | Larry-Bates | 6.20% | 179 | | Twan | 2.10% | 180 | | Ulysses | 1.90% | 181 | | Tolulope | 1.40% | 182 | | Harvesto | 1.40% | 183 | | Fizzymidas | 1.20% | 184 | | Samuel94 | 1.20% | 185 | | jyezie | 1.00% | 186 | | Henry | 1.00% | 187 | | Freakytainment | 0.90% | 188 | | Austin-jul | 0.70% | 189 | | Idara-Effiong | 0.70% | 190 | | cashkid18 | 0.70% | 191 | | GloriaOkoba | 0.70% | 192 | | Angle | 0.60% | 193 | | Sami-B | 0.50% | 194 | | kingdamieth | 0.50% | 195 | | Hermes-Corp | 0.50% | 196 | | brian-alexakis | 0.40% | 197 | | s-ben | 0.40% | 198 | | drllau | 0.40% | 199 | | tomideadeoye | 0.40% | 200 | | tebogonong | 0.40% | 201 | | WaterLily | 0.40% | 202 | | Chrisarch | 0.40% | 203 | | Humphery | 0.40% | 204 | | LTTOguns | 0.30% | 205 | | wmflies | 0.30% | 206 | | BenjaminMukoro | 0.30% | 207 | | Never-in-trenches | 0.30% | 208 | | lisayanky | 0.30% | 209 | | Yeoriton | 0.30% | 210 | | Sword-of-Owmens | 0.30% | 211 | | parseb | 0.20% | 212 | | J_Fraizer | 0.10% | 213 | | Gift82822546 | 0.10% | 214 | | ivanplazacic | 0.10% | 215 | | Loni-Grace | 0.10% | 216 | | Maryjane-Okorie | 0.10% | 217 | | FINE-8385 | 0.00% | 218 | | liberty7369 | 0.00% | 219 | | Raha | 0.00% | 220 | | Nicolasdamiens | 0.00% | 221 | | Vivian20 | 0.00% | 222 | | D4th | 0.00% | 223 | | Cunningham412 | 0.00% | 224 | | Mansion | 0.00% | 225 | | Iyadola | 0.00% | 226 | | MaryJude | 0.00% | 227 | | MaryDee | 0.00% | 228 | | Rukku-L | 0.00% | 229 | | Smasherworldwide | 0.00% | 230 | | Prudy | 0.00% | 231 | | Ottononi | 0.00% | 232 | | Ma_cati | 0.00% | 233 | | Livinus_Oluchukwu | 0.00% | 234 | | Tessy | 0.00% | 235 | 236 |
237 |
238 | 239 | ## September 2022 240 | 241 |
242 | Open Table 243 | 244 | | User |Cred% | 245 | |:--- |:--- | 246 | | JamesMcG | 8.40% | 247 | | Larry-Bates | 6.70% | 248 | | Twan | 2.20% | 249 | | Ulysses | 1.40% | 250 | | Fizzymidas | 1.20% | 251 | | Samuel94 | 1.10% | 252 | | Harvesto | 0.90% | 253 | | Freakytainment | 0.70% | 254 | | Henry | 0.70% | 255 | | UmarKhanEth | 0.60% | 256 | | Hermes-Corp | 0.60% | 257 | | cashkid18 | 0.60% | 258 | | GloriaOkoba | 0.60% | 259 | | s-ben | 0.50% | 260 | | kingdamieth | 0.50% | 261 | | Angle | 0.40% | 262 | | brian-alexakis | 0.40% | 263 | | LTTOguns | 0.30% | 264 | | ttaloute | 0.30% | 265 | | WaterLily | 0.30% | 266 | | Chrisarch | 0.30% | 267 | | ode | 0.20% | 268 | | Gift82822546 | 0.10% | 269 | | ivanplazacic | 0.10% | 270 | | BenjaminMukoro | 0.10% | 271 | | Yeoriton56 | 0.10% | 272 | | charliecodes | 0.00% | 273 | | Max | 0.00% | 274 | | nicklinck | 0.00% | 275 | | liberty7369 | 0.00% | 276 | | austin_jul | 0.00% | 277 | | 0xsimo | 0.00% | 278 | | J_Fraizer | 0.00% | 279 | | Nicolasdamiens | 0.00% | 280 | | Idara_Effiong | 0.00% | 281 | | D4th | 0.00% | 282 | | Kvngdrvy | 0.00% | 283 | | Cunningham412 | 0.00% | 284 | | Iyinpemi | 0.00% | 285 | | Mansion | 0.00% | 286 | | MaryJude | 0.00% | 287 | | Never_in_trenches | 0.00% | 288 | | MaryDee | 0.00% | 289 | | Lisayanky | 0.00% | 290 | | Rukku_l | 0.00% | 291 | | Smasherworldwide | 0.00% | 292 | | Humphery | 0.00% | 293 | | adegbenga_iyinpemi | 0.00% | 294 | 295 | 296 |
297 |
298 | 299 | ## August 2022 300 | 301 |
302 | Open Table 303 | 304 | | User |Cred% | 305 | |:--- |:--- | 306 | | jmcgirk | 8.80% | 307 | | Larry_Bates | 7.20% | 308 | | rlombreglia | 3.20% | 309 | | Twan | 2.20% | 310 | | Fizzymidas | 1.30% | 311 | | Valeriespina | 1.30% | 312 | | jyezie | 1.20% | 313 | | Tolulope | 1.20% | 314 | | Ulysses | 0.90% | 315 | | Samuel94 | 0.90% | 316 | | Harvesto | 0.70% | 317 | | UmarKhanEth | 0.60% | 318 | | Freakytainment |0.60% | 319 | | Hermes-Corp | 0.60% | 320 | | GloriaOkoba | 0.50% | 321 | | brian-alexakis-discourse | 0.40% | 322 | | s-ben | 0.40% | 323 | | kingdamieth | 0.40% | 324 | | LTTOguns | 0.30% | 325 | | Henry | 0.30% | 326 | | Favvz | 0.20% | 327 | | parseb | 0.20% | 328 | | WaterLily | 0.20% | 329 | | Angle | 0.10% | 330 | | notthatintodefi | 0.10% | 331 | | Dansmage | 0.10% | 332 | | kdouglass | 0.10% | 333 | | chrisarch | 0.10% | 334 | | Sami_B | 0 | 335 | | nicklinck | 0 | 336 | | liberty7369 | 0 | 337 | | austin_jul | 0 | 338 | | J_Fraizer | 0 | 339 | | Gift82822546 | 0 | 340 | | Nicolasdamiens | 0 | 341 | | Idara_Effiong | 0 | 342 | | ivanplazacic | 0 | 343 | | Cunningham412 | 0 | 344 | | adegbenga_iyinpemi | 0 | 345 | | BenjaminMukoro | 0 | 346 | | MaryJude | 0 | 347 | | Never_in_trenches | 0 | 348 | 349 |
350 |
351 | 352 | ## July 2022 353 | 354 |
355 | Open Table 356 | 357 | |User |Cred% | 358 | |:--- |:--- | 359 | | jmcgirk | 9.50% | 360 | | Larry-Bates | 7.70% | 361 | | rlombreglia | 3.50% | 362 | | Twan | 2.20% | 363 | | valeriespina | 1.40% | 364 | | Fizzymidas | 1.40% | 365 | | jyezie | 1.30% | 366 | | Tolulope | 0.90% | 367 | | Hermes-Corp | 0.60% | 368 | | Sami-B | 0.60% | 369 | | Samuel94 | 0.50% | 370 | | brian-alexakis-discourse | 0.40% | 371 | | UmarKhanEth | 0.30% | 372 | | kingdamieth | 0.30% | 373 | | Austin-jul | 0.30% | 374 | | Ulysses | 0.30% | 375 | | Mr-Nobody | 0.30% | 376 | | LTTOguns | 0.30% | 377 | | GloriaOkoba | 0.30% | 378 | | Woodrow-Jackson | 0.20% | 379 | | Harvesto | 0.20% | 380 | | s-ben | 0.20% | 381 | | Elbeth | 0.10% | 382 | | Freakytainment | 0.10% | 383 | | liberty7369 | 0.00% | 384 | | Ines_Santos_Silva | 0.00% | 385 | | notthatintodefi | 0.00% | 386 | | ivanplazacic | 0.00% | 387 | | osapeter | 0.00% | 388 | | Gift82822546 | 0.00% | 389 | | adegbenga_iyinpemi | 0.00% | 390 | | Onah chiebonam David | 0.00% | 391 | | WaterLily | 0.00% | 392 | 393 |
394 |
395 | 396 | ## June 2022 397 | 398 |
399 | Open Table 400 | 401 | |User |Cred% | 402 | |:--- |:--- | 403 | | JamesMcG | 9.40% | 404 | | Larry_Bates | 8.00% | 405 | | rlombreglia | 3.50% | 406 | | Valeriespina | 1.40% | 407 | | jyezie | 1.30% | 408 | | Fizzymidas | 1.30% | 409 | | Tolulope | 0.80% | 410 | | Samuel94 | 0.50% | 411 | | brian-alexakis-discourse | 0.50% | 412 | | ttaloute | 0.30% | 413 | | kingdamieth | 0.30% | 414 | | UmarKhanEth | 0.20% | 415 | | tomideadeoye | 0.20% | 416 | | elbeth | 0.10% | 417 | | Sami_B | 0.00% | 418 | | parseb | 0.00% | 419 | | notthatintodefi | 0.00% | 420 | | Marta_Crinejo | 0.00% | 421 | | Liberty | 0.00% | 422 | | ivanplazacic | 0.00% | 423 | | Ines_Santos_Silva | 0.00% | 424 | | Hermes_Corp | 0.00% | 425 | | GUA | 0.00% | 426 | | Gift82822546 | 0.00% | 427 | | Freakytainment | 0.00% | 428 | 429 |
430 |
431 | 432 | ## May 2022 433 | 434 |
435 | Open Table 436 | 437 | |User |Cred% | 438 | |:--- |:--- | 439 | | Larry-Bates | 8.30% | 440 | | jmcgirk | 9.10% | 441 | | valeriespina | 1.20% | 442 | | Fizzymidas | 1.00% | 443 | | UmarKhanEth | 0 | 444 | | ttaloute21 | 0.20% | 445 | | kingdamieth | 0.10% | 446 | | Hermes_Corp | 0 | 447 | | Woodrow_Jackson | 0 | 448 | | rlombreglia | 3.40% | 449 | | austin_jul | 0 | 450 | | liberty7369 | 0 | 451 | | Tolulope | 0.50% | 452 | | saulthorin | 0 | 453 | | Sami_B | 0.00% | 454 | | brian-alexakis-discourse | 0.50% | 455 | 456 |
457 | -------------------------------------------------------------------------------- /en/scrf_terms_and_titles.md: -------------------------------------------------------------------------------- 1 | # SCRF Terms and Titles 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has outlined a SCRF Glossary of Terms and Titles to be used when referring to SCRF concepts. The use of proper terms allows us to remain consistent, transparent, and authentic. 4 | 5 | ## Why this document exists 6 | 7 | * Build and frame culture at SCRF 8 | * Present a clear path to greater responsibility 9 | * Provide clarity about the onboarding process 10 | * Clear up roles and responsibilities; i.e. who is responsible for what 11 | * Reinforce the importance of onboarding and community building 12 | 13 | ## Titles 14 | 15 | The titles refer to how we designate and distinguish membership and role levels at SCRF. These are based on an individual's area and level of contribution and responsibility. 16 | 17 | ### Vertical Membership 18 | 19 | Vertical Membership refers to areas of the company that individuals are directly contributing to and supporting. 20 | 21 | **Content**: A Contributor or above who is directly supporting Content efforts in research pulse, primary author outreach, and/or the content pipeline. 22 | 23 | **Engagement**: A Contributor or above who is directly supporting Engagement efforts in moderation, onboarding, and/or community engagement. 24 | 25 | **Discovery**: A Contributor or above who is directly supporting Discovery efforts across branding, media, and/or marketing. 26 | 27 | **Outreach**: A Contributor or above who is directly supporting Outreach efforts such as planning events and/or assisting outreach efforts. 28 | 29 | **Operations**: A Contributor or above who is directly supporting Operations efforts such as general operations, finances, HR, grants, and/or special projects. 30 | 31 | ### Role Levels 32 | 33 | The Role Levels refer to how we designate and distinguish membership at SCRF, which is based on an individual's level of contribution and responsibility. 34 | 35 | #### Community 36 | 37 | 38 | 39 | 41 | 43 | 44 | 45 | 47 | 49 | 50 | 51 | 53 | 55 | 56 | 57 | 59 | 61 | 62 |
Contribution 40 | A Community Member, or Member for short, is following SCRF or contributing in any capacity. All Contributors are automatically Community Members. 42 |
Responsibility 46 | Community exploration, learning about possible opportunities, and general engagement. 48 |
Access 52 | Public access 54 |
Meetings 58 | Community Calls (suggested) 60 |
63 | 64 | #### Contributor 65 | 66 | 67 | 68 | 70 | 72 | 73 | 74 | 76 | 78 | 79 | 80 | 82 | 84 | 85 | 86 | 88 | 90 | 91 |
Contribution 69 | Directly support SCRF's mission and contribute to grant or bounty-based work or volunteer time. 71 |
Responsibility 75 | Contributor responsibilities are distinct and directly based on the work or projects they are supporting. Examples may include reading and writing to the forum, participating in the community chat, or designing a deck. Contributors are required to use SCRF tools including Discord, Github, and email when applicable. 77 |
Access 81 | Access is defined by the Head and Team Leads. This may include specific chat rooms within a vertical. 83 |
Meetings 87 | Community Calls (suggested) 89 |
92 | 93 | #### Core 94 | 95 | 96 | 97 | 99 | 101 | 102 | 103 | 105 | 107 | 108 | 109 | 111 | 113 | 114 | 115 | 117 | 119 | 120 |
Contribution 98 | Directly support SCRF's mission and contribute to part-time or full-time work. 100 |
Responsibility 104 | Core Contributors are responsible for contributor level work plus additional position-specific responsibilities as defined by the vertical Heads and Leads. Typically this includes ongoing support for a specific project that has been operationalized. Core Contributors are required to use all SCRF tools including Discord, Github, and their designated SCRF email when applicable. 106 |
Access 110 | Designated chat rooms, SCRF email account, Google Suite, Github 112 |
Meetings 116 | Community Calls (suggested); PPP Meetings (expected); 1:1 with Vertical Head (expected) 118 |
121 | 122 | #### Lead 123 | 124 | 125 | 126 | 128 | 130 | 131 | 132 | 134 | 136 | 137 | 138 | 140 | 142 | 143 | 144 | 146 | 148 | 149 |
Contribution 127 | Leads own specific projects or areas. 129 |
Responsibility 133 | Leads are responsible for certain project or workstream deliverables. They may manage a team of people but are not required to do so. They have a long-term plan to contribute to SCRF and create relationships with contributors and core members as they progress within SCRF's ecosystem. They are expected to actively engage within chat and the forum and to encourage community participation. They are responsible for work and deliverables to SCRF as directed by the Head of a Vertical. Leads report directly to Heads and have accountability to the community. Leads may represent SCRF at events, conferences, and in the larger Web3 ecosystem per sign-off from Vertical Heads. 135 |
Access 139 | SCRF email account, Google Suite, Github, Discord Nitro 141 |
Meetings 145 | Community Calls (suggested); PPP Meetings (expected); other meetings as needed; 1:1 with Vertical Head 147 |
150 | 151 | #### **Head** 152 | 153 | 154 | 155 | 157 | 159 | 160 | 161 | 163 | 165 | 166 | 167 | 169 | 171 | 172 | 173 | 175 | 177 | 178 |
Contribution 156 | Heads own and contribute to a vertical at SCRF. These include Content, Engagement, Discovery, Outreach, and Operations. 158 |
Responsibility 162 | Heads are the chief managers of roles, objectives, and projects pertaining to their vertical. They report directly to the Founder or CEO. Heads are responsible for helping to establish strategy, generate work, and manage personnel to meet vertical objectives and move forward the mission, vision and strategy of SCRF. They are internally focused yet represent SCRF externally at events, conferences, and in the larger Web3 ecosystem. They are directly responsible for the growth and success of SCRF. 164 |
Access 168 | SCRF email account, Google Suite, Github, Discord Nitro 170 |
Meetings 174 | Community Calls (suggested); PPP Meetings (expected); other meetings as needed; Weekly Meeting with Vertical Team; 1:1's with all Leads and Core, as needed 176 |
179 | 180 | ### Getting Work Done in These Roles 181 | 182 | RACI's Matrix can be used as needed to align work dependencies per project, task, deliverable, or process. 183 | 184 | 185 | 186 | 188 | 190 | 192 | 194 | 196 | 197 | 198 | 200 | 202 | 204 | 206 | 208 | 209 |
RACI (Responsible, Accountable, Consulting, Informed) 187 | Contributor 189 | Core 191 | Lead 193 | Head 195 |
Example: Onboarding Changes for Discord 199 | I 201 | C 203 | R 205 | R,A 207 |
210 | 211 | ### Tooling - User Access Roles 212 | 213 | ### Discord Chat, GitHub, Google Apps 214 | 215 | 216 | 217 | 219 | 220 | 221 | 223 | 225 | 227 | 228 | 229 | 231 | 233 | 235 | 236 | 237 | 239 | 251 | 253 | 254 | 255 | 257 | 267 | 269 | 270 | 271 | 273 | 283 | 285 | 286 | 287 | 289 | 299 | 301 | 302 |
DISCORD CHAT 218 |
Role Level 222 | Roles 224 | Access 226 |
Community 230 | Community 232 | Write to public channels designated for chat. Read informational chat rooms. 234 |
Contributor 238 | Contributor + 240 |

241 | Content 242 |

243 | Engagement 244 |

245 | Discovery 246 |

247 | Outreach 248 |

249 | Operations 250 |

Access is defined by the Head and Team Leads 252 |
Core 256 | Content Core 258 |

259 | Engagement Core 260 |

261 | Discovery Core 262 |

263 | Outreach Core 264 |

265 | Operations Core 266 |

Write to channels designated for chat. Read informational channels. 268 |
Lead 272 | Content Lead 274 |

275 | Engagement Lead 276 |

277 | Discovery Lead 278 |

279 | Outreach Lead 280 |

281 | Operations Lead 282 |

Write to informational channels. Assign vertical role to user. 284 |
Head 288 | Content Head 290 |

291 | Engagement Head 292 |

293 | Discovery Head 294 |

295 | Outreach Head 296 |

297 | Operations Head 298 |

Assign vertical lead role to user. 300 |
303 | 304 | 305 | 306 | 308 | 310 | 311 | 312 | 314 | 316 | 318 | 320 | 321 | 322 | 324 | 334 | 336 | 338 | 339 | 340 | 342 | 352 | 354 | 360 | 361 | 362 | 364 | 374 | 376 | 380 | 381 | 382 | 384 | 394 | 396 | 400 | 401 | 402 | 404 | 414 | 416 | 420 | 421 |
GITHUB 307 | 309 |
Role Level 313 | Team Name 315 | Team Role 317 | Access 319 |
Community 323 | Content 325 |

326 | Engagement 327 |

328 | Discovery 329 |

330 | Outreach 331 |

332 | Operations 333 |

Member 335 | Project Boards: Read Repo: Read 337 |
Contributor 341 | Content Contributor 343 |

344 | Engagement Contributor 345 |

346 | Discovery Contributor 347 |

348 | Outreach Contributor 349 |

350 | Operations Contributor 351 |

Member 353 | Project Boards: Read 355 |

356 | Repo: Triage 357 |

358 | Org: Member 359 |

Core 363 | Content Core 365 |

366 | Engagement Core 367 |

368 | Discovery Core 369 |

370 | Outreach Core 371 |

372 | Operations Core 373 |

Member 375 | Project Boards: Write 377 |

378 | Repo: Write 379 |

Lead 383 | Content Lead 385 |

386 | Engagement Lead 387 |

388 | Discovery Lead 389 |

390 | Outreach Lead 391 |

392 | Operations Lead 393 |

Maintainer 395 | Project Boards: Admin 397 |

398 | Repo: Maintain 399 |

Head 403 | Content Head 405 |

406 | Engagement Head 407 |

408 | Discovery Head 409 |

410 | Outreach Head 411 |

412 | Operations Head 413 |

Maintainer 415 | Project Boards: Admin 417 |

418 | Repo: Admin 419 |

422 | 423 | 424 | 425 | 427 | 428 | 429 | 431 | 433 | 435 | 437 | 438 | 439 | 441 | 451 | 453 | 455 | 456 | 457 | 459 | 469 | 471 | 474 | 475 | 476 | 478 | 488 | 490 | 493 | 494 | 495 | 497 | 507 | 509 | 513 | 514 | 515 | 517 | 527 | 529 | 533 | 534 |
GOOGLE APPS 426 |
Role Level 430 | Group Name 432 | Group Role 434 | Access 436 |
Community 440 | Content 442 |

443 | Engagement 444 |

445 | Discovery 446 |

447 | Outreach 448 |

449 | Operations 450 |

Member 452 | Vertical Drive Folder: Commenter 454 |
Contributor 458 | Content Contributor 460 |

461 | Engagement Contributor 462 |

463 | Discovery Contributor 464 |

465 | Outreach Contributor 466 |

467 | Operations Contributor 468 |

Member 470 | Vertical Drive Folder: Contributor \ 472 | 473 |
Core 477 | Content Core 479 |

480 | Engagement Core 481 |

482 | Discovery Core 483 |

484 | Outreach Core 485 |

486 | Operations Core 487 |

Member 489 | Vertical Drive Folder: Contributor \ 491 | Gmail, Drive and Docs: provision @scrf.io 492 |
Lead 496 | Content Lead 498 |

499 | Engagement Lead 500 |

501 | Discovery Lead 502 |

503 | Outreach Lead 504 |

505 | Operations Lead 506 |

Manager 508 | Vertical Drive Folder: Content Manager 510 |

511 | Gmail, Drive and Docs: provision @scrf.io 512 |

Head 516 | Content Head 518 |

519 | Engagement Head 520 |

521 | Discovery Head 522 |

523 | Outreach Head 524 |

525 | Operations Head 526 |

Owner 528 | Vertical Drive Folder: Manager 530 |

531 | Gmail, Drive and Docs: provision @scrf.io 532 |

535 | 536 | ## SCRF Glossary 537 | 538 | ### Why the glossary is important 539 | 540 | * Clarifies terms that SCRF has redefined 541 | * Allows content creators to us the correct terminology 542 | * Allows new community members to understand the work SCRF does 543 | * Provides information about SCRF that can't be found anywhere else 544 | 545 | The SCRF Glossary contains the latest compilation of SCRF's terms. This is an evolving area that relies on community input. 546 | 547 | 548 | 549 | 551 | 553 | 554 | 555 | 557 | 559 | 560 | 561 | 563 | 565 | 566 | 567 | 569 | 571 | 572 | 573 | 575 | 577 | 578 | 579 | 581 | 583 | 584 | 585 | 587 | 589 | 590 | 591 | 593 | 595 | 596 | 597 | 599 | 601 | 602 | 603 | 605 | 607 | 608 | 609 | 611 | 613 | 614 | 615 | 617 | 619 | 620 | 621 | 623 | 625 | 626 | 627 | 629 | 631 | 632 | 633 | 635 | 637 | 638 | 639 | 641 | 643 | 644 | 645 | 647 | 649 | 650 | 651 | 653 | 655 | 656 | 657 | 659 | 661 | 662 | 663 | 665 | 667 | 668 | 669 | 671 | 673 | 674 | 675 | 677 | 679 | 680 | 681 | 683 | 685 | 686 | 687 | 689 | 691 | 692 | 693 | 695 | 697 | 698 |
Verticals: 550 | An area within SCRF with its own mandate and goals under SCRF's objectives. 552 |
Teams: 556 | A collection of people working toward a common goal under a Vertical. Examples include the Moderation Team under the Engagement Vertical or the Brand Team under the Discovery Vertical. 558 |
Content Vertical: 562 | An area within SCRF responsible for searching, highlighting, and contextualizing research that is impactful to the ecosystem. 564 |
Engagement Vertical: 568 | An area within SCRF responsible for cultivating quality discussion on the forum and developing community throughout the organization. 570 |
Discovery Vertical: 574 | An area within SCRF responsible for the awareness, attention, and perception of the organization in the ecosystem according to SCRF's values. 576 |
Outreach Vertical: 580 | An area within SCRF responsible for cultivating strategic partnerships and organizing events. 582 |
Operations Vertical: 586 | An area within SCRF responsible for the internal health of the organization, including day-to-day operations, proper support, and special projects. 588 |
Content Pipeline: 592 | The program and process SCRF uses to create content for the forum, including content review and editing. 594 |
Research Pulse: 598 | A curation of the top Web3 research papers that push the industry forward. The process involves filtering and selecting from hundreds of publications published over the past week. 600 |
Summary Author: 604 | An individual who participates in the content pipeline as a Research Summary grantee. 606 |
Moderator: 610 | An individual responsible for engaging with forum content to cultivate high-quality discussion. 612 |
Community Engager: 616 | An individual responsible for running community projects like reading groups and fostering engagement in community chat. 618 |
Ambassador: 622 | A SCRF contributor or above who is representing or promoting SCRF in another Web3 community. 624 |
Community Cross Pollinator 628 | A SCRF core contributor who joins multiple communities, cross pollinates ideas, and contributes to SCRF's content. 630 |
Onboarding: 634 | A process for guiding new community members through the SCRF organization. 636 |
GtM Process: 640 | The Go-to-Market (GtM) Process at SCRF helps uncover the points of discussion for research summaries and discussion posts. 642 |
Academia: 646 | An important subset of SCRF's audience and partners that includes students, faculty, university labs, and independent researchers within the Web3 space. 648 |
Industry: 652 | An important subset of SCRF's audience and partners that includes emerging and later stage companies within the Web3 space. 654 |
SCRF Applicants: 658 | Role seekers looking to contribute to SCRF's mission. 660 |
Collaborative Funders: 664 | Funders and grant givers who want to collaborate with SCRF to sponsor projects. 666 |
Research Summary Grant: 670 | A grant for someone to summarize a piece of research on SCRF's forum. 672 |
Regional Grant: 676 | A grant for someone to create a case study on a region-specific use of Web3 technology. 678 |
Research Project Grant: 682 | A grant for a person or team to support research that they are conducting directly. 684 |
Engagement Grant: 688 | A grant to a person or group to comment on the forum and be part of the conversation. 690 |
Events Grant: 694 | A grant for a person or group to attend, support, or host a research oriented event with direct outputs for SCRF or the forum. 696 |
699 | 700 | ### Tooling-Specific Terms 701 | 702 | 703 | 704 | 706 | 707 | 708 | 710 | 712 | 713 | 714 | 716 | 717 | 718 | 720 | 722 | 723 | 724 | 726 | 728 | 729 | 730 | 732 | 734 | 735 | 736 | 738 | 739 | 740 | 742 | 744 | 745 | 746 | 748 | 750 | 751 | 752 | 754 | 756 | 757 | 758 | 760 | 762 | 763 | 764 | 766 | 767 | 768 | 770 | 772 | 773 |
Chat - Discord 705 |
Ticket 709 | Bot driven ticket tool. Captures input from a community that has not been onboarded or has a scope that is not appropriate for GitHub. 711 |
Forum - Discourse 715 |
Topics 719 | Topics are the original entry in a forum thread. 721 |
Posts 725 | Posts are comment replies to the original post or to other users' comments in a forum thread. 727 |
Labels 731 | Tags within Discourse to associate and filter content. 733 |
GitHub 737 |
Ticket/Issue 741 | Issues represent the tracking of work being done at SCRF. They are stored in repos and can be added to any number of project boards. Issues are often referred to as a ticket within the SCRF community. 743 |
Team 747 | Grouping of individuals providing user access roles to its members. 749 |
Repo 753 | Shorthand for repository. 755 |
Label 759 | Stored in a repo and applied to issues. An issue can have many labels. 761 |
Google Apps 765 |
Group 769 | Grouping of individuals providing user access roles to its members. 771 |
774 | 775 | ## Learn More About SCRF 776 | 777 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 778 | -------------------------------------------------------------------------------- /en/transcript_template.md: -------------------------------------------------------------------------------- 1 | # Transcript Template 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created the _INSERT TITLE OF TRANSCRIPT_ for those interested in _INSERT TARGET AUDIENCE AND WHY THEY WOULD WANT TO READ THIS_. 4 | 5 | ## Transcript 6 | 7 | This transcript is from the *PANEL NAME* panel organized by SCRF as part of the *INSERT EVENT* on *INSERT EVENT DATE*. To read more about the panel, the panelists, and the topic, refer to the forum post (*LINK TO FORUM POST*). 8 | 9 | *INSERT TRANSCRIPT HERE* 10 | 11 | ## Learn More About SCRF 12 | 13 | The Smart Contract Research Forum (SCRF) is a grants-funded organization dedicated to advancing research while serving the web3 space. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md). 14 | -------------------------------------------------------------------------------- /en/transcripts/transcript_template.md: -------------------------------------------------------------------------------- 1 | # SCRF Transcript Template 2 | 3 | The [Smart Contract Research Forum](https://www.smartcontractresearch.org/) (SCRF) has created a _INSERT TITLE OF TRANSCRIPT_ for _INSERT TARGET AUDIENCE AND WHY THEY WOULD WANT TO READ THIS_. 4 | 5 | ## Transcript 6 | 7 | This is the transcript from the _PANEL NAME_ panel that was organized by SCRF as part of the _INSERT EVENT_. To read more about the panel, the panelists, and the topic, refer to the forum post (_LINK TO FORUM POST_). 8 | 9 | _INSERT TRANSCRIPT HERE_ 10 | 11 | ## Learn More About SCRF 12 | 13 | SCRF is an interactive forum supported by an active international community. SCRF’s members work together to advance actionable blockchain research. [Learn](https://github.com/smartcontractresearchforum/docs) more about SCRF, and discover ways to [get involved](https://github.com/smartcontractresearchforum/docs/blob/main/en/content_connecting_with_scrf.md) 14 | --------------------------------------------------------------------------------