You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/en/developers/transaction-fees-on-scroll.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ Transactions aren't committed 1-by-1 -- they are collected in batches of blocks
60
60
61
61
### Estimating the L1 Data Fee
62
62
63
-
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.
63
+
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.
64
64
65
65
```solidity
66
66
function getL1Fee(bytes memory _data) external view override returns (uint256);
Copy file name to clipboardExpand all lines: src/content/docs/en/developers/verifying-smart-contracts.mdx
+8-37
Original file line number
Diff line number
Diff line change
@@ -17,22 +17,20 @@ After deploying your smart contracts, it's important to verify your code on a bl
17
17
18
18
## Using Developer Tools
19
19
20
-
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.
20
+
Most smart contract tooling has plugins for verifying your contracts easily on Etherscan.
When using Scrollscan, you will need to [register an account](https://scrollscan.com/register) and create an API key. The same key can be used for both Scroll Sepolia and mainnet. After creating your API key, please wait a few minutes before it comes into effect.
29
27
</Aside>
30
28
31
29
### Hardhat
32
30
33
-
Modify `hardhat.config.ts` to point to Scroll's RPC and block explorer API. For Blockscout, a dummy `apiKey` value is required, but anything works for its value. For Scrollscan, use your own API key.
31
+
Modify `hardhat.config.ts` to point to Scroll's RPC and block explorer API.
34
32
35
-
For example, if you are using Scroll Sepolia on Blockscout, your config will look like this:
33
+
For example, the config for Scroll Sepolia will look like this:
Copy file name to clipboardExpand all lines: src/content/docs/en/user-guide/index.mdx
+3-4
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,10 @@ If you want to try out Scroll mainnet, follow the guide, then use the mainnet li
20
20
21
21
Thank you for testing the Scroll Sepolia Testnet. If you have questions or want to give feedback, join our [Discord](https://discord.gg/scroll)!
22
22
23
-
The Sepolia Testnet consists of _Ethereum's Sepolia Testnet_ and the _Scroll Sepolia_ test network. Sepolia is an Ethereum test network, while Scroll Sepolia is a zero knowledge rollup testnet deployed on top of the former. There are some pre-deployed demo applications: a [bridge](https://sepolia.scroll.io/bridge) between _Sepolia_ and _Scroll Sepolia_,[^1] a [block explorer](https://sepolia-blockscout.scroll.io/) for _Scroll Sepolia_,[^2] and a [rollup explorer](https://sepolia.scroll.io/rollupscan).
23
+
The Sepolia Testnet consists of _Ethereum's Sepolia Testnet_ and the _Scroll Sepolia_ test network. Sepolia is an Ethereum test network, while Scroll Sepolia is a zero knowledge rollup testnet deployed on top of the former. There are some pre-deployed demo applications: a [bridge](https://sepolia.scroll.io/bridge) between _Sepolia_ and _Scroll Sepolia_,[^1] a [block explorer](https://sepolia.scrollscan.com) for _Scroll Sepolia_, and a [rollup explorer](https://sepolia.scroll.io/rollupscan).
24
24
25
25
To view L1 transactions, check out Etherscan's [Sepolia explorer](https://sepolia.etherscan.io/).
26
-
To view L2 transactions, you can use [Scrollscan](https://sepolia.scrollscan.com) or Scroll's [Blockscout](https://sepolia-blockscout.scroll.io/), but you may also want to try out the additional functionality provided by [Dora](https://www.ondora.xyz/network/scroll-sepolia/interactions) or [L2Scan](https://scroll-sepolia.l2scan.co/).
26
+
To view L2 transactions, you can use [Scrollscan](https://sepolia.scrollscan.com), or you may also want to try out the additional functionality provided by [Dora](https://www.ondora.xyz/network/scroll-sepolia/interactions) or [L2Scan](https://scroll-sepolia.l2scan.co/).
27
27
28
28
Here is the suggested workflow to explore the Testnet:
29
29
@@ -40,5 +40,4 @@ You can find the instructions for each app in the rest of this user guide.
40
40
41
41
If you encounter any issues, join our [Discord](https://discord.gg/scroll) and talk to us in the `#general-support` channel. We would love to hear your thoughts or feedback on how we can improve your experience, too.
42
42
43
-
[^1]: Forked from the [Hop Exchange](https://hop.exchange/) UI 🐇🙌
44
-
[^2]: Using [Blockscout](https://blockscout.com/)'s great open source block explorer
43
+
[^1]: Forked from the [Hop Exchange](https://hop.exchange/) UI 🐇🙌
0 commit comments