Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chain-operators/guides/features/setting-da-footprint.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ The steps below explain how to update the `daFootprintGasScalar` parameter on-ch

Example (using [cast](https://getfoundry.sh/cast/reference/cast/)):

```bash title="Cast"
```bash title="cast"
cast call -r <L1_RPC_URL> <SYSTEM_CONFIG_PROXY_ADDRESS> "daFootprintGasScalar()"
```

And on your L2 chain you can query the scalar at the [L1Block predeploy](https://specs.optimism.io/protocol/predeploys.html#l1block) to confirm the new scalar has been propagated to the chain:

```bash title="Cast"
```bash title="cast"
cast call -r <L2_RPC_URL> 0x4200000000000000000000000000000000000015 "daFootprintGasScalar()"
```
</Step>
Expand Down
4 changes: 2 additions & 2 deletions chain-operators/guides/features/setting-min-base-fee.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The steps below explain how to update the `minBaseFee` parameter on-chain using

Example (using [cast](https://getfoundry.sh/cast/reference/cast/)):

```
```bash title="cast"
cast send <SYSTEM_CONFIG_PROXY_ADDRESS> "setMinBaseFee(uint64)" 100000
```
</Step>
Expand All @@ -52,7 +52,7 @@ The steps below explain how to update the `minBaseFee` parameter on-chain using

Example (using [cast](https://getfoundry.sh/cast/reference/cast/)):

```
```bash title="cast"
cast call <SYSTEM_CONFIG_PROXY_ADDRESS> "minBaseFee()"
```
</Step>
Expand Down