@ -159,7 +159,7 @@ In this task, you interact with the the contracts using the `clarity-cli` comman
When the `check` command executes successfully and exits with the stand UNIX `0` exit code.
4. Generate a Stacks address for your contract.
4. Generate a Stacks address for testing your contract.
This address is used to name your contract at launch time. You can use any existing Stacks address. For this sample, you are going to use the `generate_address` to create one for use.
@ -168,8 +168,11 @@ In this task, you interact with the the contracts using the `clarity-cli` comman
SPN7V35591YV8TMHAZYXDF2EKTGG5SR6RZZRD00Q
```
The address you generate will be different.
5. Launch the `tokens.clar` contract.
5. Copy or make note of the address you generated, you will use it in the rest of the tutorial.
6. Launch the `tokens.clar` contract and assign it to your test address.
You use the `launch` command to instantiate a contract on the Stacks blockchain. If you have dependencies between contracts, for example names.clar is dependent on tokens.clar, you must launch the dependency first.
@ -191,7 +194,7 @@ In this task, you interact with the the contracts using the `clarity-cli` comman
The database exists on your local workstation and persists through restarts of the container. You can use this database to examine the effects of your Clarity programs. The tables in the SQLite database are the following:
@ -276,7 +279,7 @@ In this section, you use the public `mint!` function in the `tokens` contract t
4. Try minting some tokens and sending them to an address we'll use for our demo.