Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 02-build-transactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Now we need to define how much we want to transfer. It needs to be less than the
TRANSFER_AMOUNT="999920"
```

Now we are ready to build the first transaction to calculate our fee and save it in a file called matx.raw. We will reference the variables in our transaction to improve readability because we saved almost all of the needed values in variables. This is what our transaction looks like:
Now we are ready to build the first transaction to calculate our fee and save it in a file called transfer.raw. We will reference the variables in our transaction to improve readability because we saved almost all of the needed values in variables. This is what our transaction looks like:

```sh
cardano-cli transaction build \
Expand Down Expand Up @@ -94,4 +94,4 @@ Congratulations, we have now successfully transfered some ADA. After a couple of

```sh
cardano-cli query utxo --address $OTHER_ADDRESS --testnet-magic $CARDANO_NODE_MAGIC
```
```