slotstrike 1.0.0

Low-latency Solana slotstrike runtime for event-driven token execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
use std::{
    borrow::Borrow,
    fmt::{Display, Formatter},
    num::NonZeroUsize,
    sync::Arc,
};

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum TxSubmissionMode {
    Jito,
    Direct,
}

impl TxSubmissionMode {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "jito" => Some(Self::Jito),
            "direct" => Some(Self::Direct),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Jito => "jito",
            Self::Direct => "direct",
        }
    }
}

impl Display for TxSubmissionMode {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofIngressSource {
    Websocket,
    Grpc,
    PrivateShred,
}

impl SofIngressSource {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "websocket" | "ws" => Some(Self::Websocket),
            "grpc" | "yellowstone_grpc" => Some(Self::Grpc),
            "private_shred" | "private-propagation" | "shred" => Some(Self::PrivateShred),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Websocket => "websocket",
            Self::Grpc => "grpc",
            Self::PrivateShred => "private_shred",
        }
    }
}

impl Display for SofIngressSource {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofCommitmentLevel {
    Processed,
    Confirmed,
    Finalized,
}

impl SofCommitmentLevel {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "processed" => Some(Self::Processed),
            "confirmed" => Some(Self::Confirmed),
            "finalized" => Some(Self::Finalized),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Processed => "processed",
            Self::Confirmed => "confirmed",
            Self::Finalized => "finalized",
        }
    }
}

impl Display for SofCommitmentLevel {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofGossipRuntimeMode {
    Full,
    BootstrapOnly,
    ControlPlaneOnly,
}

impl SofGossipRuntimeMode {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "full" => Some(Self::Full),
            "bootstrap_only" | "bootstrap-only" => Some(Self::BootstrapOnly),
            "control_plane_only" | "control-plane-only" | "topology_only" | "topology-only" => {
                Some(Self::ControlPlaneOnly)
            }
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Full => "full",
            Self::BootstrapOnly => "bootstrap_only",
            Self::ControlPlaneOnly => "control_plane_only",
        }
    }
}

impl Display for SofGossipRuntimeMode {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofTxMode {
    Rpc,
    Jito,
    Direct,
    Hybrid,
    Custom,
}

impl SofTxMode {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "rpc" | "rpc_only" => Some(Self::Rpc),
            "jito" | "jito_only" => Some(Self::Jito),
            "direct" | "direct_only" => Some(Self::Direct),
            "hybrid" => Some(Self::Hybrid),
            "custom" => Some(Self::Custom),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Rpc => "rpc",
            Self::Jito => "jito",
            Self::Direct => "direct",
            Self::Hybrid => "hybrid",
            Self::Custom => "custom",
        }
    }
}

impl Display for SofTxMode {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofTxStrategy {
    OrderedFallback,
    AllAtOnce,
}

impl SofTxStrategy {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "ordered_fallback" | "ordered" => Some(Self::OrderedFallback),
            "all_at_once" | "burst" => Some(Self::AllAtOnce),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::OrderedFallback => "ordered_fallback",
            Self::AllAtOnce => "all_at_once",
        }
    }
}

impl Display for SofTxStrategy {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofTxRoute {
    Rpc,
    Jito,
    Direct,
}

impl SofTxRoute {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "rpc" => Some(Self::Rpc),
            "jito" => Some(Self::Jito),
            "direct" => Some(Self::Direct),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::Rpc => "rpc",
            Self::Jito => "jito",
            Self::Direct => "direct",
        }
    }
}

impl Display for SofTxRoute {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofTxReliability {
    LowLatency,
    Balanced,
    HighReliability,
}

impl SofTxReliability {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "low_latency" | "low" => Some(Self::LowLatency),
            "balanced" => Some(Self::Balanced),
            "high_reliability" | "high" => Some(Self::HighReliability),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::LowLatency => "low_latency",
            Self::Balanced => "balanced",
            Self::HighReliability => "high_reliability",
        }
    }
}

impl Display for SofTxReliability {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum SofTxJitoTransport {
    JsonRpc,
    Grpc,
}

impl SofTxJitoTransport {
    pub fn parse(value: &str) -> Option<Self> {
        let normalized = value.trim().to_ascii_lowercase();
        match normalized.as_str() {
            "json_rpc" | "json-rpc" | "rpc" => Some(Self::JsonRpc),
            "grpc" => Some(Self::Grpc),
            _ => None,
        }
    }

