Skip to content

Commit 5ee0157

Browse files
authored
add pre-eip155 evm circuit test (#1412)
* try add pre-eip155 test * move test out of tx_access_list * fix build * try mock existing pre-eip155 tx * use CircuitsParams for test pass for default feature * log tx type * try restore chain_id * comment chain_id and remove build_pre_eip155_tx * test tx with sig v=27 * MockTransaction::copy_from * refactor * add note * fix clippy * fix ci * some updates * figure out to use clone_from
1 parent e3f8cc1 commit 5ee0157

File tree

4 files changed

+105
-3
lines changed

4 files changed

+105
-3
lines changed

bus-mapping/src/circuit_input_builder/transaction.rs

+6
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,12 @@ impl Transaction {
343343
);
344344

345345
let tx_type = TxType::get_tx_type(eth_tx);
346+
log::debug!(
347+
"{:?}th tx, tx hash {:?}, tx_type {:?}",
348+
eth_tx.transaction_index,
349+
eth_tx.hash(),
350+
tx_type
351+
);
346352
let (l1_fee, l1_fee_committed) = if tx_type.is_l1_msg() {
347353
Default::default()
348354
} else {

geth-utils/l2geth/trace.go

+13-1
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,20 @@ func transferTxs(txs []Transaction, chainID *big.Int) types.Transactions {
9090
}
9191
t_txs = append(t_txs, types.NewTx(l1msgTx))
9292
} else {
93-
9493
switch tx.Type {
94+
case "PreEip155":
95+
t := &types.LegacyTx{
96+
Nonce: uint64(tx.Nonce),
97+
GasPrice: toBigInt(tx.GasPrice),
98+
Gas: uint64(tx.GasLimit),
99+
To: tx.To,
100+
Value: toBigInt(tx.Value),
101+
Data: tx.CallData,
102+
V: big.NewInt(tx.V),
103+
R: tx.R.ToInt(),
104+
S: tx.S.ToInt(),
105+
}
106+
t_txs = append(t_txs, types.NewTx(t))
95107
case "Eip155":
96108
t := &types.LegacyTx{
97109
Nonce: uint64(tx.Nonce),

mock/src/transaction.rs

+8
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,10 @@ impl MockTransaction {
345345
.value(self.value)
346346
.data(self.input.clone())
347347
.gas(self.gas)
348+
// Note: even pre-eip155 type transaction doesn't have chain_id field, here having chain_id won't
349+
// result in negative effects, because eventually geth_type::Transaction decide the tx type by TxType::get_tx_type(tx)
350+
// then trace.go will treat it as correct pre-eip155 type transaction. the additional chain_id
351+
// is not used finally.
348352
.chain_id(self.chain_id);
349353

350354
let tx = if let Some(gas_price) = self.gas_price {
@@ -359,6 +363,9 @@ impl MockTransaction {
359363
};
360364

361365
match (self.v, self.r, self.s) {
366+
(Some(_), Some(_), Some(_)) => {
367+
// already have entire signature data, won't do anything.
368+
}
362369
(None, None, None) => {
363370
// Compute sig params and set them in case we have a wallet as `from` attr.
364371
if self.from.is_wallet() && self.hash.is_none() {
@@ -372,6 +379,7 @@ impl MockTransaction {
372379
self.sig_data((sig.v, sig.r, sig.s));
373380
}
374381
}
382+
375383
_ => panic!("Either all or none of the SigData params have to be set"),
376384
}
377385

zkevm-circuits/src/evm_circuit/execution/begin_tx.rs

+78-2
Original file line numberDiff line numberDiff line change
@@ -1254,9 +1254,10 @@ mod test {
12541254
use std::{str::FromStr, vec};
12551255

12561256
use crate::{evm_circuit::test::rand_bytes, test_util::CircuitTestBuilder};
1257-
use bus_mapping::evm::OpcodeId;
1257+
use bus_mapping::{circuit_input_builder::CircuitsParams, evm::OpcodeId};
12581258
use eth_types::{
1259-
self, address, bytecode, evm_types::GasCost, word, Address, Bytecode, Hash, Word, U256,
1259+
self, address, bytecode, evm_types::GasCost, word, Address, Bytecode, Error, Hash, Word,
1260+
U256,
12601261
};
12611262
use ethers_core::{types::Bytes, utils::get_contract_address};
12621263
use mock::{eth, gwei, MockTransaction, TestContext, MOCK_ACCOUNTS};
@@ -1737,4 +1738,79 @@ mod test {
17371738
.block_modifier(Box::new(|block| block.circuits_params.max_txs = 3))
17381739
.run();
17391740
}
1741+
1742+
// Note: all pre-eip155 txs here for testing have signature data. don't need to generate signature dynamically
1743+
// because ethers-rs lib's helper `sign_transaction_sync` doesn't support pre-eip155 type.
1744+
#[test]
1745+
fn test_legacy_tx_pre_eip155() {
1746+
let mut tx1 = MockTransaction::default();
1747+
// pre-eip155 tx1 downloaded from [etherscan](https://etherscan.io/getRawTx?tx=0x9cd2288e69623b109e25edc46bc518156498b521e5c162d96e1ab392ff1d9dff)
1748+
// tx with signature::v =0x1c (28).
1749+
let sig_data1 = (
1750+
0x1c_u64,
1751+
word!("0x90b751c5870e9bc071c8d6b2bf1ee80f36ee7efd8e6fbabaa25bd3b8b68cfe9b"),
1752+
word!("0x79c25a01f12493a6d35f1330306d4e3c4e782fcbffc64c6809959577f41ff248"),
1753+
);
1754+
1755+
tx1
1756+
.from(address!("0xcf40d0d2b44f2b66e07cace1372ca42b73cf21a3"))
1757+
.nonce(word!("0x2ea8"))
1758+
.gas_price(word!("0x098bca5a00"))
1759+
.gas(word!("0x0249f0"))
1760+
.value(word!("0x00"))
1761+
// Set tx type to pre-eip155.
1762+
.transaction_type(0)
1763+
.input(hex::decode("606060405260008054600160a060020a0319163317905560f2806100236000396000f3606060405260e060020a6000350463f5537ede8114601c575b6002565b3460025760f06004356024356044356000805433600160a060020a039081169116141560ea5783905080600160a060020a031663a9059cbb84846000604051602001526040518360e060020a0281526004018083600160a060020a0316815260200182815260200192505050602060405180830381600087803b1560025760325a03f1156002575050604080518481529051600160a060020a0386811693508716917fd0ed88a3f042c6bbb1e3ea406079b5f2b4b198afccaa535d837f4c63abbc4de6919081900360200190a35b50505050565b00")
1764+
.expect("hex data can be decoded").into())
1765+
.sig_data(sig_data1);
1766+
1767+
// pre-eip155 tx2 refers to https://github.com/scroll-tech/go-ethereum/blob/develop/cmd/evm/testdata/3/txs.json.
1768+
let mut tx2 = MockTransaction::default();
1769+
// tx with signature::v =0x1b (27).
1770+
let sig_data2 = (
1771+
0x1b_u64,
1772+
word!("0x88544c93a564b4c28d2ffac2074a0c55fdd4658fe0d215596ed2e32e3ef7f56b"),
1773+
word!("0x7fb4075d54190f825d7c47bb820284757b34fd6293904a93cddb1d3aa961ac28"),
1774+
);
1775+
1776+
tx2.from(address!("0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b"))
1777+
.to(address!("0x095e7baea6a6c7c4c2dfeb977efac326af552d87"))
1778+
.nonce(word!("0x0"))
1779+
.gas_price(word!("0x1"))
1780+
.gas(word!("0x5f5e100"))
1781+
.value(word!("0x186a0"))
1782+
// Set tx type to pre-eip155.
1783+
.transaction_type(0)
1784+
.sig_data(sig_data2);
1785+
1786+
for tx in [tx1, tx2] {
1787+
let ctx = build_legacy_ctx(gwei(8_000_000), &tx).unwrap();
1788+
CircuitTestBuilder::new_from_test_ctx(ctx)
1789+
.params(CircuitsParams {
1790+
max_calldata: 300,
1791+
..Default::default()
1792+
})
1793+
.run()
1794+
}
1795+
}
1796+
1797+
// build pre-eip155 tx
1798+
fn build_legacy_ctx(
1799+
sender_balance: Word,
1800+
tx: &MockTransaction,
1801+
) -> Result<TestContext<1, 1>, Error> {
1802+
TestContext::new(
1803+
None,
1804+
|accs| {
1805+
accs[0]
1806+
.address(tx.from.address())
1807+
.balance(sender_balance)
1808+
.nonce(tx.nonce);
1809+
},
1810+
|mut txs, _accs| {
1811+
txs[0].clone_from(tx);
1812+
},
1813+
|block, _tx| block.number(0xcafeu64),
1814+
)
1815+
}
17401816
}

0 commit comments

Comments
 (0)