stacks-rs 0.2.0

A minimal rust toolkit to interact with the Stacks Blockchain.
Documentation
# List all available commands
[private]
default:
    @just --list --justfile {{justfile()}}

# run formatter
fmt:
    cargo +nightly fmt --all

# run formatter (check)
fmt-check:
    cargo +nightly fmt --all --check    

# run tests
test: 
    cargo nextest run

# run linters
lint: 
    cargo clippy