├── CNAME ├── _data └── statuses.yml ├── assets ├── cip-124 │ ├── cube.png │ ├── ring.png │ ├── gossip.gif │ ├── gossip.png │ ├── gossip1.png │ ├── gossip2.png │ ├── gossip3.png │ ├── gossip4.png │ ├── gossip5.png │ ├── gossip6.png │ ├── b_hash_tree.png │ ├── b_hash_tree_1.png │ ├── b_hash_tree_2.png │ └── merkle_search_tree.png ├── cip-145 │ ├── ex1.png │ ├── ex2.png │ ├── ex3.png │ ├── ex4.png │ ├── ex5.png │ └── lattice.png ├── cip-101 │ └── safe-did.png ├── cip-11 │ └── idx-example.png ├── general │ └── readme-banner.png └── cip-85 │ └── collection-graphic.png ├── .gitignore ├── index.html ├── _includes ├── discussion_links.html ├── cipnums.html ├── superseded_by.html ├── authorlist.html ├── ciptable.html ├── anchor_headings.html └── toc.html ├── tables ├── networkIds.csv └── streamtypes.csv ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── bug-report.yml └── workflows │ └── pages.yml ├── 404.html ├── CIPs ├── cip-113.md ├── cip-2.md ├── cip-88.md ├── cip-59.md ├── cip-82.md ├── cip-21.md ├── cip-3.md ├── cip-1.md ├── cip-5.md ├── cip-110.md ├── cip-142.md ├── cip-120.md ├── cip-69.md ├── cip-101.md ├── cip-8.md ├── cip-146.md ├── cip-23.md ├── cip-71.md ├── cip-7.md ├── cip-94.md ├── cip-145.md ├── cip-19.md ├── cip-85.md ├── cip-20.md └── cip-79.md ├── LICENSE ├── README.md ├── Gemfile ├── _config.yml ├── Gemfile.lock ├── _layouts └── cip.html └── cip-template.md /CNAME: -------------------------------------------------------------------------------- 1 | chainagnostic.org 2 | -------------------------------------------------------------------------------- /_data/statuses.yml: -------------------------------------------------------------------------------- 1 | - Living 2 | - Final 3 | - Review 4 | - Draft 5 | - Withdrawn 6 | - Superseded 7 | -------------------------------------------------------------------------------- /assets/cip-124/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/cube.png -------------------------------------------------------------------------------- /assets/cip-124/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/ring.png -------------------------------------------------------------------------------- /assets/cip-145/ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-145/ex1.png -------------------------------------------------------------------------------- /assets/cip-145/ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-145/ex2.png -------------------------------------------------------------------------------- /assets/cip-145/ex3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-145/ex3.png -------------------------------------------------------------------------------- /assets/cip-145/ex4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-145/ex4.png -------------------------------------------------------------------------------- /assets/cip-145/ex5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-145/ex5.png -------------------------------------------------------------------------------- /assets/cip-124/gossip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip.gif -------------------------------------------------------------------------------- /assets/cip-124/gossip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip.png -------------------------------------------------------------------------------- /assets/cip-124/gossip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip1.png -------------------------------------------------------------------------------- /assets/cip-124/gossip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip2.png -------------------------------------------------------------------------------- /assets/cip-124/gossip3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip3.png -------------------------------------------------------------------------------- /assets/cip-124/gossip4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip4.png -------------------------------------------------------------------------------- /assets/cip-124/gossip5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip5.png -------------------------------------------------------------------------------- /assets/cip-124/gossip6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/gossip6.png -------------------------------------------------------------------------------- /assets/cip-145/lattice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-145/lattice.png -------------------------------------------------------------------------------- /assets/cip-101/safe-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-101/safe-did.png -------------------------------------------------------------------------------- /assets/cip-11/idx-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-11/idx-example.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-cache 4 | .jekyll-metadata 5 | vendor 6 | .DS_Store 7 | cspell.json 8 | -------------------------------------------------------------------------------- /assets/cip-124/b_hash_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/b_hash_tree.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Home 4 | --- 5 | 6 | {% include ciptable.html cips=site.pages %} 7 | -------------------------------------------------------------------------------- /assets/cip-124/b_hash_tree_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/b_hash_tree_1.png -------------------------------------------------------------------------------- /assets/cip-124/b_hash_tree_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/b_hash_tree_2.png -------------------------------------------------------------------------------- /assets/general/readme-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/general/readme-banner.png -------------------------------------------------------------------------------- /assets/cip-85/collection-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-85/collection-graphic.png -------------------------------------------------------------------------------- /assets/cip-124/merkle_search_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceramicnetwork/CIPs/HEAD/assets/cip-124/merkle_search_tree.png -------------------------------------------------------------------------------- /_includes/discussion_links.html: -------------------------------------------------------------------------------- 1 | {% assign links=include.links|split:"," %} 2 | {% for link in links %} 3 | {{ link | strip | xml_escape }} 4 | {% endfor %} -------------------------------------------------------------------------------- /_includes/cipnums.html: -------------------------------------------------------------------------------- 1 | {% assign cips=include.cips|split:"," %} 2 | {% for num in cips %} 3 | {{num|strip}}{% if forloop.last == false %}, {% endif %} 4 | {% endfor %} 5 | -------------------------------------------------------------------------------- /tables/networkIds.csv: -------------------------------------------------------------------------------- 1 | name, code 2 | mainnet, 0x00 3 | testnet-clay, 0x01 4 | dev-unstable, 0x02 5 | inmemory, 0xFF 6 | local, 0x01_0000_0000 - 0x01_FFFF_FFFF 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Do you want to discuss CIP ideas or ask questions about the process? 4 | url: https://forum.ceramic.network/c/discussion-about-ceramic-improvement-proposals/ 5 | about: Use the Ceramic forum for CIP-related discussion! 6 | -------------------------------------------------------------------------------- /_includes/superseded_by.html: -------------------------------------------------------------------------------- 1 | {% assign cips=include.cips|split:"," %} 2 | {% for cip in cips %} 3 | {% if cip contains "https://" %} 4 | {{ cip | strip | xml_escape }} 5 | {% else %} 6 | {{cip|strip}} 7 | {% endif %} 8 | {% if forloop.last == false %}, {% endif %} 9 | {% endfor %} 10 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | layout: default 4 | --- 5 | 6 | 19 | 20 |
Page not found :(
24 |The requested page could not be found.
25 || Number | Review ends | Title | Author |
|---|---|---|---|
| Number | Title | Author | |
| {{page.cip|xml_escape}} | 27 | {% if status == "Last Call" and page.last-call-deadline != undefined %} 28 |{{ page.last-call-deadline | xml_escape }} | 29 | {% endif %} 30 |{{page.title|xml_escape}} | 31 |{% include authorlist.html authors=page.author %} | 32 |