1
0
mirror of https://github.com/payden/libwsclient synced 2025-06-13 12:53:52 +00:00
payden_libwsclient/models/mev_opportunity.rs

6 lines
144 B
Rust
Raw Permalink Normal View History

2025-05-16 06:09:24 +00:00
use solana_sdk::transaction::Transaction;
pub struct MevOpportunity {
pub transactions: Vec<(Transaction, f64)>,
pub min_profit: f64,
}