Skip to content

fix(docs): deprecated alchemyapi.io domain in Scaffold-ETH 2 example in ethereum-tooling #591

Description

@Sertug17

Bug Report

docs/ethereum-tooling.mdx contains a deprecated Alchemy domain in a Scaffold-ETH 2 fallback URL, while the Sepolia fallback in the same code block already uses the current domain.

Affected File

docs/ethereum-tooling.mdx line 462

Problem

Current:

url: process.env.CHAINSTACK_MAINNET_ENDPOINT || `https://eth-mainnet.alchemyapi.io/v2/${providerApiKey}`,

alchemyapi.io is Alchemy's deprecated legacy domain. Requests to it redirect or fail. The Sepolia fallback in the same code block already uses the correct domain:

url: process.env.CHAINSTACK_DEVNET_ENDPOINT || `https://eth-sepolia.g.alchemy.com/v2/${providerApiKey}`,

Suggested Fix

url: process.env.CHAINSTACK_MAINNET_ENDPOINT || `https://eth-mainnet.g.alchemy.com/v2/${providerApiKey}`,

Verification

Confirmed at line 462 of ethereum-tooling.mdx. Both domains appear in the same code block, making the inconsistency clear.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions