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
use alloy::primitives::{Address, Bytes, FixedBytes, U256};
use alloy::rlp::{Decodable, Encodable, Header};
use serde::{ser::SerializeSeq, Deserialize, Serialize};

use super::utils::{hash_bytecode, BytecodeHashError};

// Serialize `Bytes` as `Vec<u8>` as they are encoded as hex string for human-friendly serializers
fn serialize_bytes<S: serde::Serializer>(
    bytes: &Vec<Bytes>,
    serializer: S,
) -> Result<S::Ok, S::Error> {
    let mut seq = serializer.serialize_seq(Some(bytes.len()))?;
    for e in bytes {
        seq.serialize_element(&e.0)?;
    }
    seq.end()
}

// Seralize 'Bytes' to encode them into RLP friendly format.
fn serialize_bytes_custom<S: serde::Serializer>(
    bytes: &Bytes,
    serializer: S,
) -> Result<S::Ok, S::Error> {
    serializer.serialize_bytes(&bytes.0)
}

fn serialize_bytes_opt<S: serde::Serializer>(
    value: &Option<Bytes>,
    serializer: S,
) -> Result<S::Ok, S::Error> {
    match value {
        Some(bytes) => serializer.serialize_bytes(&bytes.0),
        None => serializer.serialize_none(),
    }
}
// TODO: The structure should be correct by construction, e.g. we should not allow
// creating or deserializing meta that has invalid factory deps.
// TODO: Serde here is used for `TransactionRequest` needs, this has to be reworked once
// `TransactionRequest` uses custom `Eip712Meta` structure.

/// Represents the EIP-712 metadata for ZKsync transactions.
#[derive(Default, Serialize, Deserialize, Clone, PartialEq, Debug, Eq, Hash)]
#[serde(rename_all = "camelCase")]
pub struct Eip712Meta {
    /// Gas per pubdata for the transaction.
    pub gas_per_pubdata: U256,
    /// Factory dependencies for the transaction.
    /// Used during the contract deployment, should contain the bytecode of the contract itself,
    /// as well as bytecodes for any contracts that can be deployed by the contract (e.g. via
    /// CREATE).
    #[serde(default)]
    #[serde(serialize_with = "serialize_bytes")]
    pub factory_deps: Vec<Bytes>,
    /// Custom signature for the transaction.
    ///
    /// Should only be set in case of using a custom account implementation.
    #[serde(serialize_with = "serialize_bytes_opt")]
    pub custom_signature: Option<Bytes>,
    /// Paymaster parameters for the transaction.
    pub paymaster_params: Option<PaymasterParams>,
}

impl Eip712Meta {
    /// Computes the hashes of the factory dependencies.
    ///
    /// Returns an error if any of the dependencies cannot be hashed.
    pub fn factory_deps_hashes(&self) -> Result<Vec<FixedBytes<32>>, BytecodeHashError> {
        let mut hashes = Vec::with_capacity(self.factory_deps.len() * 32);
        for dep in &self.factory_deps {
            let hash = hash_bytecode(dep)?;
            hashes.push(hash.into());
        }
        Ok(hashes)
    }
}

impl Decodable for Eip712Meta {
    fn decode(buf: &mut &[u8]) -> alloy::rlp::Result<Self> {
        fn opt_decode<T: Decodable>(buf: &mut &[u8]) -> alloy::rlp::Result<Option<T>> {
            Ok(Decodable::decode(buf).ok()) // TODO: better validation of error?
        }

        let gas_per_pubdata = Decodable::decode(buf)?;
        let factory_deps = Decodable::decode(buf)?;
        let custom_signature = opt_decode(buf)?;
        let paymaster_params = opt_decode(buf)?;

        Ok(Self {
            gas_per_pubdata,
            factory_deps,
            custom_signature,
            paymaster_params,
        })
    }
}

impl Encodable for Eip712Meta {
    fn encode(&self, out: &mut dyn alloy::rlp::BufMut) {
        fn opt_encode<T>(stream: &mut dyn alloy::rlp::BufMut, value: Option<T>)
        where
            T: Encodable,
        {
            if let Some(v) = value {
                v.encode(stream);
            } else {
                "".encode(stream);
            }
        }
        self.gas_per_pubdata.encode(out);
        self.factory_deps.encode(out);
        opt_encode(out, self.custom_signature.clone());
        opt_encode(out, self.paymaster_params.clone());
    }

    // TODO: Implement `length` method
}

/// Represents the paymaster parameters for ZKsync Era transactions.
#[derive(Default, Serialize, Deserialize, Clone, PartialEq, Debug, Eq, Hash)]
#[serde(rename_all = "camelCase")]
pub struct PaymasterParams {
    /// Address of the paymaster.
    pub paymaster: Address,
    /// Paymaster input.
    // A custom serialization is needed (otherwise RLP treats it as string).
    #[serde(serialize_with = "serialize_bytes_custom")]
    pub paymaster_input: Bytes,
}

impl Decodable for PaymasterParams {
    fn decode(buf: &mut &[u8]) -> alloy::rlp::Result<Self> {
        let mut bytes = Header::decode_bytes(buf, true)?;
        let payload_view = &mut bytes;
        Ok(Self {
            paymaster: dbg!(Decodable::decode(payload_view))?,
            paymaster_input: dbg!(Decodable::decode(payload_view))?,
        })
    }
}

impl Encodable for PaymasterParams {
    fn encode(&self, out: &mut dyn alloy::rlp::BufMut) {
        // paymaster params have to be encoded as a list.
        let h = Header {
            list: true,
            payload_length: self.paymaster.length() + self.paymaster_input.length(),
        };
        h.encode(out);
        self.paymaster.encode(out);
        self.paymaster_input.encode(out);
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use alloy::primitives::address;
    use serde_json::json;

    #[test]
    fn test_bytes_get_serialized_into_vec() {
        let meta = Eip712Meta {
            gas_per_pubdata: U256::from(4),
            factory_deps: vec![vec![1, 2].into()],
            custom_signature: Some(vec![3, 4].into()),
            paymaster_params: Some(PaymasterParams {
                paymaster: address!("99E12239CBf8112fBB3f7Fd473d0558031abcbb5"),
                paymaster_input: vec![5, 6].into(),
            }),
        };

        let expected_json = json!({
            "gasPerPubdata": "0x4",
            "factoryDeps": [[1,2]],
            "customSignature": [3, 4],
            "paymasterParams": {
                 "paymaster": "0x99e12239cbf8112fbb3f7fd473d0558031abcbb5",
                 "paymasterInput": [5, 6],
            }
        });

        let actual_json = serde_json::to_value(&meta).unwrap();
        assert_eq!(expected_json, actual_json);
    }
}