Skip to content

Commit

Permalink
chore: fix docs and set v0.3 version number
Browse files Browse the repository at this point in the history
  • Loading branch information
dancoombs committed Jun 25, 2024
1 parent 3ffd875 commit cfb8a15
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ default-members = ["bin/rundler"]
resolver = "2"

[workspace.package]
version = "0.2.2"
version = "0.3.0"
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
Expand Down
5 changes: 2 additions & 3 deletions bin/rundler/src/cli/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub struct BuilderArgs {

/// Private keys to use for signing transactions
///
/// Cannot use both `builder.private_key` and `builder.aws_kms_key_ids` at the same time.
/// Cannot use both `builder.private_keys` and `builder.aws_kms_key_ids` at the same time.
#[arg(
long = "builder.private_keys",
name = "builder.private_keys",
Expand Down Expand Up @@ -138,8 +138,7 @@ pub struct BuilderArgs {
)]
pub submit_url: Option<String>,

/// If present, the url of the ETH provider that will be used to check
/// transaction status. Else will use the node http for status.
/// If true, use the submit endpoint for transaction status checks.
///
/// Only used when BUILDER_SENDER is "raw"
#[arg(
Expand Down
8 changes: 4 additions & 4 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ Here are some example commands to use the CLI:

```sh
# Run the Node subcommand with custom options
$ ./rundler node --chain_id 1337 --max_verification_gas 10000000 --disable_entry_point_v0_6
$ ./rundler node --network dev --disable_entry_point_v0_6 --node_http http://localhost:8545 --builder.private_keys 0x0000000000000000000000000000000000000000000000000000000000000001

# Run the RPC subcommand with custom options and enable JSON logging. The builder and pool will need to be running before this starts.
$ ./rundler rpc --node_http http://localhost:8545 --log.json --disable_entry_point_v0_6
# Run the RPC subcommand with custom options and enable JSON logging. The builder (localhost:50052) and pool (localhost:50051) will need to be running before this starts.
$ ./rundler rpc --network dev --node_http http://localhost:8545 --log.json --disable_entry_point_v0_6

# Run the Pool subcommand with custom options and specify a mempool config file
$ ./rundler pool --max_simulate_handle_ops_gas 15000000 --mempool_config_path mempool.json --node_http http://localhost:8545 --chain_id 8453 --disable_entry_point_v0_6
$ ./target/debug/rundler pool --network dev --max_simulate_handle_ops_gas 15000000 --mempool_config_path mempool.json --node_http http://localhost:8545 --disable_entry_point_v0_6
```

0 comments on commit cfb8a15

Please sign in to comment.