From 48eae49302de7775259eb1a625ebadf460b82724 Mon Sep 17 00:00:00 2001 From: Turupawn Date: Wed, 20 Aug 2025 19:12:47 -0600 Subject: [PATCH] added faq --- public/locales/en/translation.json | 1 + src/config/sidebar.ts | 1 + src/content/docs/en/developers/faq.mdx | 49 ++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 src/content/docs/en/developers/faq.mdx diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index 02516bed..546093ec 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -79,6 +79,7 @@ "developers": { "developers": "Developers", "buildingOnScroll": "Building on Scroll", + "faq": "Frequently Asked Questions", "developerQuickstart": "Developer Quickstart", "verifyingSmartContracts": "Verifying Smart Contracts", "scrollContracts": "Scroll Contracts", diff --git a/src/config/sidebar.ts b/src/config/sidebar.ts index b01cd5c8..e2575491 100644 --- a/src/config/sidebar.ts +++ b/src/config/sidebar.ts @@ -80,6 +80,7 @@ export const getSidebar = () => { section: t("sidebar.developers.developers"), contents: [ { title: t("sidebar.developers.buildingOnScroll"), url: formatUrl("developers") }, + { title: t("sidebar.developers.faq"), url: formatUrl("developers/faq") }, { title: t("sidebar.developers.developerQuickstart"), url: formatUrl("developers/developer-quickstart") }, { title: t("sidebar.developers.verifyingSmartContracts"), diff --git a/src/content/docs/en/developers/faq.mdx b/src/content/docs/en/developers/faq.mdx new file mode 100644 index 00000000..c4fbd129 --- /dev/null +++ b/src/content/docs/en/developers/faq.mdx @@ -0,0 +1,49 @@ +--- +section: developers +date: Last Modified +title: "Developer Frequently Asked Questions" +lang: "en" +permalink: "developers/faq" +whatsnext: { "L1 & L2 Bridging": "/en/developers/getting-started/" } +excerpt: "." +--- + +## EVM Compatibility & Infrastructure + +**What are the opcode differences on Scroll compared to Ethereum?** + +Scroll is fully EVM-equivalent, but certain rollup-specific opcodes differ. A full breakdown can be found here: [Rollup Codes: Scroll Overview](https://www.rollup.codes/scroll#overview). + +**Can I run my own node on Scroll?** + +Yes. Scroll provides a step-by-step tutorial for setting up and running your own node. See: [Running a Node](https://docs.scroll.io/en/developers/guides/running-a-scroll-node/). + +## Testnet ETH + +**How do I get testnet ETH on Scroll?** + +You can request testnet ETH via the official Scroll telegram faucet bot by sending a message to @scroll_up_sepolia_bot who will provide access to the faucet. Once on the faucet telegram group chat, send your wallet address on a `/drop YOUR_ETHEREUM_ADDRESS` command and the bot will automatically send some funds to you. + +**Is there an alternative way to get testnet ETH?** + +Yes. Please refer to our list of [Unofficial Facuets](https://docs.scroll.io/en/user-guide/faucet/) on both Sepolia and Scroll Sepolia. Remember, you can either receive Scroll Sepolia ETH directly or trough the [Sepolia Testnet Bridge](https://sepolia.scroll.io/bridge). + +## Developer Tooling & Ecosystem + +**Where can I find the list of developer tooling available on Scroll?** + +See the full list here: [Scroll Developer Tooling](https://docs.scroll.io/en/developers/tooling-deployed-on-scroll/). + +**Where can I explore the ecosystem of projects deployed on Scroll?** + +The live ecosystem page is here: [Scroll Ecosystem Data page](https://docs.scroll.io/en/developers/developer-ecosystem/) and the full list [Scroll Ecosystem Projects](https://scroll.io/ecosystem). + +## Errors & Support + +**I have a question about my node, the faucet or developing on Scroll. What should I do?** + +Please join the Scroll Discord server and ask on the `#developers` or `#developer-support` discord channels. + +**I want to connect to the BD team. What should I do?** + +To connect with the BD team please fill the [Scroll BD Intake form](https://tally.so/r/wM2aaE). \ No newline at end of file