Skip to content

Latest commit

 

History

History
380 lines (306 loc) · 42.3 KB

README.md

File metadata and controls

380 lines (306 loc) · 42.3 KB

All Contributors

ethereum logo

👋 Welcome to ethereum.org!

Ethereum.org is a primary online resource for the Ethereum community. The purpose of the site is to “Be the best portal to Ethereum for our growing global community" - read more about what this means here.

Ethereum.org is improved and changed over time through the contributions of community members who submit content, give feedback, or volunteer their time to managing its evolution. If you’re interested in helping to improve ethereum.org, start here. This contribution guide will help you get started.


Ethereum.org’s design and content is guided by three core principles:

🌏 1. Ethereum.org is a portal to resources created by the community

  • It will never be “encyclopedia ethereum” - we can’t add every link, or cover every topic
  • Rather, its purpose is to direct people to community-built resources
  • Ethereum.org trends toward minimal native-content

🛠 2. Ethereum.org is a work in progress, because Ethereum is a work in progress

  • It will change over time, as Ethereum evolves and the community evolves with it
  • To accommodate long-term changes, the site has a simple design system & modular structure
  • Changes to the site are iterative, as we learn more about how people use it and what the community wants from it
  • Changes can be proposed by anyone, and we aim to cultivate a community of open-source contributors

🦄 3. Ethereum.org is not a typical product website

  • Ethereum is multifaceted. It's a project, a platform, a product, a vision of the future, a set of ideologies, a community, and much more.
  • The site won't look like every other product site, because Ethereum isn't like every other product.

How can I contribute?

Keeping in mind the above core principles, there are many ways you can get involved in improving the website!

  • Check out our open issues and see if there are any you can help with!
  • Join our Translation Program!
  • Submit links to add to specific sections that are incomplete, by submitting a pull request
  • Identify out-of-date information on ethereum.org (or linked to from ethereum.org) and submit a pull request
  • Submit new designs for the front-page HERO image - find the specs here and contact us at website@ethereum.org
  • Suggest ideas for new subpages, new content, or other ways to improve ethereum.org by opening an issue.

Learn how to submit a pull request in the Development Lifecycle section.

Translation Program

Ethereum is a global project, and it is critical that Ethereum.org is accessible to everyone, regardless of their nationality or language. Our community has been working hard to make this vision a reality. We're constantly working to add additional language support & to keep our existing translations up to date. You can view the progress of all our translations here.

Looking to get involved as a translator? Here's how:

  1. Follow this invite link to join our project on CrowdIn.
  2. You will need to create a CrowdIn account if you don't have one. Here's documentation on how to use CrowdIn.
  3. Find the language you want to participate in. If it's below 100%, please contribute! Don't see your langugae? Open an issue.

Once translation is completed (i.e. all files display 100%), our professional translation service will review (and potentially edit) the content. Once the review is complete, we will add it to the website.

Thank you for your particpation in the language program!

Notes on individual sub-pages:

If you want to suggest changes to particular sub-pages, keep in mind the purpose of each page:

🛠 Developers

  • The purpose of this page is to collect core technical resources helpful to someone building on Ethereum
  • Information should be kept as up to date as possible, as new tools appear, standards are adopted, or material is deprecated
  • This page will never be completely comprehensive: the goal is to list the most popular or widely used resources or tools.

Developer tool submissions will be assessed by the following criteria:

  • Is it meaningfully differentiated from tools already listed?
    • New categories or types of tools
    • New features compared to existing similar tools
    • Targeted at a distinct use-case not covered by existing similar tools
  • Is the tool well documented?
    • Does documentation exist?
    • Is it sufficient to use the tool?
    • Has it been recently updated?
  • Is the tool widely used?
    • We will consider metrics such as GitHub stars, download statistics, and whether it is used by known companies or projects.
  • Is the tool of sufficient quality?
    • Are there recurring bugs?
    • Is the tool reliable?

📚 Learn

  • The purpose of this page is to collect educational material about Ethereum on a variety of topics
  • Some information will be technical in nature, but it will also include non-technical information, or articles that may serve as inspiration to community members

📱 Use

  • This page is for the person who wants to get started using Ethereum, but doesn’t know how.
  • This page will stay limited to 3 sections: Dapps, Ether, and Wallets.
  • Useful contributions include: submitting suggestions for dapps to rotate onto this page, submitting suggestions for better links about Ether or Wallets.
  • We will rotate the list of dapps on this page frequently!

