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
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ A Solana program intended to become the `stake_deposit_authority` of a StakePool
More information in the Jito governance forum [here](https://forum.jito.network/t/jip-9-adopt-interceptor-liquidity-defense/444).

## Audit Reports
[Certora Security Report](./Certora_interceptor_security_report.pdf)

[OffsideLabs Security Report](./OffsideLabs_interceptor_report.pdf)
| Group | Date | Commit |
|--------------|------------|-------------------------------------------------------------------------------|
| Offside Labs | 2024-11-01 | [c68f476](./security-audits/offsideLabs_interceptor_report_v0.1.pdf) |
| Certora | 2024-12-01 | [62ca755](./security-audits/certora_interceptor_security_report_v0.1.pdf) |
| Certora | 2026-03-20 | [9ca381a](./security-audits/certora_jito_coinbase_integration_audit_v0.3.pdf) |

## Program State

Expand Down
4 changes: 2 additions & 2 deletions cli/src/interceptor_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ impl StakeDepositInterceptorCliHandler {
self.process_transaction(
&[ix],
&self.cli_config.signer.pubkey(),
&[self.cli_config.signer.clone()],
std::slice::from_ref(&self.cli_config.signer),
)
.await?;

Expand Down Expand Up @@ -1098,7 +1098,7 @@ impl StakeDepositInterceptorCliHandler {
self.process_transaction(
&[ix],
&self.cli_config.signer.pubkey(),
&[self.cli_config.signer.clone()],
std::slice::from_ref(&self.cli_config.signer),

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prefer not to have these types of changes in an unrelated PR - was this needed by lint with the new rust version?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, rustc 1.89.0 is required to fix this lint

2c0e5b9

image

)
.await?;

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.88.0"
channel = "1.89.0"
components = ["rustfmt", "rustc-dev", "clippy", "cargo"]
Binary file not shown.
Loading