Skip to content

Commit

Permalink
Fixing filename
Browse files Browse the repository at this point in the history
  • Loading branch information
arboleya committed Dec 24, 2024
1 parent fbf6e02 commit 589364b
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default defineConfig({
},
{
text: 'Connecting to the Network',
link: '/guide/getting-started/connecting-to-network',
link: '/guide/getting-started/connecting-to-the-network',
},
{
text: 'Running a local Fuel node',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

After [installing](./installation.md) the `fuels` package, it's easy to connect to the Network:

<<< @./snippets/connecting-to-network.ts#main{ts:line-numbers}
<<< @./snippets/connecting-to-the-network.ts#main{ts:line-numbers}

# RPC URLs

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/guide/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Welcome to `fuels` Typescript SDK!
We prepared a couple guides to walk you through your first steps:

1. [Installation](/guide/getting-started/installation)
1. [Connecting to the Network](/guide/getting-started/connecting-to-network)
1. [Connecting to the Network](/guide/getting-started/connecting-to-the-network)
1. [Running a local Fuel node](/guide/getting-started/running-local-node)
1. [React Example](/guide/getting-started/react-example)
1. [CDN Usage](/guide/getting-started/cdn-usage)
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/guide/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ npm install fuels@{{fuels}} --save

Now you are ready to:

- [Connect to the Network](./connecting-to-network.md)
- [Connect to the Network](./connecting-to-the-network.md)
2 changes: 1 addition & 1 deletion apps/docs/src/guide/provider/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Provider

The [`Provider`](https://fuels-ts-docs-api.vercel.app/classes/_fuel_ts_account.Provider.html) lets you connect to a Fuel node ([_*docs*_](../getting-started/connecting-to-network.md)) and interact with it, encapsulating common client operations in the SDK. Those operations include querying the blockchain for network, block, and transaction-related info (and [more](https://fuels-ts-docs-api.vercel.app/classes/_fuel_ts_account.Provider.html)), as well as sending [transactions](../transactions/index.md) to the blockchain.
The [`Provider`](https://fuels-ts-docs-api.vercel.app/classes/_fuel_ts_account.Provider.html) lets you connect to a Fuel node ([_*docs*_](../getting-started/connecting-to-the-network.md)) and interact with it, encapsulating common client operations in the SDK. Those operations include querying the blockchain for network, block, and transaction-related info (and [more](https://fuels-ts-docs-api.vercel.app/classes/_fuel_ts_account.Provider.html)), as well as sending [transactions](../transactions/index.md) to the blockchain.

All higher-level abstractions (e.g. [`Wallet`](../wallets/index.md), [`Contract`](../contracts/index.md)) that interact with the blockchain go through the `Provider`, so it's used for various actions like getting a wallet's balance, deploying contracts, querying their state, etc.

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/guide/provider/querying-the-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Once you have set up a provider, you're ready to interact with the Fuel blockchain.

- [Connecting to the Network](../getting-started/connecting-to-network.md)
- [Connecting to the Network](../getting-started/connecting-to-the-network.md)

Let's look at a few examples below.

Expand Down

0 comments on commit 589364b

Please sign in to comment.