Skip to content

Commit 99839e7

Browse files
committed
add note
1 parent d432e98 commit 99839e7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

wallet/how-to/use-non-evm-networks/starknet/create-a-simple-starknet-dapp.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_position: 6
55

66
# Create a simple Starknet dapp
77

8-
In this tutorial, you'll learn how to set up a React TypeScript dapp that uses the `get-starknet` library to connect to MetaMask and display the user's wallet address.
8+
In this tutorial, you'll learn how to set up a React TypeScript dapp that uses the [`get-starknet`](https://github.com/starknet-io/get-starknet) library to connect to MetaMask and display the user's wallet address.
99
You'll also display the balance of an ERC-20 token and perform a token transfer.
1010

1111
## Prerequisites
@@ -69,6 +69,8 @@ get-starknet-dapp/
6969

7070
## 2. Configure the wallet connection
7171

72+
Use the `connect` function to link your dapp with a user’s MetaMask wallet.
73+
7274
### 2.1. Connect to MetaMask
7375

7476
The `connect` function from `get-starknet` is the primary way to connect your dapp to a user's MetaMask wallet.
@@ -155,7 +157,7 @@ function App() {
155157

156158
### 2.5. Full example
157159

158-
The following a full example of configuring the wallet connection:
160+
The following is a full example of configuring the wallet connection:
159161

160162
```typescript title="App.tsx"
161163
import "./App.css"
@@ -249,8 +251,7 @@ export default App
249251

250252
## 3. Display the balance of and transfer an ERC-20 token
251253

252-
Now that you have set up the basics, you can display the balance of a specific ERC-20 token, such as
253-
STRK, and perform a transfer using the `WalletAccount` instance.
254+
Now that you have set up the basic interaction, you can display the balance of a specific ERC-20 token, such as STRK, and perform a transfer using the `WalletAccount` instance.
254255

255256
### 3.1. Set up the contract
256257

0 commit comments

Comments
 (0)