revm_precompile/
kzg_point_evaluation.rs

1//! KZG point evaluation precompile added in [`EIP-4844`](https://eips.ethereum.org/EIPS/eip-4844)
2//! For more details check [`run`] function.
3use crate::{
4    crypto, Address, Precompile, PrecompileError, PrecompileId, PrecompileOutput, PrecompileResult,
5};
6pub mod arkworks;
7
8#[cfg(feature = "blst")]
9pub mod blst;
10
11use primitives::hex_literal::hex;
12
13/// KZG point evaluation precompile, containing address and function to run.
14pub const POINT_EVALUATION: Precompile =
15    Precompile::new(PrecompileId::KzgPointEvaluation, ADDRESS, run);
16
17/// Address of the KZG point evaluation precompile.
18pub const ADDRESS: Address = crate::u64_to_address(0x0A);
19
20/// Gas cost of the KZG point evaluation precompile.
21pub const GAS_COST: u64 = 50_000;
22
23/// Versioned hash version for KZG.
24pub const VERSIONED_HASH_VERSION_KZG: u8 = 0x01;
25
26/// `U256(FIELD_ELEMENTS_PER_BLOB).to_be_bytes() ++ BLS_MODULUS.to_bytes32()`
27pub const RETURN_VALUE: &[u8; 64] = &hex!(
28    "0000000000000000000000000000000000000000000000000000000000001000"
29    "73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000001"
30);
31
32/// Run kzg point evaluation precompile.
33///
34/// The Env has the KZGSettings that is needed for evaluation.
35///
36/// The input is encoded as follows:
37/// | versioned_hash |  z  |  y  | commitment | proof |
38/// |     32         | 32  | 32  |     48     |   48  |
39/// with z and y being padded 32 byte big endian values
40pub fn run(input: &[u8], gas_limit: u64) -> PrecompileResult {
41    if gas_limit < GAS_COST {
42        return Err(PrecompileError::OutOfGas);
43    }
44
45    // Verify input length.
46    if input.len() != 192 {
47        return Err(PrecompileError::BlobInvalidInputLength);
48    }
49
50    // Verify commitment matches versioned_hash
51    let versioned_hash = &input[..32];
52    let commitment = &input[96..144];
53    if kzg_to_versioned_hash(commitment) != versioned_hash {
54        return Err(PrecompileError::BlobMismatchedVersion);
55    }
56
57    // Verify KZG proof with z and y in big endian format
58    let commitment: &[u8; 48] = commitment.try_into().unwrap();
59    let z = input[32..64].try_into().unwrap();
60    let y = input[64..96].try_into().unwrap();
61    let proof = input[144..192].try_into().unwrap();
62    crypto().verify_kzg_proof(z, y, commitment, proof)?;
63
64    // Return FIELD_ELEMENTS_PER_BLOB and BLS_MODULUS as padded 32 byte big endian values
65    Ok(PrecompileOutput::new(GAS_COST, RETURN_VALUE.into()))
66}
67
68/// `VERSIONED_HASH_VERSION_KZG ++ sha256(commitment)[1..]`
69#[inline]
70pub fn kzg_to_versioned_hash(commitment: &[u8]) -> [u8; 32] {
71    let mut hash = crypto().sha256(commitment);
72    hash[0] = VERSIONED_HASH_VERSION_KZG;
73    hash
74}
75
76/// Verify KZG proof.
77#[inline]
78pub fn verify_kzg_proof(
79    commitment: &[u8; 48],
80    z: &[u8; 32],
81    y: &[u8; 32],
82    proof: &[u8; 48],
83) -> bool {
84    cfg_if::cfg_if! {
85        if #[cfg(feature = "c-kzg")] {
86            use c_kzg::{Bytes48, Bytes32};
87
88            let as_bytes48 = |bytes: &[u8; 48]| -> &Bytes48 { unsafe { &*bytes.as_ptr().cast() } };
89            let as_bytes32 = |bytes: &[u8; 32]| -> &Bytes32 { unsafe { &*bytes.as_ptr().cast() } };
90
91            let kzg_settings = c_kzg::ethereum_kzg_settings(8);
92            kzg_settings.verify_kzg_proof(as_bytes48(commitment), as_bytes32(z), as_bytes32(y), as_bytes48(proof)).unwrap_or(false)
93        } else if #[cfg(feature = "kzg-rs")] {
94            use kzg_rs::{Bytes48, Bytes32, KzgProof};
95            let env = kzg_rs::EnvKzgSettings::default();
96            let as_bytes48 = |bytes: &[u8; 48]| -> &Bytes48 { unsafe { &*bytes.as_ptr().cast() } };
97            let as_bytes32 = |bytes: &[u8; 32]| -> &Bytes32 { unsafe { &*bytes.as_ptr().cast() } };
98
99            let kzg_settings = env.get();
100            KzgProof::verify_kzg_proof(as_bytes48(commitment), as_bytes32(z), as_bytes32(y), as_bytes48(proof), kzg_settings).unwrap_or(false)
101        } else if #[cfg(feature = "blst")] {
102            blst::verify_kzg_proof(commitment, z, y, proof)
103        } else {
104            arkworks::verify_kzg_proof(commitment, z, y, proof)
105        }
106    }
107}
108#[cfg(test)]
109mod tests {
110    use super::*;
111
112    #[test]
113    fn basic_test() {
114        // Test data from: https://github.com/ethereum/c-kzg-4844/blob/main/tests/verify_kzg_proof/kzg-mainnet/verify_kzg_proof_case_correct_proof_4_4/data.yaml
115
116        let commitment = hex!("8f59a8d2a1a625a17f3fea0fe5eb8c896db3764f3185481bc22f91b4aaffcca25f26936857bc3a7c2539ea8ec3a952b7").to_vec();
117        let crypto = &crate::DefaultCrypto;
118        let mut versioned_hash = crate::Crypto::sha256(crypto, &commitment).to_vec();
119        versioned_hash[0] = VERSIONED_HASH_VERSION_KZG;
120        let z = hex!("73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000000").to_vec();
121        let y = hex!("1522a4a7f34e1ea350ae07c29c96c7e79655aa926122e95fe69fcbd932ca49e9").to_vec();
122        let proof = hex!("a62ad71d14c5719385c0686f1871430475bf3a00f0aa3f7b8dd99a9abc2160744faf0070725e00b60ad9a026a15b1a8c").to_vec();
123
124        let input = [versioned_hash, z, y, commitment, proof].concat();
125
126        let expected_output = hex!("000000000000000000000000000000000000000000000000000000000000100073eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000001");
127        let gas = 50000;
128        let output = run(&input, gas).unwrap();
129        assert_eq!(output.gas_used, gas);
130        assert_eq!(output.bytes[..], expected_output);
131    }
132
133    #[test]
134    fn test_invalid_input() {
135        let commitment = hex!("c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
136        let z = hex!("0000000000000000000000000000000000000000000000000000000000000000");
137        let y = hex!("73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000001");
138        let proof = hex!("c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
139
140        let t = verify_kzg_proof(&commitment, &z, &y, &proof);
141        assert!(!t);
142    }
143
144    #[test]
145    fn test_valid_input() {
146        let commitment = hex!("c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
147        let z = hex!("73eda753299d7d483339d80809a1d80553bda402fffe5bfeffffffff00000000");
148        let y = hex!("0000000000000000000000000000000000000000000000000000000000000000");
149        let proof = hex!("c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
150
151        let t = verify_kzg_proof(&commitment, &z, &y, &proof);
152        assert!(t);
153    }
154}