diff --git a/src/components/RPCTable/RPCTable.astro b/src/components/RPCTable/RPCTable.astro index 399b2ed2a..425f7cd23 100644 --- a/src/components/RPCTable/RPCTable.astro +++ b/src/components/RPCTable/RPCTable.astro @@ -54,11 +54,6 @@ chainData = chainData || { url: "https://scrollscan.com", standard: "EIP3091", }, - { - name: "Blockscout", - url: "https://blockscout.scroll.io", - standard: "EIP3091", - }, ], parent: { type: "L2", diff --git a/src/content/docs/en/developers/transaction-fees-on-scroll.mdx b/src/content/docs/en/developers/transaction-fees-on-scroll.mdx index 6eaed9c25..75cc1d056 100644 --- a/src/content/docs/en/developers/transaction-fees-on-scroll.mdx +++ b/src/content/docs/en/developers/transaction-fees-on-scroll.mdx @@ -60,7 +60,7 @@ Transactions aren't committed 1-by-1 -- they are collected in batches of blocks ### Estimating the L1 Data Fee -Scroll has a pre-deployed `L1GasPriceOracle`, accessible on both Scroll and Scroll Sepolia at ([`0x5300000000000000000000000000000000000002`](https://sepolia-blockscout.scroll.io/address/0x5300000000000000000000000000000000000002)). It provides a `getL1Fee` method to estimate the L1 data fee for a given transaction's raw data. +Scroll has a pre-deployed `L1GasPriceOracle`, accessible on both Scroll and Scroll Sepolia at ([`0x5300000000000000000000000000000000000002`](https://sepolia.scrollscan.com/address/0x5300000000000000000000000000000000000002)). It provides a `getL1Fee` method to estimate the L1 data fee for a given transaction's raw data. ```solidity function getL1Fee(bytes memory _data) external view override returns (uint256); diff --git a/src/content/docs/en/developers/verifying-smart-contracts.mdx b/src/content/docs/en/developers/verifying-smart-contracts.mdx index be119ed8c..abb4d5485 100644 --- a/src/content/docs/en/developers/verifying-smart-contracts.mdx +++ b/src/content/docs/en/developers/verifying-smart-contracts.mdx @@ -17,12 +17,10 @@ After deploying your smart contracts, it's important to verify your code on a bl ## Using Developer Tools -Most smart contract tooling has plugins for verifying your contracts easily on Etherscan. Blockscout supports Etherscan's contract verification APIs, so it's straightforward to use these tools using the APIs of either of these block explorers. +Most smart contract tooling has plugins for verifying your contracts easily on Etherscan. -| Network | Scroll | Scroll Sepolia | -| ---------- | -------------------------------- | ---------------------------------------- | -| Scrollscan | https://api.scrollscan.com/api | https://api-sepolia.scrollscan.com/api | -| Blockscout | https://blockscout.scroll.io/api | https://sepolia-blockscout.scroll.io/api | +- Scroll Mainnet: https://api.scrollscan.com/api +- Scroll Sepolia: https://api-sepolia.scrollscan.com/api