From 05adda15f72c877485199401592a105e875785b6 Mon Sep 17 00:00:00 2001 From: Tarun Khasnavis Date: Thu, 25 Jul 2024 12:55:43 -0700 Subject: [PATCH] changing faucet link across docs --- pages/_meta.json | 4 ++-- pages/builders/app-developers/quick-start.mdx | 2 +- .../app-developers/tutorials/cross-dom-bridge-erc20.mdx | 2 +- .../app-developers/tutorials/cross-dom-solidity.mdx | 2 +- .../builders/app-developers/tutorials/first-contract.mdx | 2 +- .../app-developers/tutorials/sdk-estimate-costs.mdx | 2 +- .../app-developers/tutorials/send-tx-from-eth.mdx | 2 +- .../tutorials/standard-bridge-custom-token.mdx | 2 +- .../tutorials/standard-bridge-standard-token.mdx | 2 +- pages/builders/tools/build/faucets.mdx | 2 +- pages/builders/tools/op-tools/_meta.json | 2 +- pages/builders/tools/overview.mdx | 8 ++++---- pages/chain/getting-started.mdx | 2 +- pages/index.mdx | 2 +- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/pages/_meta.json b/pages/_meta.json index 647eda8a5..918298637 100644 --- a/pages/_meta.json +++ b/pages/_meta.json @@ -1,4 +1,4 @@ -{ +{ "index": { "title": "Getting Started", "display": "hidden", @@ -40,7 +40,7 @@ "faucet": { "title": "Superchain Faucet", "type": "page", - "href": "https://app.optimism.io/faucet?utm_source=docs", + "href": "https://console.optimism.io/faucet?utm_source=docs", "newWindow": true }, "gas": { diff --git a/pages/builders/app-developers/quick-start.mdx b/pages/builders/app-developers/quick-start.mdx index c6a8a22eb..34482b0c1 100644 --- a/pages/builders/app-developers/quick-start.mdx +++ b/pages/builders/app-developers/quick-start.mdx @@ -16,7 +16,7 @@ This quick start uses [`Scaffold-OP`](https://github.com/ethereum-optimism/scaff ## Step 1: Get Testnet ETH from Superchain Faucet You'll need some testnet ETH on OP Sepolia to pay for the [gas fees](https://ethereum.org/en/developers/docs/gas/) associated with deploying your test application. -Use the [Optimism Superchain Faucet](https://app.optimism.io/faucet?utm_source=scaffoldop) to get some free ETH on OP Sepolia for multiple OP Chains with just one click. +Use the [Optimism Superchain Faucet](https://console.optimism.io/faucet?utm_source=scaffoldop) to get some free ETH on OP Sepolia for multiple OP Chains with just one click. You can request testnet ETH from the Superchain Faucet in one of two ways: **connect a wallet** or **login with Github**. Superchain Faucet sign-up options diff --git a/pages/builders/app-developers/tutorials/cross-dom-bridge-erc20.mdx b/pages/builders/app-developers/tutorials/cross-dom-bridge-erc20.mdx index 51eb2ed92..bbddc794d 100644 --- a/pages/builders/app-developers/tutorials/cross-dom-bridge-erc20.mdx +++ b/pages/builders/app-developers/tutorials/cross-dom-bridge-erc20.mdx @@ -85,7 +85,7 @@ You will need to get some ETH on both of these testnets. You can use [this faucet](https://sepoliafaucet.com) to get ETH on Sepolia. You can use the [Superchain - Faucet](https://app.optimism.io/faucet?utm_source=docs) to get ETH on OP + Faucet](https://console.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. diff --git a/pages/builders/app-developers/tutorials/cross-dom-solidity.mdx b/pages/builders/app-developers/tutorials/cross-dom-solidity.mdx index b1db5675b..369f0649b 100644 --- a/pages/builders/app-developers/tutorials/cross-dom-solidity.mdx +++ b/pages/builders/app-developers/tutorials/cross-dom-solidity.mdx @@ -45,7 +45,7 @@ You will need to get some ETH on both of these testnets. You can use [this faucet](https://sepoliafaucet.com/) to get ETH on Sepolia. -You can use the [Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. +You can use the [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. ## Review the Contracts diff --git a/pages/builders/app-developers/tutorials/first-contract.mdx b/pages/builders/app-developers/tutorials/first-contract.mdx index 2765c19b7..52bd22337 100644 --- a/pages/builders/app-developers/tutorials/first-contract.mdx +++ b/pages/builders/app-developers/tutorials/first-contract.mdx @@ -156,7 +156,7 @@ Click "Switch network" to continue. ## Get ETH on OP Sepolia You'll need some ETH on OP Sepolia to pay for the [gas fees](https://ethereum.org/en/developers/docs/gas/) associated with deploying a smart contract. -You can use the [Optimism Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) to get some free ETH on OP Sepolia. +You can use the [Optimism Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) to get some free ETH on OP Sepolia. Having issues with the Optimism Superchain Faucet? diff --git a/pages/builders/app-developers/tutorials/sdk-estimate-costs.mdx b/pages/builders/app-developers/tutorials/sdk-estimate-costs.mdx index efdfc0020..25b0f7894 100644 --- a/pages/builders/app-developers/tutorials/sdk-estimate-costs.mdx +++ b/pages/builders/app-developers/tutorials/sdk-estimate-costs.mdx @@ -69,7 +69,7 @@ This tutorial explains how estimate transaction costs on OP Sepolia. You will need to get some ETH on OP Sepolia in order to run the code in this tutorial. -You can use the [Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. +You can use the [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. ## Add a Private Key to Your Environment diff --git a/pages/builders/app-developers/tutorials/send-tx-from-eth.mdx b/pages/builders/app-developers/tutorials/send-tx-from-eth.mdx index 909dce632..d7a53efe3 100644 --- a/pages/builders/app-developers/tutorials/send-tx-from-eth.mdx +++ b/pages/builders/app-developers/tutorials/send-tx-from-eth.mdx @@ -80,7 +80,7 @@ You will need to get some ETH on both of these testnets. You can use [this faucet](https://sepoliafaucet.com) to get ETH on Sepolia. -You can use the [Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. +You can use the [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. ## Add a Private Key to Your Environment diff --git a/pages/builders/app-developers/tutorials/standard-bridge-custom-token.mdx b/pages/builders/app-developers/tutorials/standard-bridge-custom-token.mdx index d0c02fe8a..d6e2a5dbd 100644 --- a/pages/builders/app-developers/tutorials/standard-bridge-custom-token.mdx +++ b/pages/builders/app-developers/tutorials/standard-bridge-custom-token.mdx @@ -42,7 +42,7 @@ You will need to get some ETH on both of these testnets. You can use [this faucet](https://sepoliafaucet.com/) to get ETH on Sepolia. -You can use the [Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. +You can use the [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. ## Add OP Sepolia to Your Wallet diff --git a/pages/builders/app-developers/tutorials/standard-bridge-standard-token.mdx b/pages/builders/app-developers/tutorials/standard-bridge-standard-token.mdx index b8f0c243d..57c589f68 100644 --- a/pages/builders/app-developers/tutorials/standard-bridge-standard-token.mdx +++ b/pages/builders/app-developers/tutorials/standard-bridge-standard-token.mdx @@ -41,7 +41,7 @@ You will need to get some ETH on both of these testnets. You can use [this faucet](https://sepoliafaucet.com) to get ETH on Sepolia. -You can use the [Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. +You can use the [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) to get ETH on OP Sepolia. ## Get an L1 ERC-20 Token Address diff --git a/pages/builders/tools/build/faucets.mdx b/pages/builders/tools/build/faucets.mdx index 7384de1b3..66bdf7236 100644 --- a/pages/builders/tools/build/faucets.mdx +++ b/pages/builders/tools/build/faucets.mdx @@ -24,7 +24,7 @@ Faucets can occasionally also run out of ETH, so if you're having trouble gettin ## Superchain Faucet -The [Superchain Faucet](https://app.optimism.io/faucet?utm_source=docs) is a developer tool hosted by Optimism that allows developers to get free testnet ETH to test apps on testnet OP Chains like Base Sepolia, OP Sepolia, PGN Sepolia, Zora Sepolia, and other OP Chains in the Superchain. +The [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs) is a developer tool hosted by Optimism that allows developers to get free testnet ETH to test apps on testnet OP Chains like Base Sepolia, OP Sepolia, PGN Sepolia, Zora Sepolia, and other OP Chains in the Superchain. The Superchain Faucet is a great place to start if you're looking for testnet ETH. ## Additional Faucets diff --git a/pages/builders/tools/op-tools/_meta.json b/pages/builders/tools/op-tools/_meta.json index 555e81b7d..fcc07acdc 100644 --- a/pages/builders/tools/op-tools/_meta.json +++ b/pages/builders/tools/op-tools/_meta.json @@ -17,7 +17,7 @@ "faucet": { "title": "Superchain Faucet", "type": "page", - "href": "https://app.optimism.io/faucet?utm_source=docs", + "href": "https://console.optimism.io/faucet?utm_source=docs", "newWindow": true }, "console": { diff --git a/pages/builders/tools/overview.mdx b/pages/builders/tools/overview.mdx index 596be82ad..cb146b2fa 100644 --- a/pages/builders/tools/overview.mdx +++ b/pages/builders/tools/overview.mdx @@ -24,8 +24,8 @@ If you are already familiar with [building on OP Mainnet](/chain/getting-started ## Building - } /> - + } /> + } /> } /> @@ -51,8 +51,8 @@ If you are already familiar with [building on OP Mainnet](/chain/getting-started } /> } /> - - } /> + + } /> } /> diff --git a/pages/chain/getting-started.mdx b/pages/chain/getting-started.mdx index 1c3958856..6d4136cf5 100644 --- a/pages/chain/getting-started.mdx +++ b/pages/chain/getting-started.mdx @@ -21,7 +21,7 @@ To access any Ethereum type network you need an endpoint. [These providers](/bui For development purposes we recommend you use either a local development node or [OP Sepolia](https://sepolia-optimism.etherscan.io). That way you don't need to spend real money. -If you need ETH on OP Sepolia for testing purposes, [you can use this faucet](https://app.optimism.io/faucet?utm_source=docs). +If you need ETH on OP Sepolia for testing purposes, [you can use this faucet](https://console.optimism.io/faucet?utm_source=docs). ## Interacting with Contracts on OP Mainnet or OP Sepolia diff --git a/pages/index.mdx b/pages/index.mdx index 3d15e72b9..6c276002e 100644 --- a/pages/index.mdx +++ b/pages/index.mdx @@ -32,7 +32,7 @@ Whether you're a developer building a app on OP Mainnet, a node operator running Check out these amazing tools, so you can get building with Optimism. - } /> + } /> } />