Skip to content

Commit 1ba9207

Browse files
authored
Update 03-getting-started.mdx
1 parent b80d8f0 commit 1ba9207

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/05-cardano-testnet/03-getting-started.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Another possible option to [configure the node is using YAML](https://github.com
5454

5555
## Working with the Cardano testnet
5656

57-
Note that mainnet and testnet commands are very similar except for the flag usage. For example, when interacting with cardano-cli on mainnet, you should add the `--mainnet` flag. However, to use the same commands on testnet, you should use the `--tesntet-magic INTEGER` flag instead. `INTEGER` indicates the number of the testnet.
57+
Note that mainnet and testnet commands are very similar except for the flag usage. For example, when interacting with cardano-cli on mainnet, you should add the `--mainnet` flag. However, to use the same commands on testnet, you should use the `--testnet-magic INTEGER` flag instead. `INTEGER` indicates the number of the testnet.
5858

5959
The Cardano public testnet integer is `1097911063`.
6060

@@ -81,22 +81,22 @@ cardano-cli address build \
8181
--payment-verification-key-file payment.vkey \
8282
--stake-verification-key-file stake.vkey \
8383
--out-file payment.addr \
84-
--tesntet-magic INTEGER
84+
--testnet-magic INTEGER
8585
```
8686

8787
To query the balance of the address, run:
8888

8989
```
9090
cardano-cli query utxo \
9191
--address $(cat payment.addr) \
92-
--tesntet-magic INTEGER
92+
--testnet-magic INTEGER
9393
```
9494

9595
For more commands, see:
9696

9797
- [Creating keys and addresses](https://github.com/input-output-hk/cardano-node/blob/master/doc/stake-pool-operations/keys_and_addresses.md)
9898

99-
Note to use the `--tesntet-magic INTEGER` flag instead of `--mainnet`.
99+
Note to use the `--testnet-magic INTEGER` flag instead of `--mainnet`.
100100

101101
### Funding the address using a faucet
102102

@@ -114,4 +114,4 @@ You’re now ready to create, sign, and submit transactions on testnet. See the
114114

115115
- [Building and signing transactions](https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/building-and-signing-tx.md)
116116

117-
Note to use the `--tesntet-magic INTEGER` flag instead of `--mainnet`.
117+
Note to use the `--testnet-magic INTEGER` flag instead of `--mainnet`.

0 commit comments

Comments
 (0)