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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
//! EIP-712 transaction type, specific to the ZKsync network.

use alloy::consensus::{
    transaction::RlpEcdsaEncodableTx, SignableTransaction, Signed, Transaction, Typed2718,
};
use alloy::primitives::PrimitiveSignature as Signature;
use alloy::primitives::{keccak256, Address, Bytes, ChainId, TxKind, U256};
use alloy::rlp::{BufMut, Decodable, Encodable, Header};
use alloy::rpc::types::TransactionInput;
use serde::{Deserialize, Serialize};

use crate::network::tx_type::TxType;

pub use self::meta::{Eip712Meta, PaymasterParams};
pub use self::utils::{hash_bytecode, BytecodeHashError};

mod meta;
mod signing;
mod utils;

/// A ZKsync-native transaction type with additional fields.
/// Besides additional fields, represents an EIP-1559 transaction.
///
/// Note: Unlike EIP-1559, does not have `access_list` field.
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
#[doc(
    alias = "Eip712Transaction",
    alias = "TransactionEip712",
    alias = "Eip712Tx"
)]
pub struct TxEip712 {
    /// EIP-155: Simple replay attack protection
    #[serde(with = "alloy::serde::quantity")]
    pub chain_id: ChainId,
    /// A scalar value equal to the number of transactions sent by the sender; formally Tn.
    // TODO: Explain composite nonce?
    pub nonce: U256,
    /// A scalar value equal to the maximum
    /// amount of gas that should be used in executing
    /// this transaction. This is paid up-front, before any
    /// computation is done and may not be increased
    /// later; formally Tg.
    #[serde(with = "alloy::serde::quantity")]
    pub gas: u64,
    /// A scalar value equal to the maximum
    /// amount of gas that should be used in executing
    /// this transaction. This is paid up-front, before any
    /// computation is done and may not be increased
    /// later; formally Tg.
    ///
    /// As ethereum circulation is around 120mil eth as of 2022 that is around
    /// 120000000000000000000000000 wei we are safe to use u128 as its max number is:
    /// 340282366920938463463374607431768211455
    ///
    /// This is also known as `GasFeeCap`
    #[serde(with = "alloy::serde::quantity")]
    pub max_fee_per_gas: u128,
    /// Max Priority fee that transaction is paying
    ///
    /// As ethereum circulation is around 120mil eth as of 2022 that is around
    /// 120000000000000000000000000 wei we are safe to use u128 as its max number is:
    /// 340282366920938463463374607431768211455
    ///
    /// This is also known as `GasTipCap`
    #[serde(with = "alloy::serde::quantity")]
    pub max_priority_fee_per_gas: u128, // TODO: Should be option
    /// Address of the receiver of the message.
    /// Unlike with other transactions, this field must be present.
    /// In case of the contract deployment, the address should be set to the deployer system contract,
    /// and the payload should contain ABI-encoded salt, contract bytecode hash, and constructor arguments.
    pub to: Address,
    /// Address of the sender of the message.
    pub from: Address,
    /// A scalar value equal to the number of Wei to
    /// be transferred to the message call’s recipient or,
    /// in the case of contract creation, as an endowment
    /// to the newly created account; formally Tv.
    pub value: U256,
    /// Input has two uses depending if transaction is Create or Call (if `to` field is None or
    /// Some). pub init: An unlimited size byte array specifying the
    /// EVM-code for the account initialisation procedure CREATE,
    /// data: An unlimited size byte array specifying the
    /// input data of the message call, formally Td.
    pub input: Bytes,
    /// ZKsync-specific fields.
    #[serde(flatten)]
    pub eip712_meta: Option<Eip712Meta>,
}

impl TxEip712 {
    /// Returns the effective gas price for the given `base_fee`.
    pub const fn effective_gas_price(&self, base_fee: Option<u64>) -> u128 {
        match base_fee {
            None => self.max_fee_per_gas,
            Some(base_fee) => {
                // if the tip is greater than the max priority fee per gas, set it to the max
                // priority fee per gas + base fee
                let tip = self.max_fee_per_gas.saturating_sub(base_fee as u128);
                if tip > self.max_priority_fee_per_gas {
                    self.max_priority_fee_per_gas + base_fee as u128
                } else {
                    // otherwise return the max fee per gas
                    self.max_fee_per_gas
                }
            }
        }
    }