Dapp submissions will be assessed on the following criteria:

  • Is the dapp a "user" application? This page is targeted at the average user, which means it wouldn't be appropriate to list a dev tool or app targeted at sophisticated technical users.
  • Does the application have a good user on-boarding process, such that a user can follow the link, and find all the instructions they need to get started?
  • Does the application "round out" the list by adding a new kind of application not already present?
  • Is there evidence that the application is popular and well established?

👋 Beginners

  • The purpose of this page is to offer a coherent answer to the most basic questions about Ethereum: what is it, and why does it exist?
  • Because this page is very simple and does not contain much content, changes to the text will be limited.
  • Useful contributions include: suggesting better “beginner” content to link at the bottom of the page, or suggesting images that could be added to the page to break up the text.

🤔 How are decisions about the site made?

Decisions about individual PRs, design evolution, and major upgrades to the website are made by a team of people from across the Ethereum ecosystem. This team includes project managers, developers, designers, marketing and communications, and subject matter experts. Community input informs every decision: raising questions in issues, submitting PRs, or contacting the team at website@ethereum.org is helpful!

This team currently includes:

  • Anuj Gupta (Ethereum Foundation)
  • Amanda Gutterman (ConsenSys)
  • Hudson Jameson (Ethereum Foundation Devops)
  • Taeyeon Kim (Ethereum Foundation)
  • Jamie Pitts (Ethereum Foundation Devops)
  • Sam Richards (Ethereum Foundation)
  • Joseph Schweitzer (Ethereum Foundation)
  • Josh Stark (L4, ETHGlobal, Ethereum Foundation)
  • Charles St. Louis (MakerDAO & Ethereum Cat Herders)
  • Evan Van Ness (ConsenSys & Ethereum Foundation)
  • Alan Woo (Independent designer & developer)

Development

Unix/Mac

# In the root folder:
yarn global add vuepress
yarn
vuepress dev docs

Windows

  • Download node.js & npm
  • Download Yarn
  • Download Git Bash
  • Download the master branch
  • Navigate to the /ethereum-org-website folder
  • Right click and select Git Bash Here

Run the following commands:

npm install -g yarn
npm install -g vuepress
yarn
vuepress dev docs

Build

# In the root folder:
vuepress build docs

The build should be exported to /docs/.vuepress/dist which can be deployed to a static host. We are hosting the site on Netlify, which handles this for us.

Deployment Lifecycle

How updates are made to ethereum.org

Submit

  • Create a new issue
    • If you plan to submit a pull request to resolve the issue, assign it to yourself
    • If you begin work on the issue, label it as wip
  • Submit a pull request (PR) to the dev branch
  • Netlify deploys all PRs to a publicly accessible preview URL: Netlify deploy preview
  • Confirm the Netlify preview deploy looks & functions as expected

Review

Deploy

  • master is continually synced to Netlify and will automatically deploy new commits to etheruem.org
  • The website team will periodically merge dev into master (typically multiple times per week)

Structure

Site content is in /docs folder. Everything else in /docs/.vuepress

Test

We use Jest to create unit test for Vue components under /docs/.vuepress/component and /dosc/.vuepress/theme/components.

The unit tests are placed next to the Vue components under /docs/.vuepress/component/__tests__ and /dosc/.vuepress/theme/components/__tests__. And module mocks are created under /dosc/.vuepress/theme/utils/__mocks__ for @theme/utils module.

Below commands will be helpful when you develop or test the Vue components.

  1. Run all the Jest unit tests,
yarn test
  1. Run unit tests for the changed file,
yarn test -o
  1. Update the snapshot if you're sure the old results are obselete,
yarn test --update-snapshot

Contributors ✨

Thanks goes to these wonderful people (emoji key):

ExodusActual
ExodusActual

🌍
Anna Karpińska
Anna Karpińska

🌍
8bitp
8bitp

🖋
Rousos Alexandros
Rousos Alexandros

🖋
EvanVanNessEth
EvanVanNessEth

🖋
JesseAbram
JesseAbram

🖋
Lililashka
Lililashka

🎨
vrde
vrde

🖋
Richard McSorley
Richard McSorley

💻
Alejandro Santander
Alejandro Santander

🖋
Jason Carver
Jason Carver

🖋
Chaitanya Potti
Chaitanya Potti

🖋
chriseth
chriseth

🖋
Craig Williams
Craig Williams

🖋
Damian Rusinek
Damian Rusinek

🖋
Danny Ryan
Danny Ryan

🖋
Franco Zeoli
Franco Zeoli

🖋
Guy Lando
Guy Lando

🖋
James Connolly
James Connolly

🖋
Jacob Burden
Jacob Burden

🖋
joshorig
joshorig

🖋
mariapaulafn
mariapaulafn

