Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5c286d6
ref(commands): mv commands & clients into subdirs
tvpeter Apr 21, 2026
739dec3
ref(config): move config into config subdir
tvpeter Apr 21, 2026
2482044
ref(utils): refactor utils into utils subdir
tvpeter Apr 21, 2026
eb3a6aa
ref(persister): mv persister into wallet subdir
tvpeter Apr 21, 2026
03307c9
ref(handlers): split handlers into config, key
tvpeter Apr 21, 2026
bf0551b
ref(handlers):mv handler fns into offline & others
tvpeter Apr 21, 2026
0bf3e66
ref(handlers): split handler fns into repl
tvpeter Apr 21, 2026
3e2eec8
ref(main): update main entry point
tvpeter Apr 21, 2026
a973273
refactor(handlers): Add types for outputting data
tvpeter Apr 24, 2026
055e1fd
ref(handlers): add types for desc, key & wallets
tvpeter Apr 29, 2026
990f30a
ref(types): add simple table helper
tvpeter Apr 29, 2026
90017cd
ref(handlers): rebase bip322 feature
tvpeter Apr 29, 2026
ada3485
ref(utils): use types in desc output in utils
tvpeter Apr 29, 2026
eaa4e11
revert mod names for command and clients
tvpeter May 14, 2026
7a0e68b
update namespace and update types
tvpeter May 14, 2026
cf9d13b
ref(persister): collapse wallet subdir to persister
tvpeter May 21, 2026
528956d
ref(pretty): remove `--pretty` flag
tvpeter May 21, 2026
f77ddcc
ref(main): add run to handle routing
tvpeter May 21, 2026
dcaeb55
ref(handlers): refactor config, descr and key mods
tvpeter May 21, 2026
1b05c03
ref(handlers): fix offline, online and desc mod
tvpeter May 21, 2026
5ced5aa
refactor(output): apply generics to output mod
tvpeter May 26, 2026
f3deed8
Refactor(handlers): Define app context states
tvpeter May 29, 2026
63162be
refactor(handlers): Apply app context
tvpeter May 29, 2026
aa8876d
refactor(main): add runtime wallet module
tvpeter May 31, 2026
75b5141
refactor(sp-payment): Rebase silent payment feat
tvpeter Jun 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 14 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,6 @@ Note: You can modify the `Justfile` to reflect your nodes' configuration values.
cargo run --features rpc -- wallet -w regtest1 balance
```

## Formatting Responses using `--pretty` flag

You can optionally return outputs of commands in human-readable, tabular format instead of `JSON`. To enable this option, simply add the `--pretty` flag as a top level flag. For instance, you wallet's balance in a pretty format, you can run:

```shell
cargo run -- --pretty -n signet wallet -w {wallet_name} balance
```
This is available for wallet, key, repl and compile features. When ommitted, outputs default to `JSON`.

## Shell Completions

`bdk-cli` supports generating shell completions for Bash, Zsh, Fish, Elvish, and PowerShell. For setup instructions, run:
Expand Down
Loading
Loading