    /// Inner encoding function that is used for both rlp [`Encodable`] trait and for calculating
    /// hash that for eip2718 does not require a rlp header.
    pub(crate) fn encode_with_signature(
        &self,
        signature: &Signature,
        out: &mut dyn BufMut,
        // with_header: bool,
    ) {
        // if with_header {
        //     let payload_length = self.payload_length_unoptimized(signature);
        //     Header {
        //         list: false,
        //         payload_length: 1
        //             + Header {
        //                 list: true,
        //                 payload_length,
        //             }
        //             .length()
        //             + payload_length,
        //     }
        //     .encode(out);
        // }
        out.put_u8(self.tx_type() as u8);
        self.encode_with_signature_fields(signature, out);
    }

    /// Decodes the transaction from RLP bytes, including the signature.
    ///
    /// This __does not__ expect the bytes to start with a transaction type byte or string
    /// header.
    ///
    /// This __does__ expect the bytes to start with a list header and include a signature.
    #[doc(hidden)]
    pub fn decode_signed_fields(buf: &mut &[u8]) -> alloy::rlp::Result<Signed<Self>> {
        let header = Header::decode(buf)?;
        if !header.list {
            return Err(alloy::rlp::Error::UnexpectedString);
        }

        // record original length so we can check encoding
        let original_len = buf.len();

        let nonce = Decodable::decode(buf)?;
        let max_priority_fee_per_gas = Decodable::decode(buf)?;
        let max_fee_per_gas = Decodable::decode(buf)?;
        let gas = Decodable::decode(buf)?;
        let to = Decodable::decode(buf)?;
        let value = Decodable::decode(buf)?;
        let input = Decodable::decode(buf)?;
        let signature = Signature::decode_rlp_vrs(buf, bool::decode)?;
        let chain_id = Decodable::decode(buf)?;
        let from = Decodable::decode(buf)?;
        let eip712_meta = Decodable::decode(buf)?;

        let tx = Self {
            chain_id,
            nonce,
            gas,
            max_fee_per_gas,
            max_priority_fee_per_gas,
            to,
            from,
            value,
            input,
            eip712_meta: Some(eip712_meta),
        };

        // Context: `SignableTransaction` is commented out for now.
        let signed = tx.into_signed(signature);

        if buf.len() + header.payload_length != original_len {
            return Err(alloy::rlp::Error::ListLengthMismatch {
                expected: header.payload_length,
                got: original_len - buf.len(),
            });
        }

        Ok(signed)
    }

    pub(crate) fn fields_len(&self) -> usize {
        self.nonce.length()
            + self.max_priority_fee_per_gas.length()
            + self.max_fee_per_gas.length()
            + self.gas.length()
            + self.to.length()
            + self.value.length()
            + self.input.length()
            + self.chain_id.length()
            + self.from.length()
            + self
                .eip712_meta
                .as_ref()
                .map(|m| m.length())
                .unwrap_or_default()
    }

    /// Encodes the transaction from RLP bytes, including the signature. This __does not__ encode a
    /// tx type byte or string header.
    ///
    /// This __does__ encode a list header and include a signature.
    pub(crate) fn encode_with_signature_fields(&self, signature: &Signature, out: &mut dyn BufMut) {
        let payload_length = self.fields_len() + signature.rlp_rs_len() + signature.v().length();
        let header = Header {
            list: true,
            payload_length,
        };
        header.encode(out);

        self.nonce.encode(out);
        self.max_priority_fee_per_gas.encode(out);
        self.max_fee_per_gas.encode(out);
        self.gas.encode(out);
        self.to.encode(out);
        self.value.encode(out);
        self.input.0.encode(out);
        signature.write_rlp_vrs(out, signature.v());
        self.chain_id.encode(out);
        self.from.encode(out);
        if let Some(eip712_meta) = &self.eip712_meta {
            eip712_meta.encode(out);
        }
    }

    /// Gets the length of the encoded header.
    pub(crate) fn encoded_length(&self, signature: &Signature) -> usize {
        let payload_length = self.fields_len() + signature.rlp_rs_len() + signature.v().length();
        alloy::rlp::length_of_length(payload_length) + payload_length
    }

    /// Get transaction type
    #[doc(alias = "transaction_type")]
    pub(crate) const fn tx_type(&self) -> TxType {
        TxType::Eip712
    }

    // /// Calculates a heuristic for the in-memory size of the [TxEip712] transaction.
    // #[inline]
    // pub fn size(&self) -> usize {
    //     mem::size_of::<ChainId>() + // chain_id
    //     mem::size_of::<u64>() + // nonce
    //     mem::size_of::<u64>() + // gas_limit
    //     mem::size_of::<u128>() + // max_fee_per_gas
    //     mem::size_of::<u128>() + // max_priority_fee_per_gas
    //     self.to.size() + // to
    //     mem::size_of::<U256>() + // value
    //     self.input.len() // input
    // }
}

