From 1d3b2f6db6b40661c8b5fcee06d87ed9c6801984 Mon Sep 17 00:00:00 2001 From: Bayge <71931113+af-afk@users.noreply.github.com> Date: Tue, 16 Jun 2026 22:56:07 +0930 Subject: [PATCH] Remove the Arbiscan API url from the token deployment guide Etherscan v2 no longer requires a specific endpoint. --- docs/build-decentralized-apps/quickstart-create-a-token.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/build-decentralized-apps/quickstart-create-a-token.mdx b/docs/build-decentralized-apps/quickstart-create-a-token.mdx index 97dfd828d8..f06398aa9a 100644 --- a/docs/build-decentralized-apps/quickstart-create-a-token.mdx +++ b/docs/build-decentralized-apps/quickstart-create-a-token.mdx @@ -35,7 +35,7 @@ All references to **ETH** on this document refers to test **ETH** on Sepolia. ::: -3. **Set up development environment**: Configure your wallet and tools for Arbitrum testnet deployment. Sign up for an Arbiscan account to get an API key for contract verification. +3. **Set up development environment**: Configure your wallet and tools for Arbitrum testnet deployment. Sign up for an Etherscan account to get an API key for contract verification. ## Project setup @@ -285,7 +285,6 @@ A list of chain IDs is available on the [Chain Info page](/for-devs/dev-tools-an ```bash forge verify-contract :YourToken \ --verifier etherscan \ - --verifier-url https://api.arbiscan.io/api \ --chain-id 42161 \ --num-of-optimizations 200 ```