switchboard-on-demand 0.12.1

A Rust library to interact with the Switchboard Solana program.
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
//! Oracle quote verification for creating and verifying oracle data quotes
//!
//! This module provides the `QuoteVerifier` which allows you to construct
//! a verifier with specific accounts and parameters, then use it to verify ED25519
//! instruction data and create validated `OracleQuote` instances.
//!
//! The verification process checks:
//! - ED25519 signature validity
//! - Oracle signing key authorization
//! - Slot hash verification against the sysvar
//! - Quote age validation against max_age parameter (requires clock sysvar)
//! - Oracle quote data integrity
//!
//! For debugging or analysis purposes, the verifier also provides `parse_unverified` methods
//! that extract quote structure without performing security validations.

use core::ptr::read_unaligned;

use anyhow::{bail, Error as AnyError};
// Conditional import for non-pinocchio builds
#[cfg(not(feature = "pinocchio"))]
use solana_program::sysvar::instructions::get_instruction_relative;

use crate::prelude::*;
// Use our AccountInfo type alias that conditionally uses pinocchio or anchor/solana-program
use crate::AccountInfo;
use crate::{
    borrow_account_data, check_p64_eq, check_pubkey_eq, get_account_key, solana_program,
    AsAccountInfo,
};
#[allow(unused_imports)]
use crate::{ON_DEMAND_DEVNET_PID, ON_DEMAND_MAINNET_PID};

/// Maximum number of slots stored in the slot hash sysvar
const SYSVAR_SLOT_LEN: u64 = 512;

/// Oracle quote verifier with builder pattern for configuring and performing verification.
///
/// This verifier allows you to configure the required accounts step by step before
/// using it to verify oracle quotes. All required accounts must be set before
/// verification can be performed.
///
/// The verifier accepts any type that implements `AsAccountInfo`, making it compatible
/// with Anchor wrapper types like `AccountLoader`, `Sysvar`, etc., as well as pinocchio AccountInfo.
///
/// # Example with Anchor Context
/// ```rust,ignore
/// use anchor_lang::prelude::*;
/// use switchboard_on_demand::QuoteVerifier;
///
/// pub fn verify(ctx: Context<VerifyCtx>) -> Result<()> {
///     let VerifyCtx { queue, oracle, sysvars, .. } = ctx.accounts;
///     let clock_slot = switchboard_on_demand::clock::get_slot(&sysvars.clock);
///
///     let quote = QuoteVerifier::new()
///         .queue(&queue)
///         .slothash_sysvar(&sysvars.slothashes)
///         .ix_sysvar(&sysvars.instructions)
///         .clock_slot(clock_slot)
///         .verify_account(&oracle)
///         .unwrap();
///
///     // Use the verified quote data
///     for feed in quote.feeds() {
///         msg!("Feed {}: {}", feed.hex_id(), feed.value());
///     }
///     Ok(())
/// }
/// ```
#[derive(Clone)]
#[cfg(feature = "pinocchio")]
pub struct QuoteVerifier<'a> {
    queue: Option<&'a AccountInfo>,
    slothash_sysvar: Option<&'a AccountInfo>,
    ix_sysvar: Option<&'a AccountInfo>,
    clock_slot: Option<u64>,
    max_age: u64,
}

#[derive(Clone)]
#[cfg(not(feature = "pinocchio"))]
pub struct QuoteVerifier<'a> {
    queue: Option<AccountInfo<'a>>,
    slothash_sysvar: Option<AccountInfo<'a>>,
    ix_sysvar: Option<AccountInfo<'a>>,
    clock_slot: Option<u64>,
    max_age: u64,
}

#[cfg(feature = "pinocchio")]
impl<'a> Default for QuoteVerifier<'a> {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(not(feature = "pinocchio"))]
impl<'a> Default for QuoteVerifier<'a> {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(feature = "pinocchio")]
impl<'a> QuoteVerifier<'a> {
    /// Creates a new `QuoteVerifier` with default values.
    #[inline(always)]
    pub fn new() -> Self {
        Self {
            queue: None,
            slothash_sysvar: None,
            ix_sysvar: None,
            clock_slot: None,
            max_age: 30,
        }
    }

    /// Sets the oracle queue account for verification.
    ///
    /// The queue account contains the authorized oracle signing keys that will
    /// be used to validate the signatures in the oracle quote.
    ///
    /// # Arguments
    /// * `account` - Any type that implements `AsAccountInfo` (e.g., `AccountLoader`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Example
    /// ```rust,ignore
    /// verifier.queue(&ctx.accounts.queue);  // Works with Anchor AccountLoader
    /// verifier.queue(&account_info);        // Works with AccountInfo reference
    /// verifier.queue(&pinocchio_account);   // Works with pinocchio AccountInfo
    /// ```
    #[inline(always)]
    pub fn queue(&mut self, account: &'a AccountInfo) -> &mut Self {
        self.queue = Some(account);
        self
    }

    /// Sets the slot hash sysvar account for verification.
    ///
    /// The slot hash sysvar is used to validate that the signed slot hash
    /// in the oracle quote corresponds to a valid historical slot.
    ///
    /// # Arguments
    /// * `sysvar` - Any type that implements `AsAccountInfo` (e.g., `Sysvar<SlotHashes>`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Example
    /// ```rust,ignore
    /// verifier.slothash_sysvar(&ctx.accounts.slothashes);  // Works with Anchor Sysvar
    /// verifier.slothash_sysvar(&slothash_account);         // Works with AccountInfo reference
    /// verifier.slothash_sysvar(&pinocchio_account);        // Works with pinocchio AccountInfo
    /// ```
    #[inline(always)]
    pub fn slothash_sysvar(&mut self, sysvar: &'a AccountInfo) -> &mut Self {
        self.slothash_sysvar = Some(sysvar);
        self
    }