impl Typed2718 for TxEip712 {
    fn ty(&self) -> u8 {
        self.tx_type() as u8
    }
}

impl Transaction for TxEip712 {
    fn chain_id(&self) -> Option<ChainId> {
        Some(self.chain_id)
    }

    fn nonce(&self) -> u64 {
        // TODO: Better interface for nonce decomposition?
        (self.nonce % U256::from(u64::MAX)).try_into().unwrap()
    }

    fn gas_limit(&self) -> u64 {
        self.gas
    }

    fn gas_price(&self) -> Option<u128> {
        None
    }

    fn to(&self) -> Option<Address> {
        self.to.into()
    }

    fn is_create(&self) -> bool {
        matches!(self.kind(), TxKind::Create)
    }

    fn value(&self) -> U256 {
        self.value
    }

    fn input(&self) -> &Bytes {
        &self.input
    }

    fn max_fee_per_gas(&self) -> u128 {
        self.max_fee_per_gas
    }

    fn max_priority_fee_per_gas(&self) -> Option<u128> {
        Some(self.max_priority_fee_per_gas)
    }

    fn max_fee_per_blob_gas(&self) -> Option<u128> {
        None
    }

    fn priority_fee_or_price(&self) -> u128 {
        todo!()
    }

    fn access_list(&self) -> Option<&alloy::rpc::types::AccessList> {
        None
    }

    fn blob_versioned_hashes(&self) -> Option<&[alloy::primitives::B256]> {
        None
    }

    fn authorization_list(&self) -> Option<&[alloy::eips::eip7702::SignedAuthorization]> {
        None
    }

    fn kind(&self) -> TxKind {
        self.to.into()
    }

    fn effective_gas_price(&self, base_fee: Option<u64>) -> u128 {
        self.effective_gas_price(base_fee)
    }

    fn is_dynamic_fee(&self) -> bool {
        false
    }
}

// Context: Encodable/Decodable assume that there is no signature in the transaction
impl SignableTransaction<Signature> for TxEip712 {
    fn set_chain_id(&mut self, chain_id: ChainId) {
        self.chain_id = chain_id;
    }

    fn encode_for_signing(&self, out: &mut dyn alloy::rlp::BufMut) {
        // Reimplementation of `SolStruct::eip712_signing_hash`
        out.put_u8(0x19);
        out.put_u8(0x01);
        out.put_slice(self.domain_hash().as_slice());
        out.put_slice(self.eip712_hash_struct().as_slice());
    }

    fn payload_len_for_signature(&self) -> usize {
        // 2 bytes for the header, 32 bytes for the domain hash, 32 bytes for the transaction hash
        2 + 32 + 32
    }

    fn into_signed(self, signature: Signature) -> Signed<Self> {
        let mut buf = [0u8; 64];
        buf[..32].copy_from_slice(self.signature_hash().as_slice());
        buf[32..].copy_from_slice(keccak256(signature.as_bytes()).as_slice());
        let hash = keccak256(buf);

        Signed::new_unchecked(self, signature, hash)
    }
}

impl RlpEcdsaEncodableTx for TxEip712 {
    #[doc = " Calculate the encoded length of the transaction\'s fields, without a RLP"]
    #[doc = " header."]
    fn rlp_encoded_fields_length(&self) -> usize {
        self.rlp_encoded_length()
    }

    #[doc = " Encodes only the transaction\'s fields into the desired buffer, without"]
    #[doc = " a RLP header."]
    fn rlp_encode_fields(&self, out: &mut dyn BufMut) {
        self.rlp_encode(out);
    }
}

// // Context: encoding is implemented for the purpose of EIP-712 signing.
// impl Encodable for TxEip712 {
//     fn encode(&self, out: &mut dyn BufMut) {
//         Header {
//             list: true,
//             payload_length: self.fields_len(),
//         }
//         .encode(out);
//         self.encode_fields(out);
//     }

//     fn length(&self) -> usize {
//         let payload_length = self.fields_len();
//         Header {
//             list: true,
//             payload_length,
//         }
//         .length()
//             + payload_length
//     }
// }

// impl Decodable for TxEip712 {
//     fn decode(data: &mut &[u8]) -> alloy::rlp::Result<Self> {
//         let header = Header::decode(data)?;
//         let remaining_len = data.len();

