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
//! Script verification, sigop counting, sighash caching, and taproot helpers.
//!
//! ## V1 implementation note
//!
//! Per-script execution delegates to `bitcoin::Script::verify_with_flags`
//! (Core's canonical Rust port, audited). The hand-rolled per-opcode dispatcher
//! from PLAN.md Task 3 Step 2 is a follow-up: when introduced, it lives behind
//! a `hand-rolled` cargo feature and is gated by a parity-vs-bitcoin-crate test.
//! Public surface is stable across the swap.
/// Rayon-backed Schnorr verification helpers.
/// Script verification wrapper.
/// Opcode re-exports and local opcode newtype.
/// Signature hash cache wrapper.
/// Signature operation counters.
/// Bounded stack infrastructure for the future hand-rolled interpreter.
/// Taproot verification helpers.
pub use ;
pub use ;
/// Borrowed script type from the `bitcoin` crate.
pub type Script = Script;
/// Owned script buffer from the `bitcoin` crate.
pub type ScriptBuf = ScriptBuf;
/// Project transaction wrapper.
pub type Tx = Tx;
/// Canonical transaction output type.
pub type TxOut = TxOut;