    /// Sets the instructions sysvar account for verification.
    ///
    /// The instructions sysvar contains the ED25519 instruction data that
    /// will be parsed to extract the oracle signatures and quote data.
    ///
    /// # Arguments
    /// * `sysvar` - Any type that implements `AsAccountInfo` (e.g., `Sysvar<Instructions>`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Example
    /// ```rust,ignore
    /// verifier.ix_sysvar(&ctx.accounts.instructions);  // Works with Anchor Sysvar
    /// verifier.ix_sysvar(&ix_account);                 // Works with AccountInfo reference
    /// verifier.ix_sysvar(&pinocchio_account);          // Works with pinocchio AccountInfo
    /// ```
    #[inline(always)]
    pub fn ix_sysvar(&mut self, sysvar: &'a AccountInfo) -> &mut Self {
        self.ix_sysvar = Some(sysvar);
        self
    }

    /// Sets the clock slot for freshness validation.
    #[inline(always)]
    pub fn clock_slot(&mut self, clock_slot: u64) -> &mut Self {
        self.clock_slot = Some(clock_slot);
        self
    }

    /// Sets the maximum age in slots for oracle quote freshness validation.
    ///
    /// Oracle quotes older than this many slots will be rejected during verification.
    /// This helps prevent replay attacks and ensures data freshness.
    ///
    /// # Arguments
    /// * `max_age` - Maximum age in slots (typically 100-500 slots)
    #[inline(always)]
    pub fn max_age(&mut self, max_age: u64) -> &mut Self {
        self.max_age = max_age;
        self
    }

    /// Verifies an oracle account containing oracle quote data.
    ///
    /// This method extracts the oracle quote data from an oracle account (skipping the
    /// 8-byte discriminator) and verifies it using the configured accounts.
    ///
    /// # Arguments
    /// * `oracle_account` - Any type that implements `AsAccountInfo` containing the oracle quote data
    ///   (e.g., `AccountLoader<SwitchboardQuote>`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully verified oracle quote with feed data
    /// * `Err(AnyError)` - Verification failed (invalid signatures, expired data, etc.)
    ///
    /// # Example
    /// ```rust,ignore
    /// let quote = verifier.verify_account(&ctx.accounts.oracle)?;
    /// for feed in quote.feeds() {
    ///     println!("Feed {}: ${}", feed.hex_id(), feed.value());
    /// }
    /// ```
    #[cfg(feature = "pinocchio")]
    #[inline(always)]
    pub fn verify_account<'data, T>(
        &self,
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = unsafe { account_info.borrow_data_unchecked() };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        unsafe {
            if read_unaligned(oracle_data.as_ptr() as *const u64) != QUOTE_DISCRIMINATOR_U64_LE {
                bail!("Invalid oracle account discriminator");
            }
        }

