diff --git a/.github/workflows/mdbook.yml b/.github/workflows/mdbook.yml new file mode 100644 index 0000000..171e999 --- /dev/null +++ b/.github/workflows/mdbook.yml @@ -0,0 +1,56 @@ +name: Deploy mdBook site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + env: + MDBOOK_VERSION: 0.4.40 + steps: + - uses: actions/checkout@v4 + - name: Install mdBook + run: | + curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh + rustup update + cargo install --version ${MDBOOK_VERSION} mdbook + - name: Setup Pages + id: pages + uses: actions/configure-pages@v5 + - name: Build with mdBook + run: mdbook build + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./book + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d3af563 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +book +index.html + +# CIPs - not sure if this is necessary anymore. on a fresh clone and build, the cips folder is empty of .html +cips/*.html + +# WGs - same note as above +cips/wgs/**/*.html \ No newline at end of file diff --git a/.markdownlint.yaml b/.markdownlint.yaml index 0a57674..83e786e 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -3,3 +3,4 @@ "code_blocks": false # Disable rule for hard tabs in code blocks "MD013": false # Disable rule for line length "MD033": false # Disable rule banning inline HTML +"MD041": false # Disable rule for first line in file \ No newline at end of file diff --git a/README.md b/README.md index cba86ba..a510d04 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Celestia Improvement Proposal (CIP) process -Read [CIP-1](https://github.com/celestiaorg/CIPs/blob/main/cips/cip-1.md) for information on the CIP process. +Read [CIP-1](./cip-1.md) for information on the CIP process. ## Meetings @@ -23,29 +23,29 @@ Read [CIP-1](https://github.com/celestiaorg/CIPs/blob/main/cips/cip-1.md) for in | № | Title | Author(s) | |:---------------------:|:----------------------------------------------------------------------------:|:------------------------------------------------------------------------------------------------------------------------------------------------------:| -| [1](/cips/cip-1.md) | Celestia Improvement Proposal Process and Guidelines | Yaz Khoury | -| [2](/cips/cip-2.md) | CIP Editor Handbook | Yaz Khoury (@YazzyYaz) | -| [3](/cips/cip-3.md) | Process for Approving External Resources | Yaz Khoury (@YazzyYaz) | -| [4](/cips/cip-4.md) | Standardize data expiry time for pruned nodes | Mustafa Al-Bassam (@musalbas), Rene Lubov (@renaynay), Ramin Keene (@ramin) | -| [5](/cips/cip-5.md) | Rename data availability to data publication | msfew (@fewwwww), Kartin, Xiaohang Yu (@xhyumiracle) | -| [6](/cips/cip-6.md) | Enforce payment of the gas for a transaction based on a global minimum price | Callum Waters (@cmwaters) | -| [7](/cips/cip-7.md) | Managing Working Groups in the Celestia Improvement Proposal Process | Yaz Khoury | -| [8](/cips/cip-8.md) | Roles and Responsibilities of Working Group Chairs in the CIP Process | Yaz Khoury | -| [9](/cips/cip-9.md) | Packet Forward Middleware | Alex Cheng (@akc2267) | -| [10](/cips/cip-10.md) | Coordinated network upgrades | Callum Waters (@cmwaters) | -| [11](/cips/cip-11.md) | Refund unspent gas | Rootul Patel (@rootulp) | -| [12](/cips/cip-12.md) | ICS-29 Relayer Incentivisation Middleware | Susannah Evans @womensrights, Aditya Sripal @AdityaSripal | -| [13](/cips/cip-13.md) | On-chain Governance Parameters for Celestia Network | Yaz Khoury , Evan Forbes | -| [14](/cips/cip-14.md) | ICS-27 Interchain Accounts | Susannah Evans (@womensrights), Aidan Salzmann (@asalzmann), Sam Pochyly (@sampocs) | -| [15](/cips/cip-15.md) | Discourage memo usage | Rootul Patel (@rootulp), NashQueue (@nashqueue) | -| [16](/cips/cip-16.md) | Make Security Related Governance Parameters Immutable | Mingpei CAO (@caomingpei) | -| [17](/cips/cip-17.md) | Lemongrass Hardfork | Evan Forbes (@evan-forbes) | -| [18](/cips/cip-18.md) | Standardised Gas and Pricing Estimation Interface | Callum Waters (@cmwaters) | -| [19](/cips/cip-19.md) | Shwap Protocol | Hlib Kanunnikov (@Wondertan) | -| [20](/cips/cip-20.md) | Disable Blobstream module | Rootul Patel (@rootulp) | -| [21](/cips/cip-21.md) | Introduce blob type with verified signer | Callum Waters (@cmwaters) | -| [22](/cips/cip-22.md) | Removing the blobStartIndex | NashQueue (@Nashqueue) | -| [23](/cips/cip-23.md) | Coordinated prevote times | Callum Waters (@cmwaters) | +| [1](./cip-1.md) | Celestia Improvement Proposal Process and Guidelines | Yaz Khoury | +| [2](./cip-2.md) | CIP Editor Handbook | Yaz Khoury (@YazzyYaz) | +| [3](./cip-3.md) | Process for Approving External Resources | Yaz Khoury (@YazzyYaz) | +| [4](./cip-4.md) | Standardize data expiry time for pruned nodes | Mustafa Al-Bassam (@musalbas), Rene Lubov (@renaynay), Ramin Keene (@ramin) | +| [5](./cip-5.md) | Rename data availability to data publication | msfew (@fewwwww), Kartin, Xiaohang Yu (@xhyumiracle) | +| [6](./cip-6.md) | Enforce payment of the gas for a transaction based on a global minimum price | Callum Waters (@cmwaters) | +| [7](./cip-7.md) | Managing Working Groups in the Celestia Improvement Proposal Process | Yaz Khoury | +| [8](./cip-8.md) | Roles and Responsibilities of Working Group Chairs in the CIP Process | Yaz Khoury | +| [9](./cip-9.md) | Packet Forward Middleware | Alex Cheng (@akc2267) | +| [10](./cip-10.md) | Coordinated network upgrades | Callum Waters (@cmwaters) | +| [11](./cip-11.md) | Refund unspent gas | Rootul Patel (@rootulp) | +| [12](./cip-12.md) | ICS-29 Relayer Incentivisation Middleware | Susannah Evans @womensrights, Aditya Sripal @AdityaSripal | +| [13](./cip-13.md) | On-chain Governance Parameters for Celestia Network | Yaz Khoury , Evan Forbes | +| [14](./cip-14.md) | ICS-27 Interchain Accounts | Susannah Evans (@womensrights), Aidan Salzmann (@asalzmann), Sam Pochyly (@sampocs) | +| [15](./cip-15.md) | Discourage memo usage | Rootul Patel (@rootulp), NashQueue (@nashqueue) | +| [16](./cip-16.md) | Make Security Related Governance Parameters Immutable | Mingpei CAO (@caomingpei) | +| [17](./cip-17.md) | Lemongrass Hardfork | Evan Forbes (@evan-forbes) | +| [18](./cip-18.md) | Standardised Gas and Pricing Estimation Interface | Callum Waters (@cmwaters) | +| [19](./cip-19.md) | Shwap Protocol | Hlib Kanunnikov (@Wondertan) | +| [20](./cip-20.md) | Disable Blobstream module | Rootul Patel (@rootulp) | +| [21](./cip-21.md) | Introduce blob type with verified signer | Callum Waters (@cmwaters) | +| [22](./cip-22.md) | Removing the blobStartIndex | NashQueue (@Nashqueue) | +| [23](./cip-23.md) | Coordinated prevote times | Callum Waters (@cmwaters) | ## Contributing @@ -54,3 +54,13 @@ Files in this repo must conform to [markdownlint](https://github.com/DavidAnson/ ```shell markdownlint --config .markdownlint.yaml '**/*.md' ``` + +### Running the site locally + +Prerequisites: +1. Install [Rust](https://www.rust-lang.org/tools/install) +1. Install [mdbook](https://rust-lang.github.io/mdBook/guide/installation.html) + +```sh +mdbook serve -o +``` diff --git a/book.toml b/book.toml new file mode 100644 index 0000000..c284bd7 --- /dev/null +++ b/book.toml @@ -0,0 +1,22 @@ +[book] +authors = [] +language = "en" +multilingual = false +title = "Celestia Improvement Proposals (CIPs)" +description = "The Celestia Improvement Proposal (CIP) process and CIPs." +theme = "theme" +src = "cips" + +[output.html] +default-theme = "light" +preferred-dark-theme = "ayu" +git-repository-url = "https://github.com/celestiaorg/cips" +git-repository-icon = "fa-github" +edit-url-template = "https://github.com/celestiaorg/cips/edit/main/{path}" +cname = "cips.celestia.org" +smart-punctuation = true +theme = "theme" + +[output.html.fold] +enable = false +level = 0 diff --git a/cips/SUMMARY.md b/cips/SUMMARY.md new file mode 100644 index 0000000..7dc89a7 --- /dev/null +++ b/cips/SUMMARY.md @@ -0,0 +1,43 @@ +# Summary + +[README.md](../README.md) + +# CIPs + +- [CIP-1](./cip-1.md) +- [CIP-2](./cip-2.md) +- [CIP-3](./cip-3.md) +- [CIP-4](./cip-4.md) +- [CIP-5](./cip-5.md) +- [CIP-6](./cip-6.md) +- [CIP-7](./cip-7.md) +- [CIP-8](./cip-8.md) +- [CIP-9](./cip-9.md) +- [CIP-10](./cip-10.md) +- [CIP-11](./cip-11.md) +- [CIP-12](./cip-12.md) +- [CIP-13](./cip-13.md) +- [CIP-14](./cip-14.md) +- [CIP-15](./cip-15.md) +- [CIP-16](./cip-16.md) +- [CIP-17](./cip-17.md) +- [CIP-18](./cip-18.md) +- [CIP-19](./cip-19.md) +- [CIP-20](./cip-20.md) +- [CIP-21](./cip-21.md) +- [CIP-22](./cip-22.md) +- [CIP-23](./cip-23.md) + +# CIP template + +- [CIP Template](./cip-template.md) + +--- + +# Working Groups + +- [WGs overview](./wgs/README.md) + - [Data Availability](./wgs/da/README.md) + - [Interface](./wgs/interface/README.md) + - [ZK](./wgs/zk/README.md) + - [Overview of ZK Accounts](./wgs/zk/overview.md) diff --git a/assets/cip-15/memo-length.svg b/cips/assets/cip-15/memo-length.svg similarity index 100% rename from assets/cip-15/memo-length.svg rename to cips/assets/cip-15/memo-length.svg diff --git a/assets/cip-21/blob-v2-share-format.svg b/cips/assets/cip-21/blob-v2-share-format.svg similarity index 100% rename from assets/cip-21/blob-v2-share-format.svg rename to cips/assets/cip-21/blob-v2-share-format.svg diff --git a/cips/cip-1.md b/cips/cip-1.md index a0c7a07..4c421af 100644 --- a/cips/cip-1.md +++ b/cips/cip-1.md @@ -1,11 +1,10 @@ ---- -cip: 1 -title: Celestia Improvement Proposal Process and Guidelines -author: Yaz Khoury -status: Living -type: Meta -created: 2023-04-13 ---- +| cip | 1 | +| - | - | +| title | Celestia Improvement Proposal Process and Guidelines | +| author | Yaz Khoury | +| status | Living | +| type | Meta | +| created | 2023-04-13 | ## Table of Contents @@ -316,6 +315,8 @@ format. There is a [CIP template](./cip-template.md) to follow. Each CIP must begin with an RFC 822 style header preamble, preceded and followed by three hyphens (---). This header is also termed “front matter” by Jekyll. The headers must appear in the following order. +In order to display on the CIP site, the frontmatter must be +formatted in a markdown table. * `cip`: CIP number (this is determined by the CIP editor) * `title`: The CIP title is a few words, not a complete sentence diff --git a/cips/cip-10.md b/cips/cip-10.md index 601f4ff..1749686 100644 --- a/cips/cip-10.md +++ b/cips/cip-10.md @@ -1,14 +1,13 @@ ---- -cip: 10 -title: Coordinated network upgrades -description: Protocol for coordinating major network upgrades -author: Callum Waters (@cmwaters) -discussions-to: https://forum.celestia.org/t/cip-coordinated-network-upgrades/1367 -status: Final -type: Standards Track -category: Core -created: 2023-12-7 ---- +| cip | 10 | +| - | - | +| title | Coordinated network upgrades | +| description | Protocol for coordinating major network upgrades | +| author | Callum Waters (@cmwaters) | +| discussions-to | | +| status | Final | +| type | Standards Track | +| category | Core | +| created | 2023-12-07 | ## Abstract diff --git a/cips/cip-11.md b/cips/cip-11.md index 188fa9a..0ecf0be 100644 --- a/cips/cip-11.md +++ b/cips/cip-11.md @@ -1,15 +1,14 @@ ---- -cip: 11 -title: Refund unspent gas -description: Refund allocated but unspent gas to the transaction fee payer. -author: Rootul Patel (@rootulp) -discussions-to: https://forum.celestia.org/t/cip-refund-unspent-gas/1374 -status: Withdrawn -withdrawal-reason: The mitigation strategies for the security considerations were deemed too complex. -type: Standards Track -category: Core -created: 2023-12-07 ---- +| cip | 11 | +| - | - | +| title | Refund unspent gas | +| description | Refund allocated but unspent gas to the transaction fee payer. | +| author | Rootul Patel (@rootulp) | +| discussions-to | | +| status | Withdrawn | +| withdrawal-reason | The mitigation strategies for the security considerations were deemed too complex. | +| type | Standards Track | +| category | Core | +| created | 2023-12-07 | ## Abstract diff --git a/cips/cip-12.md b/cips/cip-12.md index a25e9de..be3707b 100644 --- a/cips/cip-12.md +++ b/cips/cip-12.md @@ -1,14 +1,13 @@ ---- -cip: 12 -title: ICS-29 Relayer Incentivisation Middleware -description: Adding ics-29 to Celestia to move towards sustainable relayer funding for IBC -author: Susannah Evans susannah@interchain.io @womensrights, Aditya Sripal aditya@interchain.io @AdityaSripal -discussions-to: https://forum.celestia.org/t/cip-relayer-incentivisation-middleware/1383 -status: Review -type: Standards Track -category: Core -created: 2023-12-12 ---- +| cip | 12 | +| - | - | +| title | ICS-29 Relayer Incentivisation Middleware | +| description | Adding ics-29 to Celestia to move towards sustainable relayer funding for IBC | +| author | Susannah Evans (@womensrights), Aditya Sripal (@AdityaSripal) | +| discussions-to | | +| status | Review | +| type | Standards Track | +| category | Core | +| created | 2023-12-12 | ## Abstract diff --git a/cips/cip-13.md b/cips/cip-13.md index cf84fdf..0d8c9f6 100644 --- a/cips/cip-13.md +++ b/cips/cip-13.md @@ -1,14 +1,13 @@ ---- -cip: 13 -title: On-chain Governance Parameters for Celestia Network -description: Specification of Mainnet governance parameters in the Celestia network -author: Yaz Khoury , Evan Forbes -discussions-to: https://forum.celestia.org/t/cip-13-mainnet-on-chain-governance-parameters/1390 -status: Draft -type: Standards Track -category: Core -created: 2023-12-08 ---- +| cip | 13 | +| - | - | +| title | On-chain Governance Parameters for Celestia Network | +| description | Specification of Mainnet governance parameters in the Celestia network | +| author | Yaz Khoury , Evan Forbes | +| discussions-to | | +| status | Draft | +| type | Standards Track | +| category | Core | +| created | 2023-12-08 | ## Abstract diff --git a/cips/cip-14.md b/cips/cip-14.md index c21ade7..99286e4 100644 --- a/cips/cip-14.md +++ b/cips/cip-14.md @@ -1,14 +1,13 @@ ---- -cip: 14 -title: ICS-27 Interchain Accounts -description: Adding ICS-27 Interchain Accounts to Celestia to enable cross-chain account management -author: Susannah Evans (@womensrights), Aidan Salzmann (@asalzmann), Sam Pochyly (@sampocs) -discussions-to: https://forum.celestia.org/t/moving-toward-safer-and-more-aligned-tia-liquid-staking/1422 -status: Final -type: Standards Track -category: Core -created: 2023-01-04 ---- +| cip | 14 | +| - | - | +| title | ICS-27 Interchain Accounts | +| description | Adding ICS-27 Interchain Accounts to Celestia to enable cross-chain account management | +| author | Susannah Evans (@womensrights), Aidan Salzmann (@asalzmann), Sam Pochyly (@sampocs) | +| discussions-to | | +| status | Final | +| type | Standards Track | +| category | Core | +| created | 2023-01-04 | ## Abstract diff --git a/cips/cip-15.md b/cips/cip-15.md index 8644075..12923d9 100644 --- a/cips/cip-15.md +++ b/cips/cip-15.md @@ -1,14 +1,13 @@ ---- -cip: 15 -title: Discourage memo usage -description: Discourage memo usage by modifying two auth params. -author: Rootul Patel (@rootulp), NashQueue (@nashqueue) -discussions-to: https://forum.celestia.org/t/cip-discourage-memo-usage/1508 -status: Draft -type: Standards Track -category: Core -created: 2024-01-21 ---- +| cip | 15 | +| - | - | +| title | Discourage memo usage | +| description | Discourage memo usage by modifying two auth params. | +| author | Rootul Patel (@rootulp), NashQueue (@nashqueue) | +| discussions-to | | +| status | Draft | +| type | Standards Track | +| category | Core | +| created | 2024-01-21 | ## Abstract @@ -45,10 +44,10 @@ This proposal seeks to realign incentives so that protocol builders are encourag ## Specification -Param | Current | Proposed --------------------------|---------|--------- -`auth.MaxMemoCharacters` | 256 | 16 -`auth.TxSizeCostPerByte` | 10 | 16 +| Param | Current | Proposed | +| -------------------------|---------|--------- | +| `auth.MaxMemoCharacters` | 256 | 16 | +| `auth.TxSizeCostPerByte` | 10 | 16 | ## Rationale @@ -58,13 +57,13 @@ Param | Current | Proposed 1. Crypto exchanges use memos to uniquely identify the user depositing into an exchange. - Exchange | Memo characters - ---------|---------------- - Binance | 13 - Bithumb | 10 - Coinbase | 10 - Gemini | 13 - KuCoin | 10 + | Exchange | Memo characters | + | ---------|----------------| + | Binance | 13 | + | Bithumb | 10 | + | Coinbase | 10 | + | Gemini | 13 | + | KuCoin | 10 | 2. Some IBC relayers include the Hermes version in their memo. For [example](https://www.mintscan.io/celestia/tx/5FED84C1DA596EFC7F9005866573B31CC593770C6022B16B60834F1D22365E49?height=556792): `mzonder | hermes 1.7.4+ab73266 (https://hermes.informal.systems)` which is 64 characters. @@ -75,19 +74,19 @@ Given this context, what is the distribution of memo lengths in practice? How of Observe that the distribution of memo lengths is spikey at 80 and 59 characters. The spike at 0 is expected (txs by default don't contain a memo). To learn why the other spikes exist, we have to inspect the most common memos: -Tx count | Memo length | Memo | Base64 decoded ----------|-------------|----------------------------------------------------------------------------------------------|------------------------------------------------------------- -4296795 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwLCJ0aWNrIjoiY2lhcyIsInAiOiJjaWEtMjAifQ== | data:,{"op":"mint","amt":10000,"tick":"cias","p":"cia-20"} -1874034 | 59 | data:,{"op":"mint","amt":100000,"tick":"TIMS","p":"tia-20"} | N/A -210265 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwMCwidGljayI6IlRJTVMiLCJwIjoidGlhLTIwIn0= | data:,{"op":"mint","amt":100000,"tick":"TIMS","p":"tia-20"} -78409 | 77 | Yours truly, ValiDAO \| hermes 1.7.1+0658526 (https://hermes.informal.systems) | N/A -66181 | 80 | ZGF0YToseyJwIjoiY2lhLTIwIiwib3AiOiJtaW50IiwidGljayI6ImNpYXMiLCJhbXQiOiIxMDAwMCJ9 | data:,{"p":"cia-20","op":"mint","tick":"cias","amt":"10000"} -65931 | 80 | ZGF0YToseyJwIjoic2VpLTIwIiwib3AiOiJtaW50IiwidGljayI6InNlaXMiLCJhbXQiOiIxMDAwIn0= | data:,{"p":"sei-20","op":"mint","tick":"seis","amt":"1000"} -53313 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwLCJ0aWNrIjoiQ0lBUyIsInAiOiJjcmMtMjAifQ== | data:,{"op":"mint","amt":10000,"tick":"CIAS","p":"crc-20"} -51378 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwLCJ0aWNrIjoiY2lhcyIsInAiOiJjcmMtMjAifQ== | data:,{"op":"mint","amt":10000,"tick":"cias","p":"crc-20"} -40568 | 17 | Delegate(rewards) | N/A -31932 | 91 | relayed by CryptoCrew Validators \| hermes 1.6.0+4b5b34ea2 (https://hermes.informal.systems) | N/A -31233 | 76 | Relayed by Stakin \| hermes 1.7.3+e529d2559 (https://hermes.informal.systems) | N/A +| Tx count | Memo length | Memo | Base64 decoded | +---------|-------------|----------------------------------------------------------------------------------------------||-------------------------------------------------------------| +| 4296795 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwLCJ0aWNrIjoiY2lhcyIsInAiOiJjaWEtMjAifQ== | data:,{"op":"mint","amt":10000,"tick":"cias","p":"cia-20"} | +| 1874034 | 59 | data:,{"op":"mint","amt":100000,"tick":"TIMS","p":"tia-20"} | N/A | +| 210265 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwMCwidGljayI6IlRJTVMiLCJwIjoidGlhLTIwIn0= | data:,{"op":"mint","amt":100000,"tick":"TIMS","p":"tia-20"} | +| 78409 | 77 | Yours truly, ValiDAO \| hermes 1.7.1+0658526 (https://hermes.informal.systems) | N/A | +| 66181 | 80 | ZGF0YToseyJwIjoiY2lhLTIwIiwib3AiOiJtaW50IiwidGljayI6ImNpYXMiLCJhbXQiOiIxMDAwMCJ9 | data:,{"p":"cia-20","op":"mint","tick":"cias","amt":"10000"} | +| 65931 | 80 | ZGF0YToseyJwIjoic2VpLTIwIiwib3AiOiJtaW50IiwidGljayI6InNlaXMiLCJhbXQiOiIxMDAwIn0= | data:,{"p":"sei-20","op":"mint","tick":"seis","amt":"1000"} | +| 53313 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwLCJ0aWNrIjoiQ0lBUyIsInAiOiJjcmMtMjAifQ== | data:,{"op":"mint","amt":10000,"tick":"CIAS","p":"crc-20"} | +| 51378 | 80 | ZGF0YToseyJvcCI6Im1pbnQiLCJhbXQiOjEwMDAwLCJ0aWNrIjoiY2lhcyIsInAiOiJjcmMtMjAifQ== | data:,{"op":"mint","amt":10000,"tick":"cias","p":"crc-20"} | +| 40568 | 17 | Delegate(rewards) | N/A | +| 31932 | 91 | relayed by CryptoCrew Validators \| hermes 1.6.0+4b5b34ea2 (https://hermes.informal.systems) | N/A | +| 31233 | 76 | Relayed by Stakin \| hermes 1.7.3+e529d2559 (https://hermes.informal.systems) | N/A | Observe that seven of the top ten are base64 encoded data. Three of the top ten are relayers. The last one: "Delegate(rewards)" appears to be the default memo applied via Keplr wallet for a delegate tx. @@ -98,21 +97,21 @@ Observe that seven of the top ten are base64 encoded data. Three of the top ten How expensive are transactions after a `auth.TxSizeCostPerByte` increase? -`auth.TxSizeCostPerByte` | MsgSend without memo | MsgSend with 256 character memo | MsgPFB with 256 byte blob --------------------------|----------------------|---------------------------------|-------------------------- -10 | 77004 gas | 79594 gas | 67765 gas -16 | 78906 gas | 83050 gas | 69763 gas -100 | 105534 gas | 131434 gas | 97735 gas -1000 | 390834 gas | 649834 gas | 397435 gas +| `auth.TxSizeCostPerByte` | MsgSend without memo | MsgSend with 256 character memo | MsgPFB with 256 byte blob | +|-------------------------|----------------------|---------------------------------|--------------------------| +| 10 | 77004 gas | 79594 gas | 67765 gas | +| 16 | 78906 gas | 83050 gas | 69763 gas | +| 100 | 105534 gas | 131434 gas | 97735 gas | +| 1000 | 390834 gas | 649834 gas | 397435 gas | Assuming `minimum-gas-prices = "0.002utia"` -`auth.TxSizeCostPerByte` | MsgSend without memo | MsgSend with 256 character memo | MsgPFB with 256 byte blob --------------------------|----------------------|---------------------------------|-------------------------- -10 | 154 utia | 159 utia | 135 utia -16 | 157 utia (+2%) | 166 utia (+4%) | 139 utia (+3%) -100 | 211 utia (+37%) | 262 utia (+65%) | 195 utia (+44%) -1000 | 781 utia (+407%) | 1299 utia (+716%) | 794 utia (+488%) +| `auth.TxSizeCostPerByte` | MsgSend without memo | MsgSend with 256 character memo | MsgPFB with 256 byte blob | +|-------------------------|----------------------|---------------------------------|--------------------------| +| 10 | 154 utia | 159 utia | 135 utia | +| 16 | 157 utia (+2%) | 166 utia (+4%) | 139 utia (+3%) | +| 100 | 211 utia (+37%) | 262 utia (+65%) | 195 utia (+44%) | +| 1000 | 781 utia (+407%) | 1299 utia (+716%) | 794 utia (+488%) | Therefore, increasing from 10 to 16 is a conserative increase. @@ -120,10 +119,10 @@ Therefore, increasing from 10 to 16 is a conserative increase. **What do other blockchains use for these params?** -Param | Celestia | Cosmos Hub | Osmosis --------------------------|----------|------------|-------- -`auth.MaxMemoCharacters` | 256 | 512 | 256 -`auth.TxSizeCostPerByte` | 10 | 10 | 10 +| Param | Celestia | Cosmos Hub | Osmosis | +|-------------------------|----------|------------|--------| +| `auth.MaxMemoCharacters` | 256 | 512 | 256 | +| `auth.TxSizeCostPerByte` | 10 | 10 | 10 | **How does this proposal affect [ICS-020](https://github.com/cosmos/ibc/blob/0da326fbedfd2c96aad807ed25e6eafd1399db07/spec/app/ics-020-fungible-token-transfer/README.md?plain=1#L46) memos?** diff --git a/cips/cip-16.md b/cips/cip-16.md index 3a6b23f..466301e 100644 --- a/cips/cip-16.md +++ b/cips/cip-16.md @@ -1,15 +1,14 @@ ---- -cip: 16 -title: Make Security Related Governance Parameters Immutable -description: Consensus-related parameters should not be modified via on-chain governance in the Celestia network. -author: Mingpei CAO (@caomingpei) -discussions-to: https://forum.celestia.org/t/cip-make-security-related-governance-parameters-immutable/1566 -status: Draft -type: Standards Track -category: Core -created: 2024-02-07 -requires: CIP-13 ---- +| cip | 16 | +| - | - | +| title | Make Security Related Governance Parameters Immutable | +| description | Consensus-related parameters should not be modified via on-chain governance in the Celestia network. | +| author | Mingpei CAO (@caomingpei) | +| discussions-to | | +| status | Draft | +| type | Standards Track | +| category | Core | +| created | 2024-02-07 | +| requires | CIP-13 | ## Abstract diff --git a/cips/cip-17.md b/cips/cip-17.md index c3c6143..f71ccb0 100644 --- a/cips/cip-17.md +++ b/cips/cip-17.md @@ -1,14 +1,13 @@ ---- -cip: 17 -title: Lemongrass Hardfork -description: Reference specifications included in the Lemongrass Hardfork -author: Evan Forbes (@evan-forbes) -discussions-to: https://forum.celestia.org/t/lemongrass-hardfork/1589 -status: Final -type: Meta -created: 2024-02-16 -requires: CIP-6, CIP-9, CIP-10, CIP-14, CIP-20 ---- +| cip | 17 | +| - | - | +| title | Lemongrass Hardfork | +| description | Reference specifications included in the Lemongrass Hardfork | +| author | Evan Forbes (@evan-forbes) | +| discussions-to | | +| status | Final | +| type | Meta | +| created | 2024-02-16 | +| requires | CIP-6, CIP-9, CIP-10, CIP-14, CIP-20 | ## Abstract diff --git a/cips/cip-18.md b/cips/cip-18.md index 65fa50d..5211609 100644 --- a/cips/cip-18.md +++ b/cips/cip-18.md @@ -1,14 +1,13 @@ ---- -cip: 18 -title: Standardised Gas and Pricing Estimation Interface -description: A standardised interface for estimating gas usage and gas pricing for transactions -author: Callum Waters (@cmwaters) -discussions-to: https://forum.celestia.org/t/cip-standardised-gas-and-pricing-estimation-interface/1621 -status: Review -type: Standards Track -category: Interface -created: 2024-03-12 ---- +| cip | 18 | +| - | - | +| title | Standardised Gas and Pricing Estimation Interface | +| description | A standardised interface for estimating gas usage and gas pricing for transactions | +| author | Callum Waters (@cmwaters) | +| discussions-to | | +| status | Review | +| type | Standards Track | +| category | Interface | +| created | 2024-03-12 | ## Abstract diff --git a/cips/cip-19.md b/cips/cip-19.md index 0e030eb..1de0424 100644 --- a/cips/cip-19.md +++ b/cips/cip-19.md @@ -1,14 +1,13 @@ ---- -cip: 19 -title: Shwap Protocol -description: Shwap - a new messaging framework for DA and sampling -author: Hlib Kanunnikov (@Wondertan) -discussions-to: https://forum.celestia.org/t/cip-shwap-protocol/1551 -status: Review -type: Standards Track -category: Data Availability, Networking -created: 2024-02-02 ---- +| cip | 19 | +| - | - | +| title | Shwap Protocol | +| description | Shwap - a new messaging framework for DA and sampling | +| author | Hlib Kanunnikov (@Wondertan) | +| discussions-to | | +| status | Review | +| type | Standards Track | +| category | Data Availability, Networking | +| created | 2024-02-02 | ## Abstract diff --git a/cips/cip-2.md b/cips/cip-2.md index d49d4ed..c0b1421 100644 --- a/cips/cip-2.md +++ b/cips/cip-2.md @@ -1,15 +1,14 @@ ---- -cip: 2 -title: CIP Editor Handbook -description: Handy reference for CIP editors and those who want to become one -author: Yaz Khoury (@YazzyYaz) -discussions-to: https://forum.celestia.org -status: Draft -type: Informational -created: 2023-04-13 -requires: 1 ---- - +| cip | 2 | +| - | - | +| title | CIP Editor Handbook | +| description | Handy reference for CIP editors and those who want to become one | +| author | Yaz Khoury (@YazzyYaz) | +| discussions-to | | +| status | Draft | +| type | Informational | +| created | 2023-04-13 | +| requires | CIP-1 | + ## Abstract CIP stands for Celestia Improvement Proposal. A CIP is a design document providing information to the Celestia community, or describing a new feature for Celestia or its processes or environment. The CIP should provide a concise technical specification of the feature and a rationale for the feature. The CIP author is responsible for building consensus within the community and documenting dissenting opinions. @@ -34,4 +33,3 @@ Anyone meeting the above requirements may make a pull request adding themselves ## Copyright Copyright and related rights waived via [CC0](../LICENSE). - diff --git a/cips/cip-20.md b/cips/cip-20.md index 104cb45..41e7e28 100644 --- a/cips/cip-20.md +++ b/cips/cip-20.md @@ -1,14 +1,13 @@ ---- -cip: 20 -title: Disable Blobstream module -description: Disable the Blobstream state machine module -author: Rootul Patel (@rootulp) -discussions-to: https://forum.celestia.org/t/cip-disable-blobstream-module/1693 -status: Final -type: Standards Track -category: Core -created: 2024-04-16 ---- +| cip | 20 | +| - | - | +| title | Disable Blobstream module | +| description | Disable the Blobstream state machine module | +| author | Rootul Patel (@rootulp) | +| discussions-to | | +| status | Final | +| type | Standards Track | +| category | Core | +| created | 2024-04-16 | ## Abstract diff --git a/cips/cip-21.md b/cips/cip-21.md index 29b86e0..6bede3b 100644 --- a/cips/cip-21.md +++ b/cips/cip-21.md @@ -1,14 +1,13 @@ ---- -cip: 21 -title: Introduce blob type with verified signer -description: Introduce a new blob type that can be submitted whereby the signer address is included and verified. -author: Callum Waters (@cmwaters) -discussions-to: https://forum.celestia.org/t/cip-blobs-with-verified-author -status: Review -type: Standards Track -category: Core -created: 2024-05-22 ---- +| cip | 21 | +| - | - | +| title | Introduce blob type with verified signer | +| description | Introduce a new blob type that can be submitted whereby the signer address is included and verified. | +| author | Callum Waters (@cmwaters) | +| discussions-to | | +| status | Review | +| type | Standards Track | +| category | Core | +| created | 2024-05-22 | ## Abstract diff --git a/cips/cip-22.md b/cips/cip-22.md index b60d00e..157a697 100644 --- a/cips/cip-22.md +++ b/cips/cip-22.md @@ -1,13 +1,12 @@ ---- -cip: 22 -title: Removing the blobStartIndex -author: NashQueue @Nashqueue -discussions-to: https://forum.celestia.org/t/achieving-trust-minimized-light-clients-through-zk-proofs-instead-of-fraud-proofs/1759 -status: Draft -type: Standards Track -category: Core -created: 2024-06-26 ---- +| cip | 22 | +| - | - | +| title | Removing the blobStartIndex | +| author | NashQueue (@Nashqueue) | +| discussions-to | | +| status | Draft | +| type | Standards Track | +| category | Core | +| created | 2024-06-26 | ## Abstract diff --git a/cips/cip-23.md b/cips/cip-23.md index 8f7ab90..7c6c842 100644 --- a/cips/cip-23.md +++ b/cips/cip-23.md @@ -1,13 +1,13 @@ ---- -title: Coordinated prevote times -description: Scheduled prevote times for consistent blocks -author: Callum Waters (@cmwaters) -discussions-to: https://forum.celestia.org/t/coordinated-start-time-intervals/1768 -status: Draft -type: Standards Track -category: Core -created: 2024-07-12 ---- +| cip | 23 | +| - | - | +| title | Coordinated prevote times | +| description | Scheduled prevote times for consistent blocks | +| author | Callum Waters (@cmwaters) | +| discussions-to | | +| status | Draft | +| type | Standards Track | +| category | Core | +| created | 2024-07-12 | ## Abstract diff --git a/cips/cip-3.md b/cips/cip-3.md index 97630b6..ea4f7a9 100644 --- a/cips/cip-3.md +++ b/cips/cip-3.md @@ -1,15 +1,13 @@ ---- -cip: 3 -title: Process for Approving External Resources -description: Requirements and process for allowing new origins of external resources -author: Yaz Khoury (@YazzyYaz) -discussions-to: https://forum.celestia.org -status: Draft -type: Meta -created: 2023-04-13 -requires: 1 ---- - +| cip | 3 | +| - | - | +| title | Process for Approving External Resources | +| description | Requirements and process for allowing new origins of external resources | +| author | Yaz Khoury (@YazzyYaz) | +| discussions-to | | +| status | Draft | +| type | Meta | +| created | 2023-04-13 | +| requires | CIP-1 | ## Abstract @@ -66,4 +64,3 @@ The Celestia ecosystem is built on openness and free access, and the CIP process ## Copyright Copyright and related rights waived via [CC0](../LICENSE). - diff --git a/cips/cip-4.md b/cips/cip-4.md index d77bda3..174769d 100644 --- a/cips/cip-4.md +++ b/cips/cip-4.md @@ -1,14 +1,13 @@ ---- -cip: 4 -title: Standardize data expiry time for pruned nodes -description: Standardize default data expiry time for pruned nodes to 30 days + 1 hour worth of seconds (2595600 seconds). -author: Mustafa Al-Bassam (@musalbas), Rene Lubov (@renaynay), Ramin Keene (@ramin) -discussions-to: https://forum.celestia.org/t/cip-standardize-data-expiry-time-for-pruned-nodes/1326 -status: Final -type: Standards Track -category: Data Availability -created: 2023-11-23 ---- +| cip | 4 | +| - | - | +| title | Standardize data expiry time for pruned nodes | +| description | Standardize default data expiry time for pruned nodes to 30 days + 1 hour worth of seconds (2595600 seconds). | +| author | Mustafa Al-Bassam (@musalbas), Rene Lubov (@renaynay), Ramin Keene (@ramin) | +| discussions-to | | +| status | Final | +| type | Standards Track | +| category | Data Availability | +| created | 2023-11-23 | ## Abstract diff --git a/cips/cip-5.md b/cips/cip-5.md index b3a3fbc..5f5d663 100644 --- a/cips/cip-5.md +++ b/cips/cip-5.md @@ -1,13 +1,12 @@ ---- -cip: 5 -title: Rename data availability to data publication -description: Renaming data avaiability to data publication to better reflect the message -author: msfew (@fewwwww) , Kartin , Xiaohang Yu (@xhyumiracle) -discussions-to: https://forum.celestia.org/t/informational-cip-rename-data-availability-to-data-publication/1287 -status: Review -type: Informational -created: 2023-11-06 ---- +| cip | 5 | +| - | - | +| title | Rename data availability to data publication | +| description | Renaming data availability to data publication to better reflect the message | +| author | msfew (@fewwwww) , Kartin , Xiaohang Yu (@xhyumiracle) | +| discussions-to | | +| status | Review | +| type | Informational | +| created | 2023-11-06 | ## Abstract diff --git a/cips/cip-6.md b/cips/cip-6.md index 42654b2..a780c79 100644 --- a/cips/cip-6.md +++ b/cips/cip-6.md @@ -1,14 +1,13 @@ ---- -cip: 6 -title: Mininum gas price enforcement -description: Enforce payment of the gas for a transaction based on a governance modifiable global minimum gas price -author: Callum Waters (@cmwaters) -discussions-to: https://forum.celestia.org/t/cip-006-price-enforcement/1351 -status: Final -type: Standards Track -category: Core -created: 2023-11-30 ---- +| cip | 6 | +| - | - | +| title | Mininum gas price enforcement | +| description | Enforce payment of the gas for a transaction based on a governance modifiable global minimum gas price | +| author | Callum Waters (@cmwaters) | +| discussions-to | | +| status | Final | +| type | Standards Track | +| category | Core | +| created | 2023-11-30 | ## Abstract diff --git a/cips/cip-7.md b/cips/cip-7.md index df886b4..d6efbe4 100644 --- a/cips/cip-7.md +++ b/cips/cip-7.md @@ -1,13 +1,12 @@ ---- -cip: 7 -title: Managing Working Groups in the Celestia Improvement Proposal Process -description: A guide to effectively managing working groups within the Celestia Improvement Proposal process. -author: Yaz Khoury -discussions-to: https://forum.celestia.org/t/cip-for-working-group-best-practices/1343 -status: Draft -type: Informational -created: 2023-11-29 ---- +| cip | 7 | +| - | - | +| title | Managing Working Groups in the Celestia Improvement Proposal Process | +| description | A guide to effectively managing working groups within the Celestia Improvement Proposal process. | +| author | Yaz Khoury | +| discussions-to | | +| status | Draft | +| type | Informational | +| created | 2023-11-29 | ## Abstract diff --git a/cips/cip-8.md b/cips/cip-8.md index 85cbfa1..bc8c690 100644 --- a/cips/cip-8.md +++ b/cips/cip-8.md @@ -1,13 +1,12 @@ ---- -cip: 8 -title: Roles and Responsibilities of Working Group Chairs in the CIP Process -description: Outlining the key roles and responsibilities of working group chairs within the Celestia Improvement Proposal process. -author: Yaz Khoury -discussions-to: https://forum.celestia.org/t/cip-for-wg-chair-responsibilities/1344 -status: Draft -type: Informational -created: 2023-11-29 ---- +| cip | 8 | +| - | - | +| title | Roles and Responsibilities of Working Group Chairs in the CIP Process | +| description | Outlining the key roles and responsibilities of working group chairs within the Celestia Improvement Proposal process. | +| author | Yaz Khoury | +| discussions-to | | +| status | Draft | +| type | Informational | +| created | 2023-11-29 | ## Abstract diff --git a/cips/cip-9.md b/cips/cip-9.md index 30bcb06..a2b361d 100644 --- a/cips/cip-9.md +++ b/cips/cip-9.md @@ -1,14 +1,13 @@ ---- -cip: 9 -title: Packet Forward Middleware -description: Adopt Packet Forward Middleware for multi-hop IBC and path unwinding -author: Alex Cheng (@akc2267) -discussions-to: https://forum.celestia.org/t/cip-packet-forward-middleware/1359 -status: Final -type: Standards Track -category: Core -created: 2023-12-01 ---- +| cip | 9 | +| - | - | +| title | Packet Forward Middleware | +| description | Adopt Packet Forward Middleware for multi-hop IBC and path unwinding | +| author | Alex Cheng (@akc2267) | +| discussions-to | | +| status | Final | +| type | Standards Track | +| category | Core | +| created | 2023-12-01 | ## Abstract diff --git a/cips/cip-template.md b/cips/cip-template.md index 7fc42fc..2ac8295 100644 --- a/cips/cip-template.md +++ b/cips/cip-template.md @@ -1,14 +1,14 @@ ---- -title: The CIP title is a few words, not a complete sentence -description: Description is one full (short) sentence -author: a comma separated list of the author’s or authors’ name + GitHub username (in parenthesis), or name and email (in angle brackets). Example, FirstName LastName (@GitHubUsername), FirstName LastName foo@bar.com, FirstName (@GitHubUsername) and GitHubUsername (@GitHubUsername) -discussions-to: URL -status: Draft -type: Standards Track, Meta, or Informational -category: Core, Data Availability, Networking, Interface, or CRC. Only required for Standards Track. Otherwise, remove this field. -created: Date created on, in ISO 8601 (yyyy-mm-dd) format -requires: CIP number(s). Only required when you reference an CIP in the `Specification` section. Otherwise, remove this field. ---- +| cip | XX (assigned by Editors) | +| - | - | +| title | The CIP title is a few words, not a complete sentence | +| description | Description is one full (short) sentence | +| author | a comma separated list of the author’s or authors’ name + GitHub username (in parenthesis), or name and email (in angle brackets). Example, FirstName LastName (@GitHubUsername), FirstName LastName , FirstName (@GitHubUsername) and GitHubUsername (@GitHubUsername) | +| discussions-to | URL | +| status | Draft | +| type | Standards Track, Meta, or Informational | +| category | Core, Data Availability, Networking, Interface, or CRC. Only required for Standards Track. Otherwise, remove this field. | +| created | Date created on, in ISO 8601 (yyyy-mm-dd) format | +| requires | CIP number(s). Only required when you reference a CIP in the Specification section. Otherwise, remove this field. | > Note: **READ CIP-1 BEFORE USING THIS TEMPLATE!** diff --git a/cips/wgs/README.md b/cips/wgs/README.md new file mode 100644 index 0000000..f016321 --- /dev/null +++ b/cips/wgs/README.md @@ -0,0 +1,4 @@ +# Working Groups Directory + +Here you will find all working groups +and their meeting notes and recordings if available. diff --git a/wgs/da/README.md b/cips/wgs/da/README.md similarity index 95% rename from wgs/da/README.md rename to cips/wgs/da/README.md index 0812875..8ae9c48 100644 --- a/wgs/da/README.md +++ b/cips/wgs/da/README.md @@ -1,4 +1,4 @@ -# DA Working Group +# Data Availability (DA) Working Group ## Meetings diff --git a/wgs/interface/README.md b/cips/wgs/interface/README.md similarity index 100% rename from wgs/interface/README.md rename to cips/wgs/interface/README.md diff --git a/wgs/zk/README.md b/cips/wgs/zk/README.md similarity index 99% rename from wgs/zk/README.md rename to cips/wgs/zk/README.md index 1f5a613..9339bd7 100644 --- a/wgs/zk/README.md +++ b/cips/wgs/zk/README.md @@ -1,4 +1,4 @@ -# ZK Working Group +# Zero Knowledge (ZK) Working Group ## Meetings diff --git a/wgs/zk/overview.md b/cips/wgs/zk/overview.md similarity index 100% rename from wgs/zk/overview.md rename to cips/wgs/zk/overview.md diff --git a/theme/favicon.ico b/theme/favicon.ico new file mode 100644 index 0000000..32e9a6a Binary files /dev/null and b/theme/favicon.ico differ diff --git a/theme/favicon.png b/theme/favicon.png new file mode 100644 index 0000000..b97a765 Binary files /dev/null and b/theme/favicon.png differ diff --git a/theme/favicon.svg b/theme/favicon.svg new file mode 100644 index 0000000..0338485 --- /dev/null +++ b/theme/favicon.svg @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/theme/head.hbs b/theme/head.hbs new file mode 100644 index 0000000..8477105 --- /dev/null +++ b/theme/head.hbs @@ -0,0 +1 @@ + diff --git a/wgs/README.md b/wgs/README.md deleted file mode 100644 index a7028e8..0000000 --- a/wgs/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Working Groups Directory - -Here you will find all working groups -and their meeting notes and recordings if available. - -## Working Groups - -- [DA Working Group](./da/README.md) -- [Interface Working Group](./interface/README.md) -- [ZK Working Group](./zk/README.md)