Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 1321f29

Browse files
author
Dan Forbes
committed
Update Links & Verbiage
1 parent 6f7d4c6 commit 1321f29

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/docs/guides/getting_started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import { Web3 } from 'web3';
4545

4646
[Providers](/guides/web3_providers_guide/) are services that are responsible for enabling connectivity with the Ethereum network. Web3.js supports [HTTP](/guides/web3_providers_guide/#http-provider), [WebSocket](/guides/web3_providers_guide/#websocket-provider), and [IPC](/guides/web3_providers_guide/#ipc-provider) providers, and exposes packages for working with each type of provider.
4747

48-
The default constructor for the `Web3` class uses an HTTP provider from [QuickNode](https://www.quicknode.com/) to connect to [Ethereum Mainnet](https://ethereum.org/en/enterprise/). The default provider is subject to usage limits and is only suitable for initial testing purposes. To remove usage limits and support continued Web3.js development, use this referral link to sign up for a QuickNode account. Refer to the section on [Web3.js External Providers](/guides/web3_providers_guide/#web3js-external-providers) to learn how to configure the QuickNode provider to use an account.
48+
The default constructor for the `Web3` class uses an HTTP provider from [QuickNode](https://www.quicknode.com/) to connect to [Ethereum Mainnet](https://ethereum.org/en/developers/docs/networks/#ethereum-mainnet). The default provider is subject to usage limits and is only suitable for initial testing purposes. To remove usage limits and support continued Web3.js development, use this referral link to sign up for a QuickNode account. Refer to the section on [Web3.js External Providers](/guides/web3_providers_guide/#web3js-external-providers) to learn how to configure the QuickNode provider to use an account token.
4949

5050
Web3.js is in compliance with [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193), the Ethereum Provider JavaScript API, so any EIP-1193 provider can be used to initialize the `Web3` object.
5151

docs/docs/guides/web3_providers_guide/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ The following example should be run in a browser with the MetaMask extension ins
277277

278278
## Web3.js External Providers
279279

280-
The `web3-rpc-providers` package provides helpful utilities for working with certain well-known remote providers. The following example demonstrates using this package to create a WebSocket connection for the Ethereum Sepolia test network with QuickNode:
280+
The `web3-rpc-providers` package provides helpful utilities for working with certain well-known remote providers. The following example demonstrates using this package to create a WebSocket connection for the Ethereum [Sepolia](https://ethereum.org/en/developers/docs/networks/#sepolia) test network with [QuickNode](https://www.quicknode.com/):
281281

282282
```js
283283
import { Web3 } from "web3";
@@ -288,7 +288,7 @@ console.log(await web3.eth.getChainId());
288288
// ↳ 11155111n
289289
```
290290

291-
External providers can also be configured to use API tokens and custom hosts, as in the following example:
291+
External providers can also be configured to use account tokens and custom hosts, as in the following example:
292292

293293
```js
294294
import { Web3 } from "web3";

0 commit comments

Comments
 (0)