Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions content/api-reference/arc/arc-api-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Comment thread
bmoyroud marked this conversation as resolved.

## 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).

Expand Down
2 changes: 1 addition & 1 deletion content/api-reference/arc/arc-api-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
1 change: 1 addition & 0 deletions content/api-reference/node-api/node-supported-chains.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions content/wallets/pages/overview/supported-chains.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 | ✅ | ✅ | ✅ | ✅ |
Expand Down
Loading