        self.verify_delimited(&oracle_data[40..])
    }

    #[cfg(not(feature = "pinocchio"))]
    #[inline(always)]
    pub fn verify_account<'data, T>(
        &self,
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = unsafe { &*account_info.data.as_ptr() };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        unsafe {
            if read_unaligned(oracle_data.as_ptr() as *const u64) != QUOTE_DISCRIMINATOR_U64_LE {
                bail!("Invalid oracle account discriminator");
            }
        }

        self.verify_delimited(&oracle_data[40..])
    }

    /// Verifies raw ED25519 instruction data and creates a validated OracleQuote.
    ///
    /// This is the core verification method that performs all security checks:
    /// - Parses ED25519 signatures and extracts oracle indices
    /// - Validates oracle signing keys against the queue
    /// - Verifies slot hash against the sysvar
    /// - Validates quote age against max_age (requires clock sysvar)
    /// - Ensures oracle quote data integrity
    ///
    /// # Arguments
    /// * `data` - Raw ED25519 instruction data containing signatures and quote
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully verified and parsed oracle quote
    /// * `Err(AnyError)` - Verification failed with detailed error message
    ///
    /// # Errors
    /// - Clock slot not set
    /// - No signatures provided
    /// - Invalid oracle signing keys
    /// - Slot hash mismatch
    /// - Quote is too old (exceeds max_age slots)
    /// - Malformed instruction data
    #[inline(always)]
    pub fn verify_delimited<'data>(
        &self,
        data: &'data [u8],
    ) -> Result<OracleQuote<'data>, AnyError> {
        // # Safety
        //
        // This unsafe block is safe because:
        // - We verify `data` has at least 2 bytes before reading the length
        // - `read_unaligned` safely reads u16 from potentially unaligned memory
        // - The bounds check ensures we don't read beyond the data buffer
        // - Data slice is guaranteed valid for the function duration
        if data.len() < 2 {
            bail!("Data too small for length prefix: {} bytes", data.len());
        }
        unsafe {
            let len = read_unaligned(data.as_ptr() as *const u16) as usize;
            if data.len() < len + 2 {
                bail!(
                    "Data length mismatch: expected {}, got {}",
                    len + 2,
                    data.len()
                );
            }
            self.verify(&data[2..len + 2])
        }
    }

    /// Parses oracle quote data without performing any verification checks.
    ///
    /// This method extracts the quote structure from ED25519 instruction data
    /// but skips all security validations including:
    /// - Clock/age validation
    /// - Signature verification
    /// - Oracle key authorization
    /// - Slot hash verification
    ///
    /// **WARNING**: This method should only be used for debugging, analysis, or
    /// scenarios where verification is handled separately. Never use unverified
    /// quotes for production decisions.
    ///
    /// # Arguments
    /// * `data` - Raw ED25519 instruction data containing signatures and quote
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully parsed oracle quote (unverified)
    /// * `Err(AnyError)` - Failed to parse the quote data structure
    ///
    /// # Example
    /// ```rust,ignore
    /// // Parse quote without verification (use cautiously)
    /// let unverified_quote = verifier.parse_unverified(&instruction_data)?;
    /// println!("Quote contains {} feeds", unverified_quote.feeds().len());
    /// ```
    #[inline(always)]
    pub fn parse_unverified<'data>(
        &self,
        data: &'data [u8],
    ) -> Result<OracleQuote<'data>, AnyError> {
        let (parsed_sigs, sig_count, oracle_idxs, recent_slot, version) =
            Ed25519Sysvar::parse_instruction(data)?;

        if sig_count == 0 {
            bail!("No signatures provided");
        }

        let reference_sig = &parsed_sigs[0];
        let reference_feed_infos = unsafe { reference_sig.feed_infos() };
        let feed_count = reference_feed_infos.len();

        Ok(OracleQuote::new(
            unsafe { reference_sig.quote_header() },
            sig_count,
            reference_feed_infos,
            feed_count as u8,
            oracle_idxs,
            recent_slot,
            version,
            data,
        ))
    }

    /// Parses oracle quote data from an account without performing verification checks.
    ///
    /// This is a convenience method that extracts quote data from a Switchboard
    /// oracle account and parses it without any security validations.
    ///
    /// **WARNING**: This method should only be used for debugging, analysis, or
    /// scenarios where verification is handled separately. Never use unverified
    /// quotes for production decisions.
    ///
    /// # Arguments
    /// * `oracle_account` - Oracle account containing quote data
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully parsed oracle quote (unverified)
    /// * `Err(AnyError)` - Failed to parse the account or quote data
    ///
    /// # Example
    /// ```rust,ignore
    /// // Parse account quote without verification (use cautiously)
    /// let unverified_quote = verifier.parse_account_unverified(&oracle_account)?;
    /// ```
    #[cfg(feature = "pinocchio")]
    #[inline(always)]
    pub fn parse_account_unverified<'data, T>(
        &self,
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = unsafe { account_info.borrow_data_unchecked() };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        self.parse_unverified_delimited(&oracle_data[40..])
    }

    #[cfg(not(feature = "pinocchio"))]
    #[inline(always)]
    pub fn parse_account_unverified<'data, T>(
        &self,
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = unsafe { &*account_info.data.as_ptr() };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        self.parse_unverified_delimited(&oracle_data[40..])
    }

    /// Parses length-delimited oracle quote data without verification checks.
    ///
    /// This method handles the length prefix parsing and delegates to `parse_unverified`.
    ///
    /// # Arguments
    /// * `data` - Length-delimited ED25519 instruction data
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully parsed oracle quote (unverified)
    /// * `Err(AnyError)` - Failed to parse the data
    #[inline(always)]
    pub fn parse_unverified_delimited<'data>(
        &self,
        data: &'data [u8],
    ) -> Result<OracleQuote<'data>, AnyError> {
        if data.len() < 2 {
            bail!("Data too small for length prefix: {} bytes", data.len());
        }
        unsafe {
            let len = read_unaligned(data.as_ptr() as *const u16) as usize;
            if data.len() < len + 2 {
                bail!(
                    "Data length mismatch: expected {}, got {}",
                    len + 2,
                    data.len()
                );
            }
            self.parse_unverified(&data[2..len + 2])
        }
    }

    /// Verifies oracle quote data and returns a validated OracleQuote
    pub fn verify<'data>(&self, data: &'data [u8]) -> Result<OracleQuote<'data>, AnyError> {
        let (parsed_sigs, sig_count, oracle_idxs, recent_slot, version) =
            Ed25519Sysvar::parse_instruction(data)?;
        let queue = self
            .queue
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Queue account not set"))?;
        let slothash_sysvar = self
            .slothash_sysvar
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Slothash sysvar not set"))?;

        // Validate quote freshness - clock slot is required for all verifications
        let clock_slot = self
            .clock_slot
            .ok_or_else(|| anyhow::anyhow!("Clock slot not set"))?;
        if clock_slot < recent_slot || clock_slot - recent_slot > self.max_age {
            bail!(
                "Quote is too old: recent_slot={}, current_slot={}, max_age={}",
                recent_slot,
                clock_slot,
                self.max_age
            );
        }

        if sig_count == 0 {
            bail!("No signatures provided");
        }

        // Get queue data for oracle signing keys
        // Safely access queue data using RefCell borrow and try_from_bytes
        let queue_buf = unsafe { borrow_account_data!(queue) };
        if queue_buf.len() != 6280 {
            bail!("Queue account too small: {} bytes", queue_buf.len());
        }
        let queue_data: &QueueAccountData =
            unsafe { &*(queue_buf.as_ptr().add(8) as *const QueueAccountData) };

        // Find the target slothash from the oracle quote
        let reference_sig = &parsed_sigs[0];
        let header = unsafe { reference_sig.quote_header() };

        // Find the target slothash from oracle quote and get corresponding hash from sysvar
        let target_slothash = &header.signed_slothash as *const _ as *const u64;
        let found_slothash =
            &Self::find_slothash_in_sysvar(recent_slot, slothash_sysvar)? as *const _ as *const u64;

        assert!(unsafe { check_p64_eq(found_slothash, target_slothash) });

        // Oracle signing key validation (32 bytes per oracle: actual should match expected)
        for i in 0..sig_count {
            // Branchless bounds check,  30 is max oracles in queue
            let oracle_idx = (oracle_idxs[i as usize] as usize) % 30;
            let expected_oracle_key = queue_data.ed25519_oracle_signing_keys[oracle_idx];
            let actual_oracle_key = unsafe { parsed_sigs[i as usize].pubkey() };
            assert!(unsafe {
                check_p64_eq(
                    actual_oracle_key as *const _ as *const u64,
                    &expected_oracle_key as *const _ as *const u64,
                )
            });
        }

        // Continue with remaining processing...
        let reference_feed_infos = unsafe { reference_sig.feed_infos() };
        let feed_count = reference_feed_infos.len();

        Ok(OracleQuote::new(
            unsafe { reference_sig.quote_header() },
            sig_count,
            reference_feed_infos,
            feed_count as u8,
            oracle_idxs,
            recent_slot,
            version,
            data,
        ))
    }

    /// Loads and verifies an ED25519 instruction from the instructions sysvar with age validation.
    ///
    /// This method extracts instruction data from the instructions sysvar at the specified
    /// index, validates that it comes from the ED25519 program, checks the quote age against
    /// the current slot using the configured max_age, and then verifies the oracle quote data.
    ///
    /// # Arguments
    /// * `instruction_idx` - Index of the instruction to load from the sysvar (typically 0 for first instruction)
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully loaded and verified oracle quote
    /// * `Err(AnyError)` - Failed to load or verify the instruction
    ///
    /// # Errors
    /// - Instruction not found at the specified index
    /// - Instruction is not from the ED25519 program
    /// - Quote is too old (exceeds max_age slots)
    /// - Verification of the quote data fails
    #[inline(always)]
    pub fn verify_instruction_at(&self, instruction_idx: i64) -> Result<OracleQuote<'_>, AnyError> {
        use crate::Instructions;

        let ix_sysvar = self
            .ix_sysvar
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Instructions sysvar not set"))?;

        // Extract instruction data and validate program ID using the existing helper
        let data = {
            #[cfg(feature = "pinocchio")]
            {
                Instructions::extract_ix_data(*ix_sysvar, instruction_idx as usize)
            }
            #[cfg(not(feature = "pinocchio"))]
            {
                Instructions::extract_ix_data(ix_sysvar, instruction_idx as usize)
            }
        };

        // Verify the instruction data
        self.verify(data)
    }

    /// Finds and returns a specific slot hash from the slot hash sysvar.
    ///
    /// This function searches through the slot hash sysvar to find the hash
    /// corresponding to the target slot. It uses an optimized search starting
    /// from an estimated position and working backwards.
    ///
    /// # Arguments
    /// * `target_slot` - The slot number to find the hash for
    /// * `slothash_sysvar` - Reference to the slot hash sysvar account
    ///
    /// # Returns
    /// * `Ok([u8; 32])` - The 32-byte hash for the target slot
    /// * `Err(AnyError)` - Slot not found in the sysvar
    ///
    /// # Performance
    /// Uses an estimated starting position based on slot ordering to minimize
    /// the number of entries that need to be checked.
    fn find_slothash_in_sysvar(
        target_slot: u64,
        slothash_sysvar: &AccountInfo,
    ) -> Result<[u8; 32], AnyError> {
        assert!(check_pubkey_eq(
            *get_account_key!(slothash_sysvar),
            solana_program::sysvar::slot_hashes::ID
        ));
        let slothash_data = unsafe { borrow_account_data!(slothash_sysvar) };

        // # Safety
        //
        // This transmute is safe because:
        // - SlotHash is a POD type with known layout (u64 + [u8; 32])
        // - We skip the 8-byte sysvar header before transmuting
        // - The Solana runtime guarantees proper alignment and initialization of sysvar data
        // - The slice length is determined by the actual data size
        let slot_data: &[SlotHash] = unsafe { std::mem::transmute(&slothash_data[8..]) };

        let mut estimated_idx = ((slot_data[0].slot - target_slot) % SYSVAR_SLOT_LEN) as usize;

        // Optimized search with early termination
        loop {
            let slot_entry = &slot_data[estimated_idx];
            if slot_entry.slot == target_slot {
                return Ok(slot_entry.hash);
            }
            if estimated_idx == 0 {
                break;
            }
            estimated_idx -= 1;
        }
        bail!("Slot not found in slothash sysvar");
    }
}

