blvm-consensus 0.1.12

Bitcoin Commons BLVM: Direct mathematical implementation of Bitcoin consensus rules from the Orange Paper
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
//! BIP Interaction Tests
//! 
//! Tests for interactions between multiple BIPs in single transactions and blocks.
//! Covers SegWit + CLTV/CSV, Taproot + relative locktime, and mixed transaction types.

use blvm_consensus::*;
use blvm_consensus::segwit::*;
use blvm_consensus::script::verify_script_with_context_full;
use super::bip_test_helpers::*;

#[test]
fn test_segwit_with_cltv() {
    // Test SegWit transaction with CLTV locktime
    let tx = Transaction {
        version: 1,
        inputs: vec![TransactionInput {
            prevout: OutPoint { hash: [1; 32].into(), index: 0 },
            script_sig: vec![0x00], // SegWit marker
            sequence: 0xffffffff,
        }].into(),
        outputs: vec![TransactionOutput {
            value: 1000,
            script_pubkey: {
                // ScriptPubkey with CLTV: OP_1 <locktime> OP_CHECKLOCKTIMEVERIFY
                let mut script = vec![0x51].into(); // OP_1
                script.extend_from_slice(&encode_script_int(400000));
                script.push(0xb1); // OP_CHECKLOCKTIMEVERIFY
                script
            },
        }].into(),
        lock_time: 500000, // >= required locktime
    };
    
    let witness = vec![vec![0x51]]; // Witness data
    
    let mut utxo_set = UtxoSet::default();
    utxo_set.insert(
        OutPoint { hash: [1; 32], index: 0 },
        std::sync::Arc::new(UTXO {
            value: 1000000,
            script_pubkey: vec![0x00, 0x14].into(), // P2WPKH
            height: 0,
        }),
    );
    
    // Validate SegWit transaction with CLTV
    let input = &tx.inputs[0];
    let utxo = utxo_set.get(&input.prevout).unwrap();
    let pv = vec![utxo.value];
    let psp: Vec<&blvm_consensus::types::ByteString> = vec![&utxo.script_pubkey];

    let witness_script = witness[0].clone();

    let result = verify_script_with_context_full(
        &input.script_sig,
        &tx.outputs[0].script_pubkey, // Validate output script with CLTV
        Some(&witness_script),
        0,
        &tx,
        0,
        &pv,
        &psp,
        Some(500000), // Block height for CLTV validation
        None,
        blvm_consensus::types::Network::Mainnet,
        blvm_consensus::script::SigVersion::WitnessV0,
        None,
        None,
        None,
        None, // precomputed_bip143
        #[cfg(feature = "production")] None,
    );

    assert!(result.is_ok());
}

#[test]
fn test_segwit_with_csv() {
    // Test SegWit transaction with CSV relative locktime
    let tx = Transaction {
        version: 1,
        inputs: vec![TransactionInput {
            prevout: OutPoint { hash: [1; 32].into(), index: 0 },
            script_sig: vec![0x00], // SegWit marker
            sequence: 0x00050000, // 5 blocks relative locktime
        }].into(),
        outputs: vec![TransactionOutput {
            value: 1000,
            script_pubkey: {
                // ScriptPubkey with CSV: OP_1 <sequence> OP_CHECKSEQUENCEVERIFY
                let mut script = vec![0x51].into(); // OP_1
                script.extend_from_slice(&encode_script_int(0x00040000)); // 4 blocks required
                script.push(0xb2); // OP_CHECKSEQUENCEVERIFY
                script
            },
        }].into(),
        lock_time: 0,
    };
    
    let witness = vec![vec![0x51]];
    
    let mut utxo_set = UtxoSet::default();
    utxo_set.insert(
        OutPoint { hash: [1; 32], index: 0 },
        std::sync::Arc::new(UTXO {
            value: 1000000,
            script_pubkey: vec![0x00, 0x14].into(), // P2WPKH
            height: 0,
        }),
    );
    
    let input = &tx.inputs[0];
    let utxo = utxo_set.get(&input.prevout).unwrap();
    let pv = vec![utxo.value];
    let psp: Vec<&blvm_consensus::types::ByteString> = vec![&utxo.script_pubkey];

    let witness_script = witness[0].clone();

    let result = verify_script_with_context_full(
        &input.script_sig,
        &tx.outputs[0].script_pubkey, // Validate output with CSV
        Some(&witness_script),
        0,
        &tx,
        0,
        &pv,
        &psp,
        None,
        None,
        blvm_consensus::types::Network::Mainnet,
        blvm_consensus::script::SigVersion::WitnessV0,
        None,
        None,
        None,
        None, // precomputed_bip143
        #[cfg(feature = "production")] None,
    );

    // CSV validation: input sequence (5 blocks) >= required (4 blocks)
    assert!(result.is_ok());
}

