Skip to content

Commit

Permalink
Merge pull request #25 from Chia-Network/EL.readme-update
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
geoffwalmsley authored Mar 16, 2023
2 parents caa4b26 + 92eb32e commit 3f13bdb
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
## Setup Instructions
- Stop any running wallet/node instances: `chia stop -d all`

- Clone this repo, create/activate a new virtual environment
- Clone this repo, create/activate a new virtual environment and update pip. Note instructions for createing the python venv may vary depending on your OS
```bash
git clone https://github.com/Chia-Network/chia-nft-minting-tool.git
cd chia-nft-minting-tool
python3 -m venv venv
source ./venv/bin/activate
pip install --upgrade pip
```

- Install chianft and the necessary chia-blockchain branch (make sure to include the '.' at the end):
Expand Down Expand Up @@ -79,7 +83,16 @@ Tests are located in the tests directory. To run them, make sure to install the
pip install --extra-index https://pypi.chia.net/simple/ --editable .[dev]
```

To run the tests use:
Then you need to setup the simulator, run the wallet, and create a DID:
```
chia init
cdv sim create
export CHIA_ROOT=~/.chia/simulator/main/
chia start wallet
chia wallet did create
```

Now, you can run the tests:
```bash
pytest tests/test_mint.py
```
Expand Down

0 comments on commit 3f13bdb

Please sign in to comment.