#[cfg(not(feature = "pinocchio"))]
impl<'a> QuoteVerifier<'a> {
    /// Creates a new `QuoteVerifier` with default values.
    #[inline(always)]
    pub fn new() -> Self {
        Self {
            queue: None,
            slothash_sysvar: None,
            ix_sysvar: None,
            clock_slot: None,
            max_age: 30,
        }
    }

    /// Sets the oracle queue account for verification.
    ///
    /// The queue account contains the authorized oracle signing keys that will
    /// be used to validate the signatures in the oracle quote.
    ///
    /// # Arguments
    /// * `account` - Any type that implements `AsAccountInfo` (e.g., `AccountLoader`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Example
    /// ```rust,ignore
    /// verifier.queue(&ctx.accounts.queue);  // Works with Anchor AccountLoader
    /// verifier.queue(&account_info);        // Works with AccountInfo reference
    /// verifier.queue(&pinocchio_account);   // Works with pinocchio AccountInfo
    /// ```
    #[inline(always)]
    pub fn queue<T>(&mut self, account: T) -> &mut Self
    where
        T: AsAccountInfo<'a>,
    {
        self.queue = Some(account.as_account_info().clone());
        self
    }

    /// Sets the slot hash sysvar account for verification.
    ///
    /// The slot hash sysvar is used to validate that the signed slot hash
    /// in the oracle quote corresponds to a valid historical slot.
    ///
    /// # Arguments
    /// * `sysvar` - Any type that implements `AsAccountInfo` (e.g., `Sysvar<SlotHashes>`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Example
    /// ```rust,ignore
    /// verifier.slothash_sysvar(&ctx.accounts.slothashes);  // Works with Anchor Sysvar
    /// verifier.slothash_sysvar(&slothash_account);         // Works with AccountInfo reference
    /// verifier.slothash_sysvar(&pinocchio_account);        // Works with pinocchio AccountInfo
    /// ```
    #[inline(always)]
    pub fn slothash_sysvar<T>(&mut self, sysvar: T) -> &mut Self
    where
        T: AsAccountInfo<'a>,
    {
        self.slothash_sysvar = Some(sysvar.as_account_info().clone());
        self
    }