#[test]
fn test_taproot_with_csv() {
    // Test Taproot transaction with CSV relative locktime
    use blvm_consensus::taproot::*;
    
    let output_key = [0x42u8; 32];
    let mut p2tr_script = vec![TAPROOT_SCRIPT_PREFIX];
    p2tr_script.extend_from_slice(&output_key);
    p2tr_script.push(0x00);
    
    let tx = Transaction {
        version: 1,
        inputs: vec![TransactionInput {
            prevout: OutPoint { hash: [1; 32].into(), index: 0 },
            script_sig: vec![], // Empty for Taproot
            sequence: 0x00060000, // 6 blocks relative locktime
        }].into(),
        outputs: vec![
            TransactionOutput {
                value: 1000,
                script_pubkey: p2tr_script.clone(),
            },
            TransactionOutput {
                value: 2000,
                script_pubkey: {
                    // Output with CSV requirement
                    let mut script = vec![0x51].into();
                    script.extend_from_slice(&encode_script_int(0x00050000)); // 5 blocks required
                    script.push(0xb2); // CSV
                    script
                },
            },
        ].into(),
        lock_time: 0,
    };
    
    let mut utxo_set = UtxoSet::default();
    utxo_set.insert(
        OutPoint { hash: [1; 32], index: 0 },
        std::sync::Arc::new(UTXO {
            value: 1000000,
            script_pubkey: p2tr_script,
            height: 0,
        }),
    );
    
    // Validate Taproot transaction
    assert!(validate_taproot_transaction(&tx).unwrap());
    
    // Validate CSV in second output
    let p2tr_script: blvm_consensus::types::ByteString = create_p2tr_script(&output_key).into();
    let pv = vec![1000000i64];
    let psp: Vec<&blvm_consensus::types::ByteString> = vec![&p2tr_script];

    // CSV validation: input sequence (6 blocks) >= required (5 blocks)
    let result = verify_script_with_context_full(
        &tx.inputs[0].script_sig,
        &tx.outputs[1].script_pubkey, // CSV script
        None,
        0,
        &tx,
        0,
        &pv,
        &psp,
        None,
        None,
        blvm_consensus::types::Network::Mainnet,
        blvm_consensus::script::SigVersion::Base,
        None,
        None,
        None,
        None, // precomputed_bip143
        #[cfg(feature = "production")] None,
    );
    
    assert!(result.is_ok());
}

