From dcea59cbce9523640ac3e7a704198d6b26a2b6aa Mon Sep 17 00:00:00 2001 From: Daniel Bate Date: Wed, 10 May 2023 18:11:17 +0100 Subject: [PATCH] docs: update testnet url (#994) * docs: update testnet url in docs * docs: update testnet url in code snippet * chore: changeset * docs: remove https from faucet link * docs: remove slash from testnet url in docs --------- Co-authored-by: danielbate <--global> --- .changeset/warm-toys-glow.md | 2 ++ apps/docs/src/guide/providers/connecting-to-an-external-node.md | 2 +- packages/fuel-gauge/src/doc-examples.test.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .changeset/warm-toys-glow.md diff --git a/.changeset/warm-toys-glow.md b/.changeset/warm-toys-glow.md new file mode 100644 index 00000000000..a49ba48448f --- /dev/null +++ b/.changeset/warm-toys-glow.md @@ -0,0 +1,2 @@ +--- +--- \ No newline at end of file diff --git a/apps/docs/src/guide/providers/connecting-to-an-external-node.md b/apps/docs/src/guide/providers/connecting-to-an-external-node.md index ef7c0110ea2..f72fbeec9b6 100644 --- a/apps/docs/src/guide/providers/connecting-to-an-external-node.md +++ b/apps/docs/src/guide/providers/connecting-to-an-external-node.md @@ -8,7 +8,7 @@ In the code example, we connected a new provider to the Testnet node and created > **Note:** New wallets on the Testnet will not have any assets! They can be obtained by providing the wallet address to the faucet at > -> [faucet-beta-1.fuel.network](https://faucet-beta-1.fuel.network) +> [faucet-beta-3.fuel.network](https://faucet-beta-3.fuel.network/) > > Once the assets have been transferred to the wallet, you can reuse it in other tests by providing the private key! > diff --git a/packages/fuel-gauge/src/doc-examples.test.ts b/packages/fuel-gauge/src/doc-examples.test.ts index eef228e3387..18bdb603ac2 100644 --- a/packages/fuel-gauge/src/doc-examples.test.ts +++ b/packages/fuel-gauge/src/doc-examples.test.ts @@ -250,7 +250,7 @@ it('can create wallets', async () => { it('can connect to testnet', () => { // #region provider-testnet // #context import { Provider, WalletUnlocked } from 'fuels'; - const provider = new Provider('node-beta-2.fuel.network'); + const provider = new Provider('https://beta-3.fuel.network/graphql'); // Setup a private key const PRIVATE_KEY = 'a1447cd75accc6b71a976fd3401a1f6ce318d27ba660b0315ee6ac347bf39568';