Skip to content

Commit

Permalink
update endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahschwartz committed May 15, 2024
1 parent cef04fa commit 9d9b823
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ The playground is an interactive and graphical IDE that includes a reference for

You can test out the Fuel GraphQL API playground here:

https://devnet.fuel.network/v1/playground
https://testnet.fuel.network/v1/playground

## RPC Endpoint

https://devnet.fuel.network/v1/graphql
https://testnet.fuel.network/v1/graphql
2 changes: 1 addition & 1 deletion scripts/coverage/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function getHeadings(filepath) {
}

export async function request(query) {
const response = await fetch('https://devnet.fuel.network/v1/graphql', {
const response = await fetch('https://testnet.fuel.network/v1/graphql', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export const DEFAULT_SLUG = ['overview'];

export const META_DESC = 'Official documentation for the Fuel GraphQL API';

export const TESTNET_ENDPOINT = 'https://devnet.fuel.network/v1/graphql';
export const TESTNET_ENDPOINT = 'https://testnet.fuel.network/v1/graphql';

0 comments on commit 9d9b823

Please sign in to comment.