#[test]
fn test_mixed_block_segwit_and_taproot() {
    // Test block with both SegWit and Taproot transactions
    use blvm_consensus::taproot::*;
    
    let block = Block {
        header: create_test_header(1234567890, [0; 32]),
        transactions: vec![
            Transaction {
                version: 1,
                inputs: vec![].into(),
                outputs: vec![TransactionOutput {
                    value: 5000000000,
                    script_pubkey: vec![].into(),
                }].into(),
                lock_time: 0,
            },
            Transaction {
                // SegWit transaction
                version: 1,
                inputs: vec![TransactionInput {
                    prevout: OutPoint { hash: [1; 32].into(), index: 0 },
                    script_sig: vec![0x00],
                    sequence: 0xffffffff,
                }].into(),
                outputs: vec![TransactionOutput {
                    value: 1000,
                    script_pubkey: vec![0x00, 0x14].into(), // P2WPKH
                }].into(),
                lock_time: 0,
            },
            Transaction {
                // Taproot transaction
                version: 1,
                inputs: vec![TransactionInput {
                    prevout: OutPoint { hash: [2; 32].into(), index: 0 },
                    script_sig: vec![],
                    sequence: 0xffffffff,
                }].into(),
                outputs: vec![TransactionOutput {
                    value: 1000,
                    script_pubkey: create_p2tr_script(&[1u8; 32].into()),
                }].into(),
                lock_time: 0,
            },
        ],
    };
    
    // Validate all transactions
    for (i, tx) in block.transactions.iter().enumerate() {
        if i == 0 {
            // Coinbase - skip Taproot validation
            continue;
        }
        
        // SegWit transaction
        if i == 1 {
            assert!(is_segwit_transaction(tx));
        }
        
        // Taproot transaction
        if i == 2 {
            assert!(validate_taproot_transaction(tx).unwrap());
            assert!(is_taproot_output(&tx.outputs[0]));
        }
    }
}

#[test]
fn test_segwit_taproot_cltv_combined() {
    // Test complex scenario: SegWit transaction with Taproot output that has CLTV
    use blvm_consensus::taproot::*;
    
    let tx = Transaction {
        version: 1,
        inputs: vec![TransactionInput {
            prevout: OutPoint { hash: [1; 32].into(), index: 0 },
            script_sig: vec![0x00], // SegWit marker
            sequence: 0xffffffff,
        }].into(),
        outputs: vec![
            TransactionOutput {
                value: 1000,
                script_pubkey: create_p2tr_script(&[1u8; 32].into()), // Taproot output
            },
            TransactionOutput {
                value: 2000,
                script_pubkey: {
                    // CLTV script
                    let mut script = vec![0x51];
                    script.extend_from_slice(&encode_script_int(400000));
                    script.push(0xb1); // CLTV
                    script
                },
            },
        ].into(),
        lock_time: 500000, // >= required for CLTV
    };
    
    let witness = vec![vec![0x51]];
    
    // Validate SegWit transaction
    assert!(is_segwit_transaction(&tx));
    
    // Validate Taproot output
    assert!(validate_taproot_transaction(&tx).unwrap());
    assert!(is_taproot_output(&tx.outputs[0]));
    
    // Validate CLTV in second output
    let cltv_sp: blvm_consensus::types::ByteString = vec![0x00, 0x14].into();
    let pv = vec![1000000i64];
    let psp: Vec<&blvm_consensus::types::ByteString> = vec![&cltv_sp];

    let witness_script = witness[0].clone();

    let result = verify_script_with_context_full(
        &tx.inputs[0].script_sig,
        &tx.outputs[1].script_pubkey, // CLTV script
        Some(&witness_script),
        0,
        &tx,
        0,
        &pv,
        &psp,
        Some(500000), // Block height for CLTV
        None,
        blvm_consensus::types::Network::Mainnet,
        blvm_consensus::script::SigVersion::WitnessV0,
        None,
        None,
        None,
        None, // precomputed_bip143
        #[cfg(feature = "production")] None,
    );
    
    assert!(result.is_ok());
}

