mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-06-06 00:59:28 +00:00
BREAKING CHANGE: LEZ crates have been moved from top-level directories into
a dedicated `lez/` subdirectory. The following crates were relocated:
common → lez/common
indexer → lez/indexer
explorer_service→ lez/explorer_service
keycard_wallet → lez/keycard_wallet
mempool → lez/mempool
sequencer → lez/sequencer
storage → lez/storage
testnet_initial_state → lez/testnet_initial_state
wallet → lez/wallet
wallet-ffi → lez/wallet-ffi
Any external tooling, scripts, or paths referencing these crates at their
previous top-level locations must be updated.
12 lines
397 B
Bash
Executable File
12 lines
397 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cargo install --path lez/wallet --force
|
|
|
|
# Install appropriate version of `keycard-py`.
|
|
git clone --branch lee-schnorr --single-branch https://github.com/bitgamma/keycard-py.git lez/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 lez/keycard_wallet/python/keycard-py |