#!/usr/bin/env bash set -euo pipefail python3 --version pip install -r requirements.txt cd ../bdk-ffi/ rustup default 1.77.1 rustup target add aarch64-apple-darwin echo "Generating native binaries..." cargo build --profile release-smaller --target aarch64-apple-darwin echo "Generating bdk.py..." cargo run --bin uniffi-bindgen generate --library ./target/aarch64-apple-darwin/release-smaller/libbdkffi.dylib --language python --out-dir ../bdk-python/src/bdkpython/ --no-format echo "Copying libraries libbdkffi.dylib..." cp ./target/aarch64-apple-darwin/release-smaller/libbdkffi.dylib ../bdk-python/src/bdkpython/libbdkffi.dylib echo "All done!"