Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0876b6b
ref(commands): mv commands & clients into subdirs
tvpeter Apr 21, 2026
c94b3fd
ref(config): move config into config subdir
tvpeter Apr 21, 2026
616713d
ref(utils): refactor utils into utils subdir
tvpeter Apr 21, 2026
0c1f0e7
ref(persister): mv persister into wallet subdir
tvpeter Apr 21, 2026
b6d86c9
ref(handlers): split handlers into config, key
tvpeter Apr 21, 2026
6a37493
ref(handlers):mv handler fns into offline & others
tvpeter Apr 21, 2026
374cd3b
ref(handlers): split handler fns into repl
tvpeter Apr 21, 2026
0e9c6da
ref(main): update main entry point
tvpeter Apr 21, 2026
b5edf0e
refactor(handlers): Add types for outputting data
tvpeter Apr 24, 2026
29d3f08
ref(handlers): add types for desc, key & wallets
tvpeter Apr 29, 2026
2bf4cfc
ref(types): add simple table helper
tvpeter Apr 29, 2026
2ce28b2
ref(handlers): rebase bip322 feature
tvpeter Apr 29, 2026
70965f0
ref(utils): use types in desc output in utils
tvpeter Apr 29, 2026
a8f3873
revert mod names for command and clients
tvpeter May 14, 2026
345adc9
update namespace and update types
tvpeter May 14, 2026
180df23
ref(persister): collapse wallet subdir to persister
tvpeter May 21, 2026
1d476d4
ref(pretty): remove `--pretty` flag
tvpeter May 21, 2026
389bf5c
ref(main): add run to handle routing
tvpeter May 21, 2026
306069a
ref(handlers): refactor config, descr and key mods
tvpeter May 21, 2026
de1fc98
ref(handlers): fix offline, online and desc mod
tvpeter May 21, 2026
8229c7b
refactor(output): apply generics to output mod
tvpeter May 26, 2026
d435c1b
Refactor(handlers): Define app context states
tvpeter May 29, 2026
1f37ef2
refactor(handlers): Apply app context
tvpeter May 29, 2026
53a6566
refactor(main): add runtime wallet module
tvpeter May 31, 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 @@ -229,15 +229,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