Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1094,9 +1094,10 @@ Watch the network for contract events
Default value: `pretty`

Possible values:
- `pretty`: Colorful, human-oriented console output
- `plain`: Human-oriented console output without colors
- `json`: JSON formatted console output
- `pretty`: Human-readable output with decoded event names and parameters
- `plain`: Human-readable output without colors
- `json`: JSON output with decoded event names and parameters
- `raw`: Raw event output without self-describing decoding

- `-c`, `--count <COUNT>` — The maximum number of events to display (defer to the server-defined limit)

Expand Down
2 changes: 2 additions & 0 deletions cmd/crates/soroban-spec-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ crate-type = ["rlib"]
soroban-spec = { workspace = true }
stellar-strkey = { workspace = true }
stellar-xdr = { workspace = true, features = ["curr", "std", "serde", "base64"] }
serde = { workspace = true }
serde_json = { workspace = true }
itertools = { workspace = true }
ethnum = { workspace = true }
hex = { workspace = true }
wasmparser = { workspace = true }
base64 = { workspace = true }
thiserror = "1.0.31"
indexmap = { version = "2.7", features = ["serde"] }


[dev-dependencies]
Expand Down
Loading