mirror of
https://github.com/payden/libwsclient
synced 2025-06-13 12:53:52 +00:00
6 lines
144 B
Rust
6 lines
144 B
Rust
|
use solana_sdk::transaction::Transaction;
|
||
|
|
||
|
pub struct MevOpportunity {
|
||
|
pub transactions: Vec<(Transaction, f64)>,
|
||
|
pub min_profit: f64,
|
||
|
}
|