//         if header.payload_length > remaining_len {
//             return Err(alloy::rlp::Error::InputTooShort);
//         }

//         println!("decode fields");
//         Self::decode_fields(data)
//     }
// }

impl From<TxEip712> for alloy::rpc::types::transaction::TransactionRequest {
    fn from(tx: TxEip712) -> Self {
        Self {
            transaction_type: Some(tx.tx_type() as u8),
            chain_id: Some(tx.chain_id),
            nonce: Some((tx.nonce % U256::from(u64::MAX)).try_into().unwrap()), // TODO: Is decomposed nonce fine here?
            gas: Some(tx.gas),
            max_fee_per_gas: Some(tx.max_fee_per_gas),
            max_priority_fee_per_gas: Some(tx.max_priority_fee_per_gas),
            to: Some(tx.to.into()),
            from: Some(tx.from),
            value: Some(tx.value),
            input: TransactionInput::new(tx.input),
            access_list: None,
            blob_versioned_hashes: None,
            max_fee_per_blob_gas: None,
            gas_price: None,
            sidecar: None,
            authorization_list: None,
        }
    }
}

#[cfg(test)]
mod tests {
    use std::str::FromStr;

    use crate::network::unsigned_tx::eip712::{Eip712Meta, PaymasterParams};

    use super::TxEip712;
    use alloy::consensus::SignableTransaction;
    use alloy::hex::FromHex;
    use alloy::primitives::{
        address, hex, Address, Bytes, FixedBytes, PrimitiveSignature as Signature, B256, U256,
    };

    #[test]
    fn decode_eip712_tx() {
        // Does not have type byte.
        let encoded = hex::decode("f8b701800b0c940754b07d1ea3071c3ec9bd86b2aa6f1a59a514980a8301020380a0635f9ee3a1523de15fc8b72a0eea12f5247c6b6e2369ed158274587af6496599a030f7c66d1ed24fca92527e6974b85b07ec30fdd5c2d41eae46966224add965f982010e9409a6aa96b9a17d7f7ba3e3b19811c082aba9f1e304e1a0020202020202020202020202020202020202020202020202020202020202020283010203d694000000000000000000000000000000000000000080").unwrap();
        let signed_tx = TxEip712::decode_signed_fields(&mut &encoded[..]).unwrap();
        let tx = signed_tx.tx();
        assert_eq!(tx.chain_id, 270);
        assert_eq!(tx.nonce, U256::from(1));
        assert_eq!(tx.gas, 12);
        assert_eq!(tx.max_fee_per_gas, 11);
        assert_eq!(tx.max_priority_fee_per_gas, 0);
        assert_eq!(tx.to, address!("0754b07d1ea3071c3ec9bd86b2aa6f1a59a51498"));
        assert_eq!(
            tx.from,
            address!("09a6aa96b9a17d7f7ba3e3b19811c082aba9f1e3")
        );
        assert_eq!(tx.value, U256::from(10));
        assert_eq!(tx.input, Bytes::from_hex("0x010203").unwrap());
        assert_eq!(
            tx.eip712_meta,
            Some(Eip712Meta {
                gas_per_pubdata: U256::from(4),
                factory_deps: vec![Bytes::from_hex(
                    "0x0202020202020202020202020202020202020202020202020202020202020202"
                )
                .unwrap()],
                custom_signature: Some(Bytes::from_hex("0x010203").unwrap()),
                paymaster_params: Some(PaymasterParams {
                    paymaster: address!("0000000000000000000000000000000000000000"),
                    paymaster_input: Bytes::from_hex("0x").unwrap()
                }),
            })
        );
    }

