https://github.com/chia-network/cat-admin-tool
Admin tool for issuing CATs
https://github.com/chia-network/cat-admin-tool
chia chia-blockchain chialisp
Last synced: 5 months ago
JSON representation
Admin tool for issuing CATs
- Host: GitHub
- URL: https://github.com/chia-network/cat-admin-tool
- Owner: Chia-Network
- License: apache-2.0
- Created: 2021-11-11T17:26:07.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-12T13:27:08.000Z (7 months ago)
- Last Synced: 2025-06-12T14:36:43.847Z (7 months ago)
- Topics: chia, chia-blockchain, chialisp
- Language: Python
- Homepage: https://devs.chia.net/guides/cat-creation-tutorial/#cat-admin-tool
- Size: 735 KB
- Stars: 19
- Watchers: 30
- Forks: 14
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CAT Admin Tool
=======
Install
-------
**Ubuntu/MacOSs**
```
git clone https://github.com/Chia-Network/CAT-admin-tool.git
cd CAT-admin-tool
python3 -m venv venv
. ./venv/bin/activate
python -m pip install --upgrade pip setuptools wheel
pip install .
pip install chia-dev-tools --no-deps
pip install pytest
```
(If you're on an M1 Mac, make sure you are running an ARM64 native python virtual environment)
**Windows Powershell**
```
git clone https://github.com/Chia-Network/CAT-admin-tool.git
cd CAT-admin-tool
py -m venv venv
./venv/Scripts/activate
python -m pip install --upgrade pip setuptools wheel
pip install .
pip install chia-dev-tools --no-deps
pip install pytest
```
Lastly this requires a synced, running light wallet
Verify the installation was successful
```
cats --help
cdv --help
```
Examples can be found in the [CAT Creation Tutorial](https://docs.chia.net/guides/cat-creation-tutorial/#cat-admin-tool)