diff --git a/docs/guides/docs/frontend-quickstart/index.mdx b/docs/guides/docs/frontend-quickstart/index.mdx index a7433eb9376..5b6cfdb917a 100644 --- a/docs/guides/docs/frontend-quickstart/index.mdx +++ b/docs/guides/docs/frontend-quickstart/index.mdx @@ -88,7 +88,7 @@ npm run fuels:dev -The local endpoint for node will be `http://localhost:4000/graphql`. +The local endpoint for node will be `http://localhost:4000/v1/graphql`. Next, open a new terminal in the project directory, and run the following command to start the frontend: diff --git a/docs/guides/docs/running-a-node/running-a-local-node.mdx b/docs/guides/docs/running-a-node/running-a-local-node.mdx index b11e805f766..9a193ae483c 100644 --- a/docs/guides/docs/running-a-node/running-a-local-node.mdx +++ b/docs/guides/docs/running-a-node/running-a-local-node.mdx @@ -28,13 +28,13 @@ fuel-core run --db-type in-memory --debug --snapshot ./your/path/to/chain_config To deploy a contract to the local node, run the following command: ```sh -forc deploy --node-url 127.0.0.1:4000/graphql +forc deploy --node-url 127.0.0.1:4000/v1/graphql ``` Or to deploy with the default signer that is pre-funded by fuel-core: ```sh -forc deploy --default-signer --node-url 127.0.0.1:4000/graphql +forc deploy --default-signer --node-url 127.0.0.1:4000/v1/graphql ``` ## Chain Configuration @@ -101,5 +101,5 @@ fuel-core run --ip 127.0.0.1 --port 4000 --snapshot ./your/path/to/chain_config_ To connect to the local node using a browser wallet, import the network address as: ```sh -http://127.0.0.1:4000/graphql +http://127.0.0.1:4000/v1/graphql ``` diff --git a/docs/guides/docs/running-a-node/running-a-testnet-node.mdx b/docs/guides/docs/running-a-node/running-a-testnet-node.mdx index 3f8a717c44b..6bf2d221e24 100644 --- a/docs/guides/docs/running-a-node/running-a-testnet-node.mdx +++ b/docs/guides/docs/running-a-node/running-a-testnet-node.mdx @@ -178,7 +178,7 @@ To connect to the local node using a browser wallet, import the network address {/*// ANCHOR: connecting_to_local_node_endpoint*/} ```sh -http://0.0.0.0:4000/graphql +http://0.0.0.0:4000/v1/graphql ``` {/*// ANCHOR_END: connecting_to_local_node_endpoint*/}