2018-03-21 12:59:50 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
2021-07-22 04:00:21 -05:00
|
|
|
{% if page.status == "Draft" %}
|
|
|
|
<div class="draft">
|
|
|
|
⚠️ This EIP is not recommended for general use or implementation as it is likely to change.
|
|
|
|
</div>
|
|
|
|
{% elsif page.status == "Review" %}
|
|
|
|
<div class="review">
|
|
|
|
📖 This EIP is in the review stage. It is subject to changes and feedback is appreciated.
|
|
|
|
</div>
|
|
|
|
{% elsif page.status == "Last Call" %}
|
|
|
|
<div class="lastcall">
|
|
|
|
📢 This EIP is in the last call for review stage. The authors wish to finalize the EIP and appreciate feedback.
|
|
|
|
</div>
|
|
|
|
{% elsif page.status == "Stagnant" %}
|
|
|
|
<div class="stagnant">
|
|
|
|
🚧 This EIP had no activity for at least 6 months.
|
|
|
|
</div>
|
|
|
|
{% elsif page.status == "Withdrawn" %}
|
|
|
|
<div class="withdrawn">
|
|
|
|
🛑 This EIP has been withdrawn.
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-03-21 12:59:50 +00:00
|
|
|
<div class="home">
|
2018-03-21 16:45:09 +00:00
|
|
|
<h1 class="page-heading">
|
2020-07-29 23:33:36 -04:00
|
|
|
EIP-{{ page.eip | xml_escape }}: {{ page.title | xml_escape }}
|
2019-03-09 02:56:08 -05:00
|
|
|
<a href="{{site.github.repository_url}}/blob/master/{{page.path}}"><svg role="img" aria-label="Source" xmlns="https://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><title>Source</title><path fill-rule="evenodd" d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"/></svg></a>
|
2018-03-21 16:45:09 +00:00
|
|
|
</h1>
|
2021-08-18 00:05:10 +01:00
|
|
|
<h3>{{ page.description | xml_escape }}</h3>
|
2018-03-21 12:59:50 +00:00
|
|
|
<table>
|
2018-03-21 16:04:37 +00:00
|
|
|
<tr><th>Author</th><td>{% include authorlist.html authors=page.author %}</td></tr>
|
2018-03-21 13:10:08 +00:00
|
|
|
{% if page["discussions-to"] != undefined %}
|
2018-03-27 19:49:09 +01:00
|
|
|
<tr><th>Discussions-To</th><td><a href="{{ page["discussions-to"] | uri_escape }}">{{ page["discussions-to"] | xml_escape }}</a></td></tr>
|
2018-03-21 13:10:08 +00:00
|
|
|
{% endif %}
|
2019-03-12 16:00:34 -04:00
|
|
|
<tr><th>Status</th><td>{{ page.status | xml_escape }}
|
|
|
|
{% if page.review-period-end != undefined %}
|
2020-09-03 23:40:42 +01:00
|
|
|
<tr><th>Review period ends</th><td>{{ page.review-period-end | xml_escape }}</td></tr>
|
2019-03-12 16:00:34 -04:00
|
|
|
{% endif %}
|
|
|
|
</td></tr>
|
2018-03-21 12:59:50 +00:00
|
|
|
<tr><th>Type</th><td>{{ page.type | xml_escape }}</td></tr>
|
2018-03-21 13:14:02 +00:00
|
|
|
{% if page.category != undefined %}
|
|
|
|
<tr><th>Category</th><td>{{ page.category | xml_escape }}</td></tr>
|
|
|
|
{% endif %}
|
2018-03-21 12:59:50 +00:00
|
|
|
<tr><th>Created</th><td>{{ page.created | xml_escape }}</td></tr>
|
2019-09-19 15:39:06 +01:00
|
|
|
{% if page.updated != undefined %}
|
|
|
|
<tr><th>Updated</th><td>{{ page.updated | xml_escape }}</td></tr>
|
|
|
|
{% endif %}
|
2018-03-21 13:10:08 +00:00
|
|
|
{% if page.requires != undefined %}
|
2018-03-21 15:55:18 +00:00
|
|
|
<tr><th>Requires</th><td>{% include eipnums.html eips=page.requires %}</td></tr>
|
2018-03-21 13:10:08 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if page.replaces != undefined %}
|
2018-03-21 16:04:37 +00:00
|
|
|
<tr><th>Replaces</th><td>{% include eipnums.html eips=page.replaces %}</td></tr>
|
2018-03-21 13:10:08 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if page["superseded-by"] != undefined %}
|
2018-03-21 16:04:37 +00:00
|
|
|
<tr><th>Superseded by</th><td>{% include eipnums.html eips=page.superseded-by %}</td></tr>
|
2018-03-21 13:10:08 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if page.resolution != undefined %}
|
2018-03-21 15:55:18 +00:00
|
|
|
<tr><th>Resolution</th><td><a href="{{page.resolution | uri_escape }}">{{ page.resolution | xml_escape }}</a></td></tr>
|
2018-03-21 13:10:08 +00:00
|
|
|
{% endif %}
|
2018-03-21 12:59:50 +00:00
|
|
|
</table>
|
|
|
|
|
2020-10-31 00:08:56 -07:00
|
|
|
<div class="toc">
|
|
|
|
<h2>Table of Contents</h2>
|
|
|
|
{% include toc.html html=content sanitize=true h_max=3 %}
|
|
|
|
</div>
|
|
|
|
|
2020-10-28 09:06:00 -07:00
|
|
|
{% include anchor_headings.html html=content anchorClass="anchor-link" beforeHeading=true %}
|
2018-03-21 12:59:50 +00:00
|
|
|
|
2020-07-29 23:33:36 -04:00
|
|
|
<h2>Citation</h2>
|
|
|
|
<p>Please cite this document as:</p>
|
|
|
|
{% comment %}
|
|
|
|
IEEE specification for reference formatting:
|
|
|
|
https://ieee-dataport.org/sites/default/files/analysis/27/IEEE%20Citation%20Guidelines.pdf
|
|
|
|
{% endcomment %}
|
|
|
|
<p>{% include authorlist.html authors=page.author %}, "EIP-{{ page.eip | xml_escape }}: {{ page.title | xml_escape }}{% if page.status == "Draft" or page.status == "Last Call" %} [DRAFT]{% endif %}," <em>Ethereum Improvement Proposals</em>, no. {{ page.eip | xml_escape }}, {{ page.created | date: "%B %Y" }}. [Online serial]. Available: https://eips.ethereum.org/EIPS/eip-{{ page.eip | xml_escape }}.</p>
|
2018-03-21 12:59:50 +00:00
|
|
|
</div>
|
2020-07-20 20:50:51 -04:00
|
|
|
{% comment %}
|
|
|
|
Article schema specification:
|
2020-07-21 11:48:51 -04:00
|
|
|
https://schema.org/TechArticle
|
2020-07-20 20:50:51 -04:00
|
|
|
{% endcomment %}
|
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
2020-07-21 11:48:51 -04:00
|
|
|
"@type": "TechArticle",
|
2020-07-21 22:04:04 -04:00
|
|
|
"headline": "EIP-{{ page.eip | xml_escape }}: {{ page.title | xml_escape }}{% if page.status == "Draft" or page.status == "Last Call" %} [DRAFT]{% endif %}",
|
2020-07-21 03:43:56 -04:00
|
|
|
"author": "{{ page.author }}",
|
2020-07-20 20:50:51 -04:00
|
|
|
"name": "EIP-{{ page.eip | xml_escape }}: {{ page.title | xml_escape }}{% if page.status == "Draft" or page.status == "Last Call" %} [DRAFT]{% endif %}",
|
|
|
|
"dateCreated": "{{ page.created | date: "%Y-%m-%d" }}",
|
2020-07-21 22:04:04 -04:00
|
|
|
"datePublished": "{{ page.created | date: "%Y-%m-%d" }}",
|
2020-07-20 20:50:51 -04:00
|
|
|
{% if page["discussions-to"] != undefined %}
|
|
|
|
"discussionUrl": "{{ page["discussions-to"] | uri_escape }}",
|
|
|
|
{% endif %}
|
|
|
|
"inLanguage": "en-US",
|
|
|
|
"license": "#copyright",
|
|
|
|
"copyrightYear": "{{ page.created | date: "%Y" }}"
|
|
|
|
}
|
|
|
|
</script>
|