🖋
Martín
Martín

🖋
Mattias Nystrom
Mattias Nystrom

🖋
nabetse
nabetse

🖋
Nick Savers
Nick Savers

🖋
Nina Breznik
Nina Breznik

🖋
Ven Gist
Ven Gist

🖋
Paul Fletcher-Hill
Paul Fletcher-Hill

🖋
Phil
Phil

🖋
Rémi Prévost
Rémi Prévost

🖋
Shane
Shane

🖋
Andrey Petrov
Andrey Petrov

🖋
Santiago Palladino
Santiago Palladino

🖋
Tim Beiko
Tim Beiko

🖋
Wanseob Lim
Wanseob Lim

🖋
Wil Barnes
Wil Barnes

🖋
Aniket
Aniket

🖋
Chris Chinchilla
Chris Chinchilla

🖋
George Spasov
George Spasov

🖋
Pierrick TURELIER
Pierrick TURELIER

💻
Solexplorer
Solexplorer

🖋
Sunghee Lee
Sunghee Lee

🖋
awallendahl
awallendahl

🖋
Boris Mann
Boris Mann

🖋
carumusan
carumusan

🖋
econoar
econoar

🖋
Gustavo Esquinca
Gustavo Esquinca

🖋
Javier Tarazaga
Javier Tarazaga

🖋
Kendall Cole
Kendall Cole

🖋
Brendan Lee
Brendan Lee

🖋
Mahesh Murthy
Mahesh Murthy

🖋
Patrick Gallagher
Patrick Gallagher

🖋
Ali Abbas
Ali Abbas

🖋
wtf
wtf

💻 👀 🚇
 Aleksandr Sobolev
Aleksandr Sobolev

🖋
Zak Cole
Zak Cole

🖋
Bogdan Habic
Bogdan Habic

🖋
Nick Sawinyh
Nick Sawinyh

🖋
Miguel Angel Gordián
Miguel Angel Gordián

💻
Eswara Sai
Eswara Sai

💻
ethers
ethers

🖋
Felipe Faraggi
Felipe Faraggi

🖋 🌍
Maurelian
Maurelian

💻 👀 🖋
CPSTL
CPSTL

🖋 👀 📖
Hudson Jameson
Hudson Jameson

🖋 📖
Shayan Eskandari
Shayan Eskandari

💻 🌍
Lukas Sägesser
Lukas Sägesser

💻
Virgil Griffith
Virgil Griffith

🖋
Eugene Aseev
Eugene Aseev

🖋
Jannis Pohlmann
Jannis Pohlmann

🖋
think-in-universe
think-in-universe

💻 🖋
Josh Stark
Josh Stark

🖋 👀 📆
Alan Woo
Alan Woo

💻 🎨
Manank Patni
Manank Patni

🖋
Rogério Araújo
Rogério Araújo

🌍
Natacha Souza
Natacha Souza

🌍
sorumfactory
sorumfactory

🌍 📆
Sam Richards
Sam Richards

💻 🖋 📖 📆
Antonio Della Porta
Antonio Della Porta

💻
Abhimanyu Shekhawat
Abhimanyu Shekhawat

🖋
William Entriken
William Entriken

🖋
Sangphil Kim
Sangphil Kim

🌍
peijie
peijie

🌍
Jokyash
Jokyash

🌍
Pedro Rivera
Pedro Rivera

🌍
Gabriele Rigo
Gabriele Rigo

🌍
Tilen Držan
Tilen Držan

🌍
jJosko1986
jJosko1986

🌍
ECN
ECN

🌍
Damiano Azzolini
Damiano Azzolini

🌍
matteopey
matteopey

🌍
Hun Ryu
Hun Ryu

🌍
nake13
nake13

🌍
alexiskefalas
alexiskefalas

🌍
Behrad Khodayar
Behrad Khodayar

🌍
Frankaus
Frankaus

🌍
hacktar
hacktar

💻 🌍
Jaroslav Macej
Jaroslav Macej

🌍
Eman Herawy
Eman Herawy

🌍
Bellinas
Bellinas

🌍
Alexander Cherkashin
Alexander Cherkashin

🌍
Enoch Mbaebie
Enoch Mbaebie

🌍
inlak16
inlak16

🌍
Bob Jiang
Bob Jiang

🌍
Suhun Kim
Suhun Kim

🌍
Jean Zundel
Jean Zundel

🌍
Hachemi
Hachemi

🌍
hanzoh
hanzoh

🌍
Vincent Le Gallic
Vincent Le Gallic

🌍

This project follows the all-contributors specification. Contributions of any kind welcome!