    /// Sets the instructions sysvar account for verification.
    ///
    /// The instructions sysvar contains the ED25519 instruction data that
    /// will be parsed to extract the oracle signatures and quote data.
    ///
    /// # Arguments
    /// * `sysvar` - Any type that implements `AsAccountInfo` (e.g., `Sysvar<Instructions>`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Example
    /// ```rust,ignore
    /// verifier.ix_sysvar(&ctx.accounts.instructions);  // Works with Anchor Sysvar
    /// verifier.ix_sysvar(&ix_account);                 // Works with AccountInfo reference
    /// verifier.ix_sysvar(&pinocchio_account);          // Works with pinocchio AccountInfo
    /// ```
    #[inline(always)]
    pub fn ix_sysvar<T>(&mut self, sysvar: T) -> &mut Self
    where
        T: AsAccountInfo<'a>,
    {
        self.ix_sysvar = Some(sysvar.as_account_info().clone());
        self
    }

    /// Sets the clock slot for freshness validation.
    #[inline(always)]
    pub fn clock_slot(&mut self, clock_slot: u64) -> &mut Self {
        self.clock_slot = Some(clock_slot);
        self
    }

    /// Sets the maximum age in slots for oracle quote freshness validation.
    ///
    /// Oracle quotes older than this many slots will be rejected during verification.
    /// This helps prevent replay attacks and ensures data freshness.
    ///
    /// # Arguments
    /// * `max_age` - Maximum age in slots (typically 100-500 slots)
    #[inline(always)]
    pub fn max_age(&mut self, max_age: u64) -> &mut Self {
        self.max_age = max_age;
        self
    }

