Skip to content

Commit dde9475

Browse files
authored
fix(docs): testnet references on devnet guide (#19292)
1 parent cec5c94 commit dde9475

File tree

2 files changed

+16
-20
lines changed

2 files changed

+16
-20
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

docs/docs-developers/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
@@ -82,7 +80,7 @@ aztec-wallet create-account \
8280
```
8381
8482
:::note
85-
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.
83+
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.
8684
:::
8785
8886
### Step 3: Deploy and interact with contracts
@@ -112,16 +110,16 @@ aztec-wallet send mint_to_private \
112110
--args accounts:my-wallet 10
113111
```
114112
115-
## Migrating from the Local Network to Testnet
113+
## Migrating from the Local Network to Devnet
116114
117-
If you have an existing app running on your local network, here's how to migrate it to testnet:
115+
If you have an existing app running on your local network, here's how to migrate it to devnet:
118116
119-
### 1. Connect to Testnet Node
117+
### 1. Connect to Devnet Node
120118
121-
Instead of running a local network, connect to the testnet node:
119+
Instead of running a local network, connect to the devnet node:
122120
123121
```sh
124-
export NODE_URL=https://aztec-testnet-fullnode.zkv.xyz
122+
export NODE_URL=https://next.devnet.aztec-labs.com/
125123
```
126124
127125
When running `aztec-wallet` commands, include the node URL:
@@ -132,7 +130,7 @@ aztec-wallet create-account -a main --node-url $NODE_URL
132130
133131
### 2. Initialize a TestWallet for Devnet
134132
135-
You can connect to testnet directly from your app using AztecJS:
133+
You can connect to devnet directly from your app using AztecJS:
136134
137135
In the browser:
138136

0 commit comments

Comments
 (0)