    #[inline(always)]
    pub const fn as_str(self) -> &'static str {
        match self {
            Self::JsonRpc => "json_rpc",
            Self::Grpc => "grpc",
        }
    }
}

impl Display for SofTxJitoTransport {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

#[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct PriorityFeesMicrolamports(u64);

impl PriorityFeesMicrolamports {
    #[inline(always)]
    pub const fn new(value: u64) -> Self {
        Self(value)
    }

    #[inline(always)]
    pub const fn as_u64(self) -> u64 {
        self.0
    }
}

#[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct ReplayEventCount(NonZeroUsize);

impl ReplayEventCount {
    pub fn new(value: usize) -> Result<Self, &'static str> {
        NonZeroUsize::new(value)
            .map(Self)
            .ok_or("replay event count must be greater than 0")
    }

    #[inline(always)]
    pub const fn get(self) -> usize {
        self.0.get()
    }
}

#[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct ReplayBurstSize(NonZeroUsize);

impl ReplayBurstSize {
    pub fn new(value: usize) -> Result<Self, &'static str> {
        NonZeroUsize::new(value)
            .map(Self)
            .ok_or("replay burst size must be greater than 0")
    }

    #[inline(always)]
    pub const fn get(self) -> usize {
        self.0.get()
    }
}

#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct NonEmptyText(Arc<str>);

impl NonEmptyText {
    pub fn new(value: impl Into<Arc<str>>) -> Result<Self, &'static str> {
        let value = value.into();
        if value.trim().is_empty() {
            return Err("text value must not be empty");
        }

        Ok(Self(value))
    }

    #[inline(always)]
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl AsRef<str> for NonEmptyText {
    #[inline(always)]
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl Borrow<str> for NonEmptyText {
    #[inline(always)]
    fn borrow(&self) -> &str {
        self.as_str()
    }
}

impl Display for NonEmptyText {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.as_str())
    }
}

impl TryFrom<String> for NonEmptyText {
    type Error = &'static str;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        Self::new(Arc::<str>::from(value))
    }
}

impl TryFrom<&str> for NonEmptyText {
    type Error = &'static str;

    fn try_from(value: &str) -> Result<Self, Self::Error> {
        Self::new(Arc::<str>::from(value.to_owned()))
    }
}

#[cfg(test)]
mod tests {
    use super::{
        NonEmptyText, PriorityFeesMicrolamports, ReplayBurstSize, ReplayEventCount,
        SofGossipRuntimeMode, TxSubmissionMode,
    };

    #[test]
    fn parses_tx_submission_mode() {
        assert_eq!(
            TxSubmissionMode::parse("jito"),
            Some(TxSubmissionMode::Jito)
        );
        assert_eq!(
            TxSubmissionMode::parse("DIRECT"),
            Some(TxSubmissionMode::Direct)
        );
    }

    #[test]
    fn rejects_invalid_tx_submission_mode() {
        assert_eq!(TxSubmissionMode::parse("invalid"), None);
    }

    #[test]
    fn parses_gossip_runtime_modes() {
        assert_eq!(
            SofGossipRuntimeMode::parse("full"),
            Some(SofGossipRuntimeMode::Full)
        );
        assert_eq!(
            SofGossipRuntimeMode::parse("bootstrap-only"),
            Some(SofGossipRuntimeMode::BootstrapOnly)
        );
        assert_eq!(
            SofGossipRuntimeMode::parse("topology_only"),
            Some(SofGossipRuntimeMode::ControlPlaneOnly)
        );
    }

    #[test]
    fn requires_non_empty_text() {
        assert!(NonEmptyText::try_from("vendor".to_owned()).is_ok());
        assert!(NonEmptyText::try_from(" ".to_owned()).is_err());
    }

    #[test]
    fn keeps_priority_fee_scalar() {
        let value = PriorityFeesMicrolamports::new(42);
        assert_eq!(value.as_u64(), 42);
    }

    #[test]
    fn enforces_non_zero_replay_counts() {
        assert!(ReplayEventCount::new(1).is_ok());
        assert!(ReplayEventCount::new(0).is_err());
        assert!(ReplayBurstSize::new(1).is_ok());
        assert!(ReplayBurstSize::new(0).is_err());
    }
}