@@ -3,12 +3,12 @@ use crate::{BatchData, RlcConfig};
3
3
use eth_types:: { H256 , U256 } ;
4
4
use halo2_base:: { gates:: range:: RangeConfig , AssignedValue , Context } ;
5
5
use halo2_ecc:: bigint:: CRTInteger ;
6
+ use halo2_proofs:: halo2curves:: bls12_381:: Scalar ;
6
7
use halo2_proofs:: {
7
8
circuit:: { AssignedCell , Layouter , Value } ,
8
9
halo2curves:: bn256:: Fr ,
9
10
plonk:: { ConstraintSystem , Error , Expression } ,
10
11
} ;
11
- use serde:: { Deserialize , Serialize } ;
12
12
use snark_verifier_sdk:: LIMBS ;
13
13
use zkevm_circuits:: { table:: U8Table , util:: Challenges } ;
14
14
@@ -55,31 +55,36 @@ impl<const N_SNARKS: usize> BlobConsistencyConfig<N_SNARKS> {
55
55
}
56
56
}
57
57
58
- #[ derive( Debug , Clone , Copy , Default , Serialize , Deserialize ) ]
58
+ #[ derive( Debug , Clone , Copy , Default ) ]
59
59
pub struct BlobConsistencyWitness {
60
- # [ serde ( rename = " blob_versioned_hash" ) ]
61
- id : H256 ,
62
- blob_data_proof : [ H256 ; 2 ] ,
60
+ blob_versioned_hash : H256 ,
61
+ challenge_digest : H256 ,
62
+ evaluation : Scalar ,
63
63
}
64
64
65
65
impl BlobConsistencyWitness {
66
- pub fn new < const N_SNARKS : usize > ( _bytes : & [ u8 ] , _: & BatchData < N_SNARKS > ) -> Self {
67
- Self {
68
- id : H256 :: default ( ) , // should be keccak of bytes
69
- blob_data_proof : Default :: default ( ) ,
70
- }
66
+ pub fn new < const N_SNARKS : usize > ( _bytes : & [ u8 ] , _batch_data : & BatchData < N_SNARKS > ) -> Self {
67
+ unimplemented ! ( )
71
68
}
72
69
73
70
pub fn id ( & self ) -> H256 {
74
- self . id
71
+ unimplemented ! ( )
72
+ }
73
+
74
+ pub fn challenge_digest ( & self ) -> U256 {
75
+ unimplemented ! ( )
75
76
}
76
77
77
- pub fn challenge ( & self ) -> H256 {
78
- self . blob_data_proof [ 0 ]
78
+ pub fn challenge ( & self ) -> Scalar {
79
+ unimplemented ! ( )
79
80
}
80
81
81
- pub fn evaluation ( & self ) -> H256 {
82
- self . blob_data_proof [ 1 ]
82
+ pub fn evaluation ( & self ) -> Scalar {
83
+ unimplemented ! ( )
84
+ }
85
+
86
+ pub fn blob_data_proof ( & self ) -> [ H256 ; 2 ] {
87
+ unimplemented ! ( )
83
88
}
84
89
}
85
90
0 commit comments