Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bolt-cli revamp: add Dirk support #309

Merged
merged 16 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from 15 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
46 changes: 46 additions & 0 deletions .github/workflows/bolt_cli_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Bolt CLI CI

on:
push:
paths:
- "bolt-cli/**"
pull_request:
paths:
- "bolt-cli/**"

env:
CARGO_TERM_COLOR: always

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
cargo-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RUST_BACKTRACE: 1

steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Cache cargo registry
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-nextest

- name: Run bolt-cli tests
run: cd bolt-cli && cargo nextest run --workspace --retries 3
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,8 @@ In particular, the core components are:
such as proposer registration and permissionless dispute resolution for attributable faults.
- [**Bolt Boost**](./bolt-boost/): A [Commit-Boost][commit-boost] module that implements the
Constraints-API and is compatible with the Bolt Sidecar.
- [**Bolt client**](./bolt-client/): A CLI tool to send preconfirmations on enabled test networks.
- [**Bolt Kurtosis client**](./bolt-kurtosis-client/): A CLI tool to send preconfirmations on our Kurtosis devnet.
- [**Bolt delegations CLI**](./bolt-delegations-cli/): A CLI tool to generate signed delegation and revocation messages for ETH validators.
- [**Bolt CLI**](./bolt-cli/): A CLI tool to interact with Bolt contracts, register proposers,
and submit transactions to the Bolt Sidecar.
- [**Testnets**](./testnets/): A set of guides and scripts to deploy the Bolt contracts on testnets.

Additionally, this repository contains the necessary scripts to spin up a [Kurtosis][kurtosis]
Expand Down
7 changes: 7 additions & 0 deletions bolt-cli/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/target

.env
.env.*

delegations.json
pubkeys.json
Loading
Loading