From 281cef56c450b8874d05482a3e4bbaaecaa77eef Mon Sep 17 00:00:00 2001 From: Michael Macaulay <56690114+MichaelMacaulay@users.noreply.github.com> Date: Thu, 23 Feb 2023 09:22:09 -0500 Subject: [PATCH] Update base-testnet.mdx (#290) --- pages/en/cookbook/base-testnet.mdx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pages/en/cookbook/base-testnet.mdx b/pages/en/cookbook/base-testnet.mdx index 0dbf65f2f1a9..248ecfdf5351 100644 --- a/pages/en/cookbook/base-testnet.mdx +++ b/pages/en/cookbook/base-testnet.mdx @@ -29,7 +29,7 @@ Go to the [Subgraph Studio](https://thegraph.com/studio/) and connect your crypt Once connected, click "Create a Subgraph" and enter a name for your subgraph. -Select "Base (testnet)" as the network and click Create Subgraph. +Select "Base (testnet)" as the indexed blockchain and click Create Subgraph. ### 3. Initialize your Subgraph @@ -77,15 +77,15 @@ Before you can deploy your subgraph, you will need to authenticate with the Subg Authenticate the subgraph on studio -```sh +``` graph auth --studio ``` Next, enter your subgraph's directory. -````sh +``` cd - ``` +``` Build your subgraph with the following command: @@ -106,4 +106,3 @@ Once your subgraph is deployed, you can query it from your dapp using the `Devel Note - Studio API is rate-limited. Hence should preferably be used for development and testing. To learn more about querying data from your subgraph, see the [Querying a Subgraph](/querying/querying-the-graph) page. -````