diff --git a/chain-operators/guides/features/setting-da-footprint.mdx b/chain-operators/guides/features/setting-da-footprint.mdx index c996538da..73e580019 100644 --- a/chain-operators/guides/features/setting-da-footprint.mdx +++ b/chain-operators/guides/features/setting-da-footprint.mdx @@ -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 "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 0x4200000000000000000000000000000000000015 "daFootprintGasScalar()" ``` diff --git a/chain-operators/guides/features/setting-min-base-fee.mdx b/chain-operators/guides/features/setting-min-base-fee.mdx index 4640bd838..36e3c5990 100644 --- a/chain-operators/guides/features/setting-min-base-fee.mdx +++ b/chain-operators/guides/features/setting-min-base-fee.mdx @@ -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 "setMinBaseFee(uint64)" 100000 ``` @@ -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 "minBaseFee()" ```