Skip to content

Commit f631ab2

Browse files
committed
fix(docs): testnet references on devnet guide
1 parent 24c2c20 commit f631ab2

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

docs/developer_versioned_docs/version-v3.0.0-devnet.20251212/getting_started_on_devnet.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
---
22
title: Setting up for Devnet
33
sidebar_position: 3
4-
tags: [testnet]
4+
tags: [devnet]
55
description: Guide for developers to get started with the Aztec devnet, including account creation and contract deployment.
66
---
77

8-
import { AztecTestnetVersion } from '@site/src/components/Snippets/general_snippets';
9-
108
This guide explains the differences between the local network and devnet, how to migrate from the local network to devnet, and how to start developing directly on devnet.
119

1210
## Local Network vs Devnet: Key Differences
@@ -88,7 +86,7 @@ aztec-wallet create-account \
8886
```
8987

9088
:::note
91-
The first transaction will take longer as it downloads proving keys. If you see `Timeout awaiting isMined`, the transaction is still processing - this is normal on testnet.
89+
The first transaction will take longer as it downloads proving keys. If you see `Timeout awaiting isMined`, the transaction is still processing - this is normal on devnet.
9290
:::
9391

9492
### Step 3: Deploy and interact with contracts
@@ -118,16 +116,16 @@ aztec-wallet send mint_to_private \
118116
--args accounts:my-wallet 10
119117
```
120118

121-
## Migrating from the Local Network to Testnet
119+
## Migrating from the Local Network to Devnet
122120

123-
If you have an existing app running on your local network, here's how to migrate it to testnet:
121+
If you have an existing app running on your local network, here's how to migrate it to devnet:
124122

125-
### 1. Connect to Testnet Node
123+
### 1. Connect to Devnet Node
126124

127-
Instead of running a local network, connect to the testnet node:
125+
Instead of running a local network, connect to the devnet node:
128126

129127
```sh
130-
export NODE_URL=https://aztec-testnet-fullnode.zkv.xyz
128+
export NODE_URL=https://next.devnet.aztec-labs.com/
131129
```
132130

133131
When running `aztec-wallet` commands, include the node URL:
@@ -138,7 +136,7 @@ aztec-wallet create-account -a main --node-url $NODE_URL
138136

139137
### 2. Initialize a TestWallet for Devnet
140138

141-
You can connect to testnet directly from your app using AztecJS:
139+
You can connect to devnet directly from your app using AztecJS:
142140

143141
In the browser:
144142

0 commit comments

Comments
 (0)