Skip to content

Commit c08a84d

Browse files
authored
Merge pull request #1507 from Guayaba221/main
fix correction docs
2 parents 3b20a99 + e3fbf86 commit c08a84d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

pages/stack/design-principles.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ Extensibility is a key design principle that unlocks the superpower of collabora
115115

116116
The OP Stack is a decentralized software stack that anyone can contribute to.
117117
If you're interested in contributing to the OP Stack, check out [the Contributing section on our Community pages](https://community.optimism.io).
118-
Of course, software that has impact for the Optimism Collective is eligible to receive [Retroactive Public Goods Funding](https://app.optimism.io/retropgf). Build for the OP Stack — get rewarded for writing great open source software. What's not to love?
118+
Of course, software that has an impact for the Optimism Collective is eligible to receive [Retroactive Public Goods Funding](https://app.optimism.io/retropgf). Build for the OP Stack — get rewarded for writing great open source software. What's not to love?

pages/stack/dev-net.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ cast send "<standard bridge address>" --private-key bcdf20249abf0ed6d944c0288fad
179179
--value "<amount in ETH>ether" --rpc-url "http://127.0.0.1:<rpc port of el-1-geth-teku service>"
180180
```
181181

182-
The output should looks like below:
182+
The output should look like below:
183183

184184

185185
```

pages/stack/transactions/deposit-flow.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ However, the L2 processing of the transaction is performed by the Optimism nodes
6262
If there were no cost attached, an attacker could submit a transaction that had high execution costs on L2, and that way perform a denial of service attack.
6363

6464
To avoid this DoS vector, [`depositTransaction`](https://github.com/ethereum-optimism/optimism/blob/62c7f3b05a70027b30054d4c8974f44000606fb7/packages/contracts-bedrock/contracts/L1/OptimismPortal.sol#L422-L483), and the functions that call it, require a gas limit parameter.
65-
[This gas limit is encoded into the \[\]`TransactionDeposited` event](https://github.com/ethereum-optimism/optimism/blob/62c7f3b05a70027b30054d4c8974f44000606fb7/packages/contracts-bedrock/contracts/L1/OptimismPortal.sol#L469-L477), and used as the gas limit for the user deposit transaction on L2.
65+
[This gas limit is encoded into the `TransactionDeposited` event](https://github.com/ethereum-optimism/optimism/blob/62c7f3b05a70027b30054d4c8974f44000606fb7/packages/contracts-bedrock/contracts/L1/OptimismPortal.sol#L469-L477), and used as the gas limit for the user deposit transaction on L2.
6666

6767
This L2 gas is paid for by burning L1 gas [here](https://github.com/ethereum-optimism/optimism/blob/62c7f3b05a70027b30054d4c8974f44000606fb7/packages/contracts-bedrock/contracts/L1/ResourceMetering.sol#L162).
6868

6969
## Replaying messages
7070

71-
Deposits transactions can fail due to several reasons:
71+
Deposit transactions can fail due to several reasons:
7272

7373
* Not enough gas provided.
7474
* The state on L2 does not allow the transaction to be successful.

pages/stack/transactions/fees.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Read more about the base fee in the [Ethereum.org documentation](https://ethereu
5252
Just like on Ethereum, OP Mainnet transactions can specify a **priority fee**.
5353
This priority fee is a price per unit of gas that is paid on top of the base fee.
5454
For example, if the block base fee is 1 gwei and the transaction specifies a priority fee of 1 gwei, the total price per unit of gas is 2 gwei.
55-
The priority fee(i.e. tip) is an optional component of the execution gas fee and can technically be set to 0.
55+
The priority fee (i.e. tip) is an optional component of the execution gas fee and can technically be set to 0.
5656
However, while EIP-1559 does not define a minimum priority fee, certain wallets and mempool implementations (like Geth) may enforce a minimum value. For instance, Geth typically defaults to a minimum priority fee of 1 gwei, but this can be configured to other values.
5757

5858
**The OP Mainnet sequencer will prioritize transactions with a higher priority fee** and execute them before any transactions with a lower priority fee.

pages/superchain/superchain-registry.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This configuration targets the Optimism Collective's highest bar for security, u
3535
You can find more details in the [Standard Rollup Charter documentation](/superchain/blockspace-charter).
3636

3737
<Callout type="info">
38-
We **strongly** recommend using the [op-deployer](/operators/chain-operators/tools/op-deployer) to deploy L1 contracts and generate the L2 genesis file that meet the configuration requirements outlined in the [Standard Rollup Charter](/superchain/blockspace-charter).
38+
We **strongly** recommend using the [op-deployer](/operators/chain-operators/tools/op-deployer) to deploy L1 contracts and generate the L2 genesis file that meets the configuration requirements outlined in the [Standard Rollup Charter](/superchain/blockspace-charter).
3939
</Callout>
4040

4141
## Joining the Registry

0 commit comments

Comments
 (0)