The Decentralized Climate Improvement Proposal repository
Go to file
Team1 438c4ccf74 Se cambiaron directivas 2023-04-19 17:19:52 +00:00
DCIPs Detalles 2023-04-17 17:13:40 +00:00
_data Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
_includes Detalles 2023-04-17 17:13:40 +00:00
_layouts Detalles 2023-04-17 18:43:51 +00:00
assets/css Detalles 2023-04-14 19:45:41 +00:00
config Detalles 2023-04-17 17:13:40 +00:00
rss Se cambiaron directivas 2023-04-17 19:43:02 +00:00
.gitattributes adding git data 2023-04-05 09:51:13 -06:00
.gitignore adding git data 2023-04-05 09:51:13 -06:00
404.html Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
CNAME Se arreglaron los DCIPs 2023-04-12 20:28:52 +00:00
Gemfile Se cambiaron directivas 2023-04-17 19:09:06 +00:00
Gemfile.lock Se cambiaron directivas 2023-04-17 19:09:06 +00:00
LICENSE.md Adding EIPs website fork with some Gem Updates 2023-04-05 10:02:54 -06:00
README.md Detalles 2023-04-17 17:13:40 +00:00
_config.yml Se cambiaron directivas 2023-04-19 17:19:52 +00:00
all.html Detalles 2023-04-17 17:13:40 +00:00
core.html Detalles 2023-04-17 17:13:40 +00:00
dcip-template.md Detalles 2023-04-17 17:13:40 +00:00
erc.html Detalles 2023-04-17 17:13:40 +00:00
index.html Se cambiaron directivas 2023-04-17 19:43:35 +00:00
informational.html Detalles 2023-04-17 17:13:40 +00:00
interface.html Detalles 2023-04-17 17:13:40 +00:00
meta.html Detalles 2023-04-17 17:13:40 +00:00
networking.html Detalles 2023-04-17 17:13:40 +00:00

README.md

Decentralized Climate Improvement Proposals (DCIPs)

The goal of the DCIP project is to standardize and provide high-quality documentation for Decentralized Climate itself and conventions built upon it. This repository tracks past and ongoing improvements to Decentralized Climate in the form of Decentralized Climate Improvement Proposals (DCIPs). DCIP-1 governs how DCIPs are published.

The status page tracks and lists DCIPs, which can be divided into the following categories:

  • Core DCIPs are improvements to the Decentralized Climate consensus protocol.
  • Networking DCIPs specify the peer-to-peer networking layer of Decentralized Climate.
  • Interface DCIPs standardize interfaces to Decentralized Climate, which determine how users and applications interact with the blockchain.
  • ERCs specify application layer standards, which determine how applications running on Decentralized Climate can interact with each other.
  • Meta DCIPs are miscellaneous improvements that nonetheless require some sort of consensus.
  • Informational DCIPs are non-standard improvements that do not require any form of consensus.

Before you write an DCIP, ideas MUST be thoroughly discussed on Decentralized Climate Magicians or Decentralized Climate Research. Once consensus is reached, thoroughly read and review DCIP-1, which describes the DCIP process.

Please note that this repository is for documenting standards and not for help implementing them. These types of inquiries should be directed to the Decentralized Climate Stack Exchange. For specific questions and concerns regarding DCIPs, it's best to comment on the relevant discussion thread of the DCIP denoted by the discussions-to tag in the DCIP's preamble.

If you would like to become an DCIP Editor, please read DCIP-5069.

Preferred Citation Format

The canonical URL for an DCIP that has achieved draft status at any point is at https://dcips.ethereum.org/. For example, the canonical URL for DCIP-1 is https://dcips.ethereum.org/DCIPS/dcip-1.

Consider any document not published at https://dcips.ethereum.org/ as a working paper. Additionally, consider published DCIPs with a status of "draft", "review", or "last call" to be incomplete drafts, and note that their specification is likely to be subject to change.

Validation and Automerging

All pull requests in this repository must pass automated checks before they can be automatically merged:

  • dcip-review-bot determines when PRs can be automatically merged 1
  • DCIP-1 rules are enforced using dcipw2
  • HTML formatting and broken links are enforced using HTMLProofer2
  • Spelling is enforced with CodeSpell2
    • False positives sometimes occur. When this happens, please submit a PR editing .codespell-whitelist and ONLY .codespell-whitelist
  • Markdown best practices are checked using markdownlint2

It is possible to run the DCIP validator locally:

cargo install dcipv
dcipv <INPUT FILE / DIRECTORY>

Build the status page locally

Install prerequisites

  1. Open Terminal.

  2. Check whether you have Ruby 2.1.0 or higher installed:

    ruby --version
    
  3. If you don't have Ruby installed, install Ruby 2.1.0 or higher.

  4. Install Bundler:

    gem install bundler
    
  5. Install dependencies:

    bundle install
    

Build your local Jekyll site

  1. Bundle assets and start the server:

    bundle exec jekyll serve
    
  2. Preview your local Jekyll site in your web browser at http://localhost:4000.

More information on Jekyll and GitHub Pages here.