    /// Verifies an oracle account containing oracle quote data.
    ///
    /// This method extracts the oracle quote data from an oracle account (skipping the
    /// 8-byte discriminator) and verifies it using the configured accounts.
    ///
    /// # Arguments
    /// * `oracle_account` - Any type that implements `AsAccountInfo` containing the oracle quote data
    ///   (e.g., `AccountLoader<SwitchboardQuote>`, direct `AccountInfo` reference, pinocchio AccountInfo)
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully verified oracle quote with feed data
    /// * `Err(AnyError)` - Verification failed (invalid signatures, expired data, etc.)
    ///
    /// # Example
    /// ```rust,ignore
    /// let quote = verifier.verify_account(&ctx.accounts.oracle)?;
    /// for feed in quote.feeds() {
    ///     println!("Feed {}: ${}", feed.hex_id(), feed.value());
    /// }
    /// ```
    #[cfg(feature = "pinocchio")]
    #[inline(always)]
    pub fn verify_account<'data, T>(
        &self,
        queue: &[u8; 32],
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        // For pinocchio, use raw data access to avoid temporary borrow lifetime issues
        // # Safety: Account data is memory-mapped by Solana runtime and lives for the transaction duration
        // We're using unsafe to extend the lifetime from the temporary borrow to match the account parameter
        let oracle_data: &'data [u8] = unsafe {
            let temp_borrow = account_info.borrow_data_unchecked();
            std::slice::from_raw_parts(temp_borrow.as_ptr(), temp_borrow.len())
        };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        unsafe {
            if read_unaligned(oracle_data.as_ptr() as *const u64) != QUOTE_DISCRIMINATOR_U64_LE {
                bail!("Invalid oracle account discriminator");
            }
            let data_ptr = oracle_data.as_ptr().add(8) as *const u64;
            let queue_ptr = queue.as_ptr() as *const u64;
            if !check_p64_eq(data_ptr, queue_ptr) {
                bail!("Oracle account does not belong to the specified queue");
            }
        }

        self.verify_delimited(&oracle_data[40..])
    }

    #[cfg(not(feature = "pinocchio"))]
    #[inline(always)]
    pub fn verify_account<'data, T>(
        &self,
        queue: &[u8; 32],
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = unsafe { &*account_info.data.as_ptr() };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        unsafe {
            if read_unaligned(oracle_data.as_ptr() as *const u64) != QUOTE_DISCRIMINATOR_U64_LE {
                bail!("Invalid oracle account discriminator");
            }
            let data_ptr = oracle_data.as_ptr().add(8) as *const u64;
            let queue_ptr = queue.as_ptr() as *const u64;
            if !check_p64_eq(data_ptr, queue_ptr) {
                bail!("Oracle account does not belong to the specified queue");
            }
        }

        self.verify_delimited(&oracle_data[40..])
    }

    /// Verifies raw ED25519 instruction data and creates a validated OracleQuote.
    ///
    /// This is the core verification method that performs all security checks:
    /// - Parses ED25519 signatures and extracts oracle indices
    /// - Validates oracle signing keys against the queue
    /// - Verifies slot hash against the sysvar
    /// - Validates quote age against max_age (requires clock sysvar)
    /// - Ensures oracle quote data integrity
    ///
    /// # Arguments
    /// * `data` - Raw ED25519 instruction data containing signatures and quote
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully verified and parsed oracle quote
    /// * `Err(AnyError)` - Verification failed with detailed error message
    ///
    /// # Errors
    /// - Clock slot not set
    /// - No signatures provided
    /// - Invalid oracle signing keys
    /// - Slot hash mismatch
    /// - Quote is too old (exceeds max_age slots)
    /// - Malformed instruction data
    #[inline(always)]
    pub fn verify_delimited<'data>(
        &self,
        data: &'data [u8],
    ) -> Result<OracleQuote<'data>, AnyError> {
        // # Safety
        //
        // This unsafe block is safe because:
        // - We verify `data` has at least 2 bytes before reading the length
        // - `read_unaligned` safely reads u16 from potentially unaligned memory
        // - The bounds check ensures we don't read beyond the data buffer
        // - Data slice is guaranteed valid for the function duration
        if data.len() < 2 {
            bail!("Data too small for length prefix: {} bytes", data.len());
        }
        unsafe {
            let len = read_unaligned(data.as_ptr() as *const u16) as usize;
            if data.len() < len + 2 {
                bail!(
                    "Data length mismatch: expected {}, got {}",
                    len + 2,
                    data.len()
                );
            }
            self.verify(&data[2..len + 2])
        }
    }

    /// Parses oracle quote data without performing any verification checks.
    ///
    /// This method extracts the quote structure from ED25519 instruction data
    /// but skips all security validations including:
    /// - Clock/age validation
    /// - Signature verification
    /// - Oracle key authorization
    /// - Slot hash verification
    ///
    /// **WARNING**: This method should only be used for debugging, analysis, or
    /// scenarios where verification is handled separately. Never use unverified
    /// quotes for production decisions.
    ///
    /// # Arguments
    /// * `data` - Raw ED25519 instruction data containing signatures and quote
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully parsed oracle quote (unverified)
    /// * `Err(AnyError)` - Failed to parse the quote data structure
    ///
    /// # Example
    /// ```rust,ignore
    /// // Parse quote without verification (use cautiously)
    /// let unverified_quote = verifier.parse_unverified(&instruction_data)?;
    /// println!("Quote contains {} feeds", unverified_quote.feeds().len());
    /// ```
    #[inline(always)]
    pub fn parse_unverified<'data>(
        &self,
        data: &'data [u8],
    ) -> Result<OracleQuote<'data>, AnyError> {
        let (parsed_sigs, sig_count, oracle_idxs, recent_slot, version) =
            Ed25519Sysvar::parse_instruction(data)?;

        if sig_count == 0 {
            bail!("No signatures provided");
        }

        let reference_sig = &parsed_sigs[0];
        let reference_feed_infos = unsafe { reference_sig.feed_infos() };
        let feed_count = reference_feed_infos.len();

        Ok(OracleQuote::new(
            unsafe { reference_sig.quote_header() },
            sig_count,
            reference_feed_infos,
            feed_count as u8,
            oracle_idxs,
            recent_slot,
            version,
            data,
        ))
    }

    /// Parses oracle quote data from an account without performing verification checks.
    ///
    /// This is a convenience method that extracts quote data from a Switchboard
    /// oracle account and parses it without any security validations.
    ///
    /// **WARNING**: This method should only be used for debugging, analysis, or
    /// scenarios where verification is handled separately. Never use unverified
    /// quotes for production decisions.
    ///
    /// # Arguments
    /// * `oracle_account` - Oracle account containing quote data
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully parsed oracle quote (unverified)
    /// * `Err(AnyError)` - Failed to parse the account or quote data
    ///
    /// # Example
    /// ```rust,ignore
    /// // Parse account quote without verification (use cautiously)
    /// let unverified_quote = verifier.parse_account_unverified(&oracle_account)?;
    /// ```
    #[cfg(feature = "pinocchio")]
    #[inline(always)]
    pub fn parse_account_unverified<'data, T>(
        &self,
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = account_info.borrow_data_unchecked();

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        self.parse_unverified_delimited(&oracle_data[40..])
    }

    #[cfg(not(feature = "pinocchio"))]
    #[inline(always)]
    pub fn parse_account_unverified<'data, T>(
        &self,
        oracle_account: &'data T,
    ) -> Result<OracleQuote<'data>, AnyError>
    where
        T: AsAccountInfo<'data>,
    {
        let account_info = oracle_account.as_account_info();

        let oracle_data = unsafe { &*account_info.data.as_ptr() };

        if oracle_data.len() < 40 {
            bail!(
                "Oracle account too small: {} bytes, expected at least 40",
                oracle_data.len()
            );
        }

        self.parse_unverified_delimited(&oracle_data[40..])
    }

    /// Parses length-delimited oracle quote data without verification checks.
    ///
    /// This method handles the length prefix parsing and delegates to `parse_unverified`.
    ///
    /// # Arguments
    /// * `data` - Length-delimited ED25519 instruction data
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully parsed oracle quote (unverified)
    /// * `Err(AnyError)` - Failed to parse the data
    #[inline(always)]
    pub fn parse_unverified_delimited<'data>(
        &self,
        data: &'data [u8],
    ) -> Result<OracleQuote<'data>, AnyError> {
        if data.len() < 2 {
            bail!("Data too small for length prefix: {} bytes", data.len());
        }
        unsafe {
            let len = read_unaligned(data.as_ptr() as *const u16) as usize;
            if data.len() < len + 2 {
                bail!(
                    "Data length mismatch: expected {}, got {}",
                    len + 2,
                    data.len()
                );
            }
            self.parse_unverified(&data[2..len + 2])
        }
    }

    /// Verifies oracle quote data and returns a validated OracleQuote
    pub fn verify<'data>(&self, data: &'data [u8]) -> Result<OracleQuote<'data>, AnyError> {
        let (parsed_sigs, sig_count, oracle_idxs, recent_slot, version) =
            Ed25519Sysvar::parse_instruction(data)?;
        let queue = self
            .queue
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Queue account not set"))?;
        let slothash_sysvar = self
            .slothash_sysvar
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Slothash sysvar not set"))?;

        // Validate quote freshness - clock slot is required for all verifications
        let clock_slot = self
            .clock_slot
            .ok_or_else(|| anyhow::anyhow!("Clock slot not set"))?;
        if clock_slot < recent_slot || clock_slot - recent_slot > self.max_age {
            bail!(
                "Quote is too old: recent_slot={}, current_slot={}, max_age={}",
                recent_slot,
                clock_slot,
                self.max_age
            );
        }

        if sig_count == 0 {
            bail!("No signatures provided");
        }

        // Get queue data for oracle signing keys
        // Safely access queue data using RefCell borrow and try_from_bytes
        let queue_buf = borrow_account_data!(queue);
        if queue_buf.len() != 6280 {
            bail!("Queue account too small: {} bytes", queue_buf.len());
        }
        let queue_data: &QueueAccountData =
            unsafe { &*(queue_buf.as_ptr().add(8) as *const QueueAccountData) };

        // Find the target slothash from the oracle quote
        let reference_sig = &parsed_sigs[0];
        let header = unsafe { reference_sig.quote_header() };

        // Find the target slothash from oracle quote and get corresponding hash from sysvar
        let target_slothash = &header.signed_slothash as *const _ as *const u64;
        let found_slothash =
            &Self::find_slothash_in_sysvar(recent_slot, slothash_sysvar)? as *const _ as *const u64;

        assert!(unsafe { check_p64_eq(found_slothash, target_slothash) });

        // Oracle signing key validation (32 bytes per oracle: actual should match expected)
        for i in 0..sig_count {
            // Branchless bounds check,  30 is max oracles in queue
            let oracle_idx = (oracle_idxs[i as usize] as usize) % 30;
            let expected_oracle_key = queue_data.ed25519_oracle_signing_keys[oracle_idx];
            let actual_oracle_key = unsafe { parsed_sigs[i as usize].pubkey() };
            assert!(unsafe {
                check_p64_eq(
                    actual_oracle_key as *const _ as *const u64,
                    &expected_oracle_key as *const _ as *const u64,
                )
            });
        }

        // Continue with remaining processing...
        let reference_feed_infos = unsafe { reference_sig.feed_infos() };
        let feed_count = reference_feed_infos.len();

        Ok(OracleQuote::new(
            unsafe { reference_sig.quote_header() },
            sig_count,
            reference_feed_infos,
            feed_count as u8,
            oracle_idxs,
            recent_slot,
            version,
            data,
        ))
    }

    /// Loads and verifies an ED25519 instruction from the instructions sysvar with age validation.
    ///
    /// This method extracts instruction data from the instructions sysvar at the specified
    /// index, validates that it comes from the ED25519 program, checks the quote age against
    /// the current slot using the configured max_age, and then verifies the oracle quote data.
    ///
    /// # Arguments
    /// * `instruction_idx` - Index of the instruction to load from the sysvar (typically 0 for first instruction)
    ///
    /// # Returns
    /// * `Ok(OracleQuote)` - Successfully loaded and verified oracle quote
    /// * `Err(AnyError)` - Failed to load or verify the instruction
    ///
    /// # Errors
    /// - Instruction not found at the specified index
    /// - Instruction is not from the ED25519 program
    /// - Quote is too old (exceeds max_age slots)
    /// - Verification of the quote data fails
    #[inline(always)]
    pub fn verify_instruction_at(&self, instruction_idx: i64) -> Result<OracleQuote<'a>, AnyError> {
        use crate::Instructions;

        let ix_sysvar = self
            .ix_sysvar
            .as_ref()
            .ok_or_else(|| anyhow::anyhow!("Instructions sysvar not set"))?;

        // Extract instruction data and validate program ID using the existing helper
        let data = {
            #[cfg(feature = "pinocchio")]
            {
                Instructions::extract_ix_data(*ix_sysvar, instruction_idx as usize)
            }
            #[cfg(not(feature = "pinocchio"))]
            {
                Instructions::extract_ix_data(ix_sysvar, instruction_idx as usize)
            }
        };

        // Verify the instruction data
        self.verify(data)
    }

    /// Finds and returns a specific slot hash from the slot hash sysvar.
    ///
    /// This function searches through the slot hash sysvar to find the hash
    /// corresponding to the target slot. It uses an optimized search starting
    /// from an estimated position and working backwards.
    ///
    /// # Arguments
    /// * `target_slot` - The slot number to find the hash for
    /// * `slothash_sysvar` - Reference to the slot hash sysvar account
    ///
    /// # Returns
    /// * `Ok([u8; 32])` - The 32-byte hash for the target slot
    /// * `Err(AnyError)` - Slot not found in the sysvar
    ///
    /// # Performance
    /// Uses an estimated starting position based on slot ordering to minimize
    /// the number of entries that need to be checked.
    fn find_slothash_in_sysvar(
        target_slot: u64,
        slothash_sysvar: &AccountInfo,
    ) -> Result<[u8; 32], AnyError> {
        assert!(check_pubkey_eq(
            *get_account_key!(slothash_sysvar),
            solana_program::sysvar::slot_hashes::ID
        ));
        let slothash_data = borrow_account_data!(slothash_sysvar);

        // # Safety
        //
        // This transmute is safe because:
        // - SlotHash is a POD type with known layout (u64 + [u8; 32])
        // - We skip the 8-byte sysvar header before transmuting
        // - The Solana runtime guarantees proper alignment and initialization of sysvar data
        // - The slice length is determined by the actual data size
        let slot_data: &[SlotHash] = unsafe { std::mem::transmute(&slothash_data[8..]) };

        let mut estimated_idx = ((slot_data[0].slot - target_slot) % SYSVAR_SLOT_LEN) as usize;

        // Optimized search with early termination
        loop {
            let slot_entry = &slot_data[estimated_idx];
            if slot_entry.slot == target_slot {
                return Ok(slot_entry.hash);
            }
            if estimated_idx == 0 {
                break;
            }
            estimated_idx -= 1;
        }
        bail!("Slot not found in slothash sysvar");
    }
}