    #[test]
    fn decode_eip712_tx_with_paymaster() {
        // This is request to AA account with paymaster set and no signature.
        // Does not have type byte.
        let encoded = hex::decode("f9036580843b9aca00843b9aca0083989680949c1a3d7c98dbf89c7f5d167f2219c29c2fe775a780b903045abef77a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000051ef809ffd89cf8056d4c17f0aff1b6f8257eb6000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001e10100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000078cad996530109838eb016619f5931a03250489a000000000000000000000000aaf5f437fb0524492886fba64d703df15bf619ae000000000000000000000000000000000000000000000000000000000000010f00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064a41368620000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000568656c6c6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080808082010f94b2a6e81272904caf680008078feb36336d9376b482c350c080d89499e12239cbf8112fbb3f7fd473d0558031abcbb5821234").unwrap();
        let signed_tx = TxEip712::decode_signed_fields(&mut &encoded[..]).unwrap();
        let tx = signed_tx.tx();
        assert_eq!(tx.chain_id, 271);
        assert_eq!(tx.nonce, U256::from(0));
        assert_eq!(tx.gas, 10000000);
        assert_eq!(tx.max_fee_per_gas, 1000000000);
        assert_eq!(tx.max_priority_fee_per_gas, 1000000000);
        assert_eq!(tx.to, address!("9c1a3d7c98dbf89c7f5d167f2219c29c2fe775a7"));
        assert_eq!(
            tx.from,
            address!("b2a6e81272904caf680008078feb36336d9376b4")
        );
        assert_eq!(tx.value, U256::from(0));
        assert_eq!(tx.input, Bytes::from_hex("5abef77a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000051ef809ffd89cf8056d4c17f0aff1b6f8257eb6000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000001e10100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000078cad996530109838eb016619f5931a03250489a000000000000000000000000aaf5f437fb0524492886fba64d703df15bf619ae000000000000000000000000000000000000000000000000000000000000010f00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064a41368620000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000568656c6c6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000").unwrap());

        assert_eq!(
            tx.eip712_meta,
            Some(Eip712Meta {
                gas_per_pubdata: U256::from(50000),
                factory_deps: vec![],
                custom_signature: Some(Bytes::from_hex("0x").unwrap()),
                paymaster_params: Some(PaymasterParams {
                    paymaster: address!("99E12239CBf8112fBB3f7Fd473d0558031abcbb5"),
                    paymaster_input: Bytes::from_hex("0x1234").unwrap()
                }),
            })
        );
    }

    #[test]
    fn test_eip712_tx() {
        let eip712_meta = Eip712Meta {
            gas_per_pubdata: U256::from(4),
            factory_deps: vec![vec![2; 32].into()],
            custom_signature: Some(vec![].into()),
            paymaster_params: None,
        };
        let tx = TxEip712 {
            chain_id: 270,
            from: Address::from_str("0xe30f4fb40666753a7596d315f2f1f1d140d1508b").unwrap(),
            to: Address::from_str("0x82112600a140ceaa9d7da373bb65453f7d99af4b").unwrap(),
            nonce: U256::from(1),
            value: U256::from(10),
            gas: 12,
            max_fee_per_gas: 11,
            max_priority_fee_per_gas: 0,
            input: vec![0x01, 0x02, 0x03].into(),
            eip712_meta: Some(eip712_meta),
        };
        let expected_signature_hash = FixedBytes::<32>::from_str(
            "0xfc76820a67d9b1b351f2ac661e6d2bcca1c67508ae4930e036f540fa135875fe",
        )
        .unwrap();
        assert_eq!(tx.signature_hash(), expected_signature_hash);

        let signature = Signature::from_str("0x3faf83b5451ad3001f96f577b0bb5dfcaa7769ab11908f281dc6b15c45a3986f0325197832aac9a7ab2f5a83873834d457e0d22c1e72377d45364c6968f8ac3b1c").unwrap();
        let recovered_signer = signature
            .recover_address_from_prehash(&tx.signature_hash())
            .unwrap();
        assert_eq!(recovered_signer, tx.from);

        let mut buf = Vec::new();
        tx.encode_with_signature_fields(&signature, &mut buf);
        let decoded = TxEip712::decode_signed_fields(&mut &buf[..]).unwrap();
        assert_eq!(decoded, tx.into_signed(signature));

        let expected_hash =
            B256::from_str("0xb85668399db249d62d06bbc59eace82e01364602fb7159e161ca810ff6ddbbf4")
                .unwrap();
        assert_eq!(*decoded.hash(), expected_hash);
    }