#[test]
fn test_cltv_csv_combined() {
    // Test transaction with both CLTV and CSV in different outputs
    let tx = Transaction {
        version: 1,
        inputs: vec![TransactionInput {
            prevout: OutPoint { hash: [1; 32].into(), index: 0 },
            script_sig: vec![0x51],
            sequence: 0x00050000, // 5 blocks for CSV
        }].into(),
        outputs: vec![
            TransactionOutput {
                value: 1000,
                script_pubkey: {
                    // CLTV output
                    let mut script = vec![0x51].into();
                    script.extend_from_slice(&encode_script_int(400000));
                    script.push(0xb1); // CLTV
                    script
                },
            },
            TransactionOutput {
                value: 2000,
                script_pubkey: {
                    // CSV output
                    let mut script = vec![0x51];
                    script.extend_from_slice(&encode_script_int(0x00040000)); // 4 blocks
                    script.push(0xb2); // CSV
                    script
                },
            },
        ].into(),
        lock_time: 500000, // For CLTV
    };
    
    let mut utxo_set = UtxoSet::default();
    utxo_set.insert(
        OutPoint { hash: [1; 32], index: 0 },
        std::sync::Arc::new(UTXO {
            value: 1000000,
            script_pubkey: vec![0x51].into(),
            height: 0,
        }),
    );
    
    let pv = vec![1000000i64];
    let base_sp: blvm_consensus::types::ByteString = vec![0x51].into();
    let psp: Vec<&blvm_consensus::types::ByteString> = vec![&base_sp];

    // Validate CLTV output
    let result_cltv = verify_script_with_context_full(
        &tx.inputs[0].script_sig,
        &tx.outputs[0].script_pubkey,
        None,
        0,
        &tx,
        0,
        &pv,
        &psp,
        Some(500000), // Block height
        None,
        blvm_consensus::types::Network::Mainnet,
        blvm_consensus::script::SigVersion::Base,
        None,
        None,
        None,
        None, // precomputed_bip143
        #[cfg(feature = "production")] None,
    );
    assert!(result_cltv.is_ok());

    // Validate CSV output
    let result_csv = verify_script_with_context_full(
        &tx.inputs[0].script_sig,
        &tx.outputs[1].script_pubkey,
        None,
        0,
        &tx,
        0,
        &pv,
        &psp,
        None,
        None,
        blvm_consensus::types::Network::Mainnet,
        blvm_consensus::script::SigVersion::Base,
        None,
        None,
        None,
        None, // precomputed_bip143
        #[cfg(feature = "production")] None,
    );
    // CSV: input sequence (5 blocks) >= required (4 blocks)
    assert!(result_csv.is_ok());
}

#[test]
fn test_block_weight_with_segwit_and_taproot() {
    // Test block weight calculation with both SegWit and Taproot transactions
    use blvm_consensus::segwit::calculate_block_weight;
    use blvm_consensus::taproot::*;
    
    let block = Block {
        header: create_test_header(1234567890, [0; 32]),
        transactions: vec![
            Transaction {
                version: 1,
                inputs: vec![].into(),
                outputs: vec![TransactionOutput {
                    value: 5000000000,
                    script_pubkey: vec![].into(),
                }].into(),
                lock_time: 0,
            },
            Transaction {
                // SegWit transaction
                version: 1,
                inputs: vec![TransactionInput {
                    prevout: OutPoint { hash: [1; 32].into(), index: 0 },
                    script_sig: vec![0x00],
                    sequence: 0xffffffff,
                }].into(),
                outputs: vec![TransactionOutput {
                    value: 1000,
                    script_pubkey: vec![0x00, 0x14].into(),
                }].into(),
                lock_time: 0,
            },
            Transaction {
                // Taproot transaction
                version: 1,
                inputs: vec![TransactionInput {
                    prevout: OutPoint { hash: [2; 32].into(), index: 0 },
                    script_sig: vec![],
                    sequence: 0xffffffff,
                }].into(),
                outputs: vec![TransactionOutput {
                    value: 1000,
                    script_pubkey: create_p2tr_script(&[1u8; 32].into()),
                }].into(),
                lock_time: 0,
            },
        ],
    };
    
    // Create witnesses (SegWit has witness, Taproot has empty scriptSig)
    let witnesses = vec![
        vec![], // Coinbase
        vec![vec![0x51]], // SegWit witness
        vec![], // Taproot (no witness data in test)
    ];
    
    let block_weight = calculate_block_weight(&block, &witnesses).unwrap();
    
    assert!(block_weight > 0);
}

// Helper function for Taproot tests
fn create_p2tr_script(output_key: &[u8; 32]) -> Vec<u8> {
    let mut script = vec![blvm_consensus::taproot::TAPROOT_SCRIPT_PREFIX];
    script.extend_from_slice(output_key);
    script.push(0x00);
    script
}