You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/05-cardano-testnet/03-getting-started.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Another possible option to [configure the node is using YAML](https://github.com
54
54
55
55
## Working with the Cardano testnet
56
56
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.
58
58
59
59
The Cardano public testnet integer is `1097911063`.
60
60
@@ -81,22 +81,22 @@ cardano-cli address build \
81
81
--payment-verification-key-file payment.vkey \
82
82
--stake-verification-key-file stake.vkey \
83
83
--out-file payment.addr \
84
-
--tesntet-magic INTEGER
84
+
--testnet-magic INTEGER
85
85
```
86
86
87
87
To query the balance of the address, run:
88
88
89
89
```
90
90
cardano-cli query utxo \
91
91
--address $(cat payment.addr) \
92
-
--tesntet-magic INTEGER
92
+
--testnet-magic INTEGER
93
93
```
94
94
95
95
For more commands, see:
96
96
97
97
-[Creating keys and addresses](https://github.com/input-output-hk/cardano-node/blob/master/doc/stake-pool-operations/keys_and_addresses.md)
98
98
99
-
Note to use the `--tesntet-magic INTEGER` flag instead of `--mainnet`.
99
+
Note to use the `--testnet-magic INTEGER` flag instead of `--mainnet`.
100
100
101
101
### Funding the address using a faucet
102
102
@@ -114,4 +114,4 @@ You’re now ready to create, sign, and submit transactions on testnet. See the
114
114
115
115
-[Building and signing transactions](https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/building-and-signing-tx.md)
116
116
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