Skip to content

Commit 613d5a4

Browse files
authored
chore: use hyphen with EIP
1 parent a08799e commit 613d5a4

File tree

1 file changed

+4
-4
lines changed
  • public/content/developers/docs/data-availability/blockchain-data-storage-strategies

1 file changed

+4
-4
lines changed

public/content/developers/docs/data-availability/blockchain-data-storage-strategies/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lang: en
66

77
There are several ways to store information on the blockchain:
88

9-
- EIP 4844 blobs
9+
- EIP-4844 blobs
1010
- Calldata
1111
- Offchain with L1 mechanisms
1212
- Contract "code"
@@ -32,9 +32,9 @@ There are three attributes we'd like to have for data.
3232
- *Availability*, the information is available to any authorized entity. On the blockchain, this is usually achieved by having the information available on every [full node](https://ethereum.org/developers/docs/nodes-and-clients#full-node).
3333

3434

35-
## EIP 4844 blobs {#eip-4844-blobs}
35+
## EIP-4844 blobs {#eip-4844-blobs}
3636

37-
Starting with [the Dencun hardfork](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/beacon-chain.md) the Ethereum blockchain includes [EIP 4844](https://eips.ethereum.org/EIPS/eip-4844), which adds to Ethereum data blobs with a limited lifetime (initially about [18 days](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/p2p-interface.md#configuration)). These blobs are priced separately from the [execution gas](/developers/docs/gas), although using a similar mechanism. They are a cheap way to post temporary data.
37+
Starting with [the Dencun hardfork](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/beacon-chain.md) the Ethereum blockchain includes [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844), which adds to Ethereum data blobs with a limited lifetime (initially about [18 days](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/p2p-interface.md#configuration)). These blobs are priced separately from the [execution gas](/developers/docs/gas), although using a similar mechanism. They are a cheap way to post temporary data.
3838

3939
The main use case for EIP-4844 blobs is for rollups to publish their transactions. [Optimistic rollups](/developers/docs/scaling/optimistic-rollups) need to publish the transactions on their blockchains. Those transactions have to be available to anybody during the [challenge period](https://docs.optimism.io/connect/resources/glossary#challenge-period) to enable [validators](https://docs.optimism.io/connect/resources/glossary#validator) to fix the mistake if the rollup's [sequencer](https://docs.optimism.io/connect/resources/glossary#sequencer) posts an incorrect state root.
4040

@@ -111,7 +111,7 @@ This table summarizes the difference options, their advantages and disadvantages
111111

112112
| Storage type | Source of data | Availability guarantee | Onchain availability | Additional limitations
113113
| - | - | - | - | - |
114-
| EIP 4844 blobs | Offchain | Ethereum guarantee for [~18 days](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/p2p-interface.md#configuration) | Only hash is available | |
114+
| EIP-4844 blobs | Offchain | Ethereum guarantee for [~18 days](https://github.com/ethereum/consensus-specs/blob/dev/specs/deneb/p2p-interface.md#configuration) | Only hash is available | |
115115
| Calldata | Offchain | Ethereum guarantee forever (part of the blockchain) | Only available if written to a contract, and at that transaction |
116116
| Offchain with L1 mechanisms | Offchain | "One honest verifier" guarantee during the challenge period | Hash only | Guaranteed by the challenge mechanism, only during the challenge period
117117
| Contract code | Onchain or offchain | Ethereum guarantee forever (part of the blockchain) | Yes | Written to a "random" address, cannot start with `0xEF`

0 commit comments

Comments
 (0)