mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-06-07 01:29:27 +00:00
12 lines
385 B
Bash
12 lines
385 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
cargo install --path wallet --force
|
||
|
|
|
||
|
|
# Install appropriate version of `keycard-py`.
|
||
|
|
git clone --branch lee-schnorr --single-branch https://github.com/bitgamma/keycard-py.git keycard_wallet/python/keycard-py
|
||
|
|
|
||
|
|
# Set up virtual environment.
|
||
|
|
python3 -m venv venv
|
||
|
|
source venv/bin/activate
|
||
|
|
pip install pyscard mnemonic ecdsa pyaes
|
||
|
|
pip install -e keycard_wallet/python/keycard-py
|