/// Convenience function for extracting the most recent ED25519 instruction from the instructions sysvar.
///
/// This function retrieves the instruction immediately preceding the current one,
/// which should contain the ED25519 signature data. It handles the type coercion
/// from Anchor's Sysvar wrapper to AccountInfo for easier usage in programs.
///
/// # Arguments
/// * `ix_sysvar` - Reference to the instructions sysvar (can be wrapped in various types)
///
/// # Returns
/// * `Ok(Instruction)` - The ED25519 instruction with signature data
/// * `Err(ProgramError)` - Failed to retrieve the instruction
///
/// # Example
/// ```rust,ignore
/// let ed25519_ix = get_ed25519_instruction(&ctx.accounts.instructions)?;
/// // Process the instruction data...
/// ```
#[inline(always)]
pub fn get_ed25519_instruction<'a, T>(
    ix_sysvar: &T,
) -> Result<solana_program::instruction::Instruction, solana_program::program_error::ProgramError>
where
    T: AsAccountInfo<'a>,
{
    #[cfg(feature = "pinocchio")]
    {
        use core::ptr::read_unaligned;

        use solana_program::ed25519_program::ID as ED25519_PROGRAM_ID;
        use solana_program::sysvar::instructions::ID as INSTRUCTIONS_SYSVAR_ID;

        use crate::{borrow_account_data, check_pubkey_eq, get_account_key, Instructions};

        // Get the previous instruction (index -1 relative to current)
        let ix_sysvar_account = ix_sysvar.as_account_info();

        // First, we need to get the number of instructions to calculate the previous instruction index
        assert!(check_pubkey_eq(
            *get_account_key!(ix_sysvar_account),
            INSTRUCTIONS_SYSVAR_ID
        ));

        let num_instructions = unsafe {
            let data = borrow_account_data!(ix_sysvar_account);
            read_unaligned(data.as_ptr() as *const u16) as usize
        };

        // For get_instruction_relative(-1, ...), we want the previous instruction
        // Since instructions are 0-indexed, the previous instruction is at index (num_instructions - 1)
        if num_instructions == 0 {
            return Err(solana_program::program_error::ProgramError::InvalidInstructionData);
        }

        let prev_instruction_idx = num_instructions - 1;
        let data = Instructions::extract_ix_data(ix_sysvar_account, prev_instruction_idx);

        // Create an Instruction struct from the extracted data
        use solana_program::instruction::Instruction;

        Ok(Instruction {
            program_id: ED25519_PROGRAM_ID,
            accounts: vec![], // We don't parse account metas for this use case
            data: data.to_vec(),
        })
    }

    #[cfg(not(feature = "pinocchio"))]
    get_instruction_relative(-1, ix_sysvar.as_account_info())
}