Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cryptoadvance/specterext-liquidissuer
https://github.com/cryptoadvance/specterext-liquidissuer
specter-desktop
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cryptoadvance/specterext-liquidissuer
- Owner: cryptoadvance
- License: mit
- Created: 2022-01-20T16:58:24.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-20T08:14:39.000Z (over 2 years ago)
- Last Synced: 2024-08-08T17:43:31.715Z (3 months ago)
- Topics: specter-desktop
- Language: Python
- Homepage:
- Size: 770 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Liquid issuer
Make sure your liquid node is running on [`liquidtestnet`](https://liquidtestnet.com/) with rpc server enabled (`elementsd`, or `elements-qt` with `server=1` in `elements.conf`).
Also , you'll need an existing default wallet on that elements node, something like this:
```
elements-cli -rpcport=18891 -rpcuser=liquid -rpcpassword=liquid createwallet ""
``````
cd src # or wherever all your projects are
git clone [email protected]:cryptoadvance/liquidissuer.git# we assume that you have cloned specter-desktop in parallel with amp-issuer
cd ../specter-desktop # your specter-desktop is here
git checkout master # you need at least the master-branch
cd ../liquidissuer # jump back to liquidissuer# Use the environment from specter-desktop
. ../specter-desktop/.env/bin/activate
# Install additional requirements
pip3 install -r requirements.txt
# Start specter
python3 -m cryptoadvance.specter server --config DevelopmentConfig --debug
```Configure your specter to have the liquid node ready.
# Releasing
```
# Build
python3 -m pip install --upgrade build
python3 -m build# ... and upload
python3 -m pip install --upgrade twine
python3 -m twine upload --repository testpypi dist/*
```