From 22780fcaa6880330926ae746116425b7f382e78d Mon Sep 17 00:00:00 2001 From: alchemy-bot <80712764+alchemy-bot@users.noreply.github.com> Date: Wed, 16 Sep 2026 13:01:47 +0000 Subject: [PATCH] [docs-agent] Roll out Arc Mainnet across docs surfaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds Arc Mainnet references across chain-specific and shared surfaces so docs reflect that both Arc Mainnet and Arc Testnet are live at Alchemy. Complements PR #1621 which added Arc Mainnet to arc.yaml itself. Files: - Product OpenRPC specs (Trace, Debug, Token, Transfers): add Arc Mainnet server entry alongside Arc Testnet. - NFT REST spec: add arc-mainnet to the networks enum. - Arc quickstart: switch the sample URL to arc-mainnet.g.alchemy.com. - Arc FAQ: add a 'Which Arc networks are supported?' entry listing both endpoints. - node-supported-chains.mdx: add Arc Mainnet HTTPS URL row. - wallets/overview/supported-chains.mdx: add Arc Mainnet row (Bundler, Gas Sponsorship, ERC20 Gas Payments, BSOs) mirroring Arc Testnet. Not touched (already in flight): - content/wallets/pages/bundler-api/bundler-faqs.mdx — PR #1485 adds Arc Mainnet minimum EntryPoint stake. - content/api-reference/arc/arc-api-overview.mdx — PR #1614 renames the Arc overview section. Ran generate:rpc, validate:rpc, and validate:rest locally, all pass. Refs DOCS-228 Requested-by: @bmoyroud --- content/api-reference/arc/arc-api-faq.mdx | 3 +++ content/api-reference/arc/arc-api-quickstart.mdx | 2 +- content/api-reference/node-api/node-supported-chains.mdx | 1 + content/wallets/pages/overview/supported-chains.mdx | 1 + src/openapi/nft/nft.yaml | 1 + src/openrpc/alchemy/debug/debug.yaml | 2 ++ src/openrpc/alchemy/token/token.yaml | 2 ++ src/openrpc/alchemy/trace/trace.yaml | 2 ++ src/openrpc/alchemy/transfers/transfers.yaml | 2 ++ 9 files changed, 15 insertions(+), 1 deletion(-) diff --git a/content/api-reference/arc/arc-api-faq.mdx b/content/api-reference/arc/arc-api-faq.mdx index bec85c4ad..3783acb54 100644 --- a/content/api-reference/arc/arc-api-faq.mdx +++ b/content/api-reference/arc/arc-api-faq.mdx @@ -23,6 +23,9 @@ Arc uses the JSON-RPC API standard. This API is crucial for any blockchain inter ## What methods are supported on Arc? Arc supports standard Ethereum JSON-RPC methods. Some chain-specific methods may vary. Please check the Arc API endpoints documentation for a complete list. +## Which Arc networks are supported? +Alchemy supports both Arc Mainnet and Arc Testnet. Use `https://arc-mainnet.g.alchemy.com/v2/{apiKey}` for Mainnet and `https://arc-testnet.g.alchemy.com/v2/{apiKey}` for Testnet. + ## What is a Arc API key? When accessing the Arc network via a node provider like Alchemy, you use an API key to send transactions and retrieve data from the network. For the best development experience, we recommend that you [sign up for a free API key](https://dashboard.alchemy.com/signup). diff --git a/content/api-reference/arc/arc-api-quickstart.mdx b/content/api-reference/arc/arc-api-quickstart.mdx index 076bd8ad4..6c397a898 100644 --- a/content/api-reference/arc/arc-api-quickstart.mdx +++ b/content/api-reference/arc/arc-api-quickstart.mdx @@ -73,7 +73,7 @@ Create an `index.js` file in your project directory and paste the following code ```javascript index.js const axios = require('axios'); - const url = 'https://arc-testnet.g.alchemy.com/v2/your-api-key'; + const url = 'https://arc-mainnet.g.alchemy.com/v2/your-api-key'; const payload = { jsonrpc: '2.0', diff --git a/content/api-reference/node-api/node-supported-chains.mdx b/content/api-reference/node-api/node-supported-chains.mdx index 02e0b8657..ae9e07b0b 100644 --- a/content/api-reference/node-api/node-supported-chains.mdx +++ b/content/api-reference/node-api/node-supported-chains.mdx @@ -251,6 +251,7 @@ Alchemy supports both EVM and non-EVM chains, view API references below: | Solana | Solana Devnet | https://solana-devnet.g.alchemy.com/v2/API_KEY | | Gensyn | Gensyn Testnet | https://gensyn-testnet.g.alchemy.com/v2/API_KEY | | Gensyn | Gensyn Mainnet | https://gensyn-mainnet.g.alchemy.com/v2/API_KEY | +| Arc | Arc Mainnet | https://arc-mainnet.g.alchemy.com/v2/API_KEY | | Arc | Arc Testnet | https://arc-testnet.g.alchemy.com/v2/API_KEY | | DATA Network | DATA Network Mainnet | https://story-mainnet.g.alchemy.com/v2/API_KEY | | DATA Network | DATA Network Aeneid | https://story-aeneid.g.alchemy.com/v2/API_KEY | diff --git a/content/wallets/pages/overview/supported-chains.mdx b/content/wallets/pages/overview/supported-chains.mdx index 1a77d7232..eee7c6321 100644 --- a/content/wallets/pages/overview/supported-chains.mdx +++ b/content/wallets/pages/overview/supported-chains.mdx @@ -27,6 +27,7 @@ We're expanding support and can add new chains on request. | ------- | :-----: | :-------------: | :----------------: | :-: | | ApeChain Mainnet | ✅ | ✅ | ✅ | ✅ | | ApeChain Curtis | ✅ | ✅ | ✅ | ✅ | +| Arc Mainnet | ✅ | ✅ | ✅ | ✅ | | Arc Testnet | ✅ | ✅ | ✅ | ✅ | | Arbitrum Nova Mainnet | ✅ | ✅ | ✅ | ✅ | | Arbitrum One Mainnet | ✅ | ✅ | ✅ | ✅ | diff --git a/src/openapi/nft/nft.yaml b/src/openapi/nft/nft.yaml index 65a4a7119..a3e884597 100644 --- a/src/openapi/nft/nft.yaml +++ b/src/openapi/nft/nft.yaml @@ -19,6 +19,7 @@ servers: # servers are also specified at the method level, if there isn't a spec - apechain-curtis - arb-mainnet - arb-sepolia + - arc-mainnet - arc-testnet - avax-mainnet - avax-fuji diff --git a/src/openrpc/alchemy/debug/debug.yaml b/src/openrpc/alchemy/debug/debug.yaml index e58ebb929..6f6e53a47 100644 --- a/src/openrpc/alchemy/debug/debug.yaml +++ b/src/openrpc/alchemy/debug/debug.yaml @@ -41,6 +41,8 @@ servers: name: Arbitrum Mainnet - url: https://arb-sepolia.g.alchemy.com/v2 name: Arbitrum Sepolia + - url: https://arc-mainnet.g.alchemy.com/v2 + name: Arc Mainnet - url: https://arc-testnet.g.alchemy.com/v2 name: Arc Testnet - url: https://astar-mainnet.g.alchemy.com/v2 diff --git a/src/openrpc/alchemy/token/token.yaml b/src/openrpc/alchemy/token/token.yaml index ed7b429b6..d2dcaf93b 100644 --- a/src/openrpc/alchemy/token/token.yaml +++ b/src/openrpc/alchemy/token/token.yaml @@ -35,6 +35,8 @@ servers: name: Arbitrum Mainnet - url: https://arb-sepolia.g.alchemy.com/v2 name: Arbitrum Sepolia + - url: https://arc-mainnet.g.alchemy.com/v2 + name: Arc Mainnet - url: https://arc-testnet.g.alchemy.com/v2 name: Arc Testnet - url: https://avax-mainnet.g.alchemy.com/v2 diff --git a/src/openrpc/alchemy/trace/trace.yaml b/src/openrpc/alchemy/trace/trace.yaml index 022273410..4f6d379c0 100644 --- a/src/openrpc/alchemy/trace/trace.yaml +++ b/src/openrpc/alchemy/trace/trace.yaml @@ -25,6 +25,8 @@ servers: name: Abstract Testnet - url: https://alpen-testnet.g.alchemy.com/v2 name: Alpen Testnet + - url: https://arc-mainnet.g.alchemy.com/v2 + name: Arc Mainnet - url: https://arc-testnet.g.alchemy.com/v2 name: Arc Testnet - url: https://avax-mainnet.g.alchemy.com/v2 diff --git a/src/openrpc/alchemy/transfers/transfers.yaml b/src/openrpc/alchemy/transfers/transfers.yaml index 22fc28a2c..c26528478 100644 --- a/src/openrpc/alchemy/transfers/transfers.yaml +++ b/src/openrpc/alchemy/transfers/transfers.yaml @@ -35,6 +35,8 @@ servers: name: Arbitrum Mainnet - url: https://arb-sepolia.g.alchemy.com/v2 name: Arbitrum Sepolia + - url: https://arc-mainnet.g.alchemy.com/v2 + name: Arc Mainnet - url: https://arc-testnet.g.alchemy.com/v2 name: Arc Testnet - url: https://avax-mainnet.g.alchemy.com/v2