    #[test]
    fn test_eip712_tx_encode_decode_with_paymaster() {
        let eip712_meta = Eip712Meta {
            gas_per_pubdata: U256::from(4),
            factory_deps: vec![vec![2; 32].into()],
            custom_signature: Some(vec![].into()),
            paymaster_params: Some(PaymasterParams {
                paymaster: address!("99E12239CBf8112fBB3f7Fd473d0558031abcbb5"),
                paymaster_input: Bytes::from_hex("0x112233").unwrap(),
            }),
        };
        let tx = TxEip712 {
            chain_id: 270,
            from: Address::from_str("0xe30f4fb40666753a7596d315f2f1f1d140d1508b").unwrap(),
            to: Address::from_str("0x82112600a140ceaa9d7da373bb65453f7d99af4b").unwrap(),
            nonce: U256::from(1),
            value: U256::from(10),
            gas: 12,
            max_fee_per_gas: 11,
            max_priority_fee_per_gas: 0,
            input: vec![0x01, 0x02, 0x03].into(),
            eip712_meta: Some(eip712_meta),
        };

        // This is a random signature, but that's ok.
        let signature = Signature::from_str("0x3faf83b5451ad3001f96f577b0bb5dfcaa7769ab11908f281dc6b15c45a3986f0325197832aac9a7ab2f5a83873834d457e0d22c1e72377d45364c6968f8ac3b1c").unwrap();

        let mut buf = Vec::new();
        tx.encode_with_signature_fields(&signature, &mut buf);
        let decoded = TxEip712::decode_signed_fields(&mut &buf[..]).unwrap();
        // Make sure that paymaster data was loaded correctly.
        assert_eq!(decoded, tx.into_signed(signature));
    }

    // #[test]
    // fn recover_signer_eip712() {
    //     let signer: Address = address!("dd6b8b3dc6b7ad97db52f08a275ff4483e024cea");
    //     let hash: B256 = b256!("0ec0b6a2df4d87424e5f6ad2a654e27aaeb7dac20ae9e8385cc09087ad532ee0");

    //     let tx =  TxEip712 {
    //         chain_id: 1,
    //         nonce: 0x42,
    //         gas_limit: 44386,
    //         to: address!("6069a6c32cf691f5982febae4faf8a6f3ab2f0f6").into(),
    //         value: U256::from(0_u64),
    //         input:  hex!("a22cb4650000000000000000000000005eee75727d804a2b13038928d36f8b188945a57a0000000000000000000000000000000000000000000000000000000000000000").into(),
    //         max_fee_per_gas: 0x4a817c800,
    //         max_priority_fee_per_gas: 0x3b9aca00,
    //         access_list: AccessList::default(),
    //         eip712_meta: Eip712Meta::default(),
    //     };

    //     let sig = Signature::from_scalars_and_parity(
    //         b256!("840cfc572845f5786e702984c2a582528cad4b49b2a10b9db1be7fca90058565"),
    //         b256!("25e7109ceb98168d95b09b18bbf6b685130e0562f233877d492b94eee0c5b6d1"),
    //         false,
    //     )
    //     .unwrap();

    //     assert_eq!(
    //         tx.signature_hash(),
    //         hex!("0d5688ac3897124635b6cf1bc0e29d6dfebceebdc10a54d74f2ef8b56535b682")
    //     );

    //     let signed_tx = tx.into_signed(sig);
    //     assert_eq!(*signed_tx.hash(), hash, "Expected same hash");
    //     // assert_eq!(
    //     //     signed_tx.recover_signer().unwrap(),
    //     //     signer,
    //     //     "Recovering signer should pass."
    //     // );
    // }

    // #[test]
    // fn encode_decode_eip712() {
    //     let hash: B256 = b256!("0ec0b6a2df4d87424e5f6ad2a654e27aaeb7dac20ae9e8385cc09087ad532ee0");

    //     let tx =  TxEip712 {
    //         chain_id: 1,
    //         nonce: 0x42,
    //         gas_limit: 44386,
    //         to: address!("6069a6c32cf691f5982febae4faf8a6f3ab2f0f6").into(),
    //         value: U256::from(0_u64),
    //         input:  hex!("a22cb4650000000000000000000000005eee75727d804a2b13038928d36f8b188945a57a0000000000000000000000000000000000000000000000000000000000000000").into(),
    //         max_fee_per_gas: 0x4a817c800,
    //         max_priority_fee_per_gas: 0x3b9aca00,
    //         access_list: AccessList::default(),
    //         eip712_meta: Eip712Meta::default(),
    //     };

    //     let sig = Signature::from_scalars_and_parity(
    //         b256!("840cfc572845f5786e702984c2a582528cad4b49b2a10b9db1be7fca90058565"),
    //         b256!("25e7109ceb98168d95b09b18bbf6b685130e0562f233877d492b94eee0c5b6d1"),
    //         false,
    //     )
    //     .unwrap();

    //     let mut buf = vec![];
    //     tx.encode_with_signature_fields(&sig, &mut buf);
    //     let decoded = TxEip712::decode_signed_fields(&mut &buf[..]).unwrap();
    //     assert_eq!(decoded, tx.into_signed(sig));
    //     assert_eq!(*decoded.hash(), hash);
    // }
}