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
// Copyright 2025 Moonbeam Foundation.
// This file is part of Moonbeam.

// Moonbeam is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Moonbeam is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Moonbeam.  If not, see <http://www.gnu.org/licenses/>.

use crate::{AssetId, Error, Pallet};
use ethereum_types::{BigEndianHash, H160, H256, U256};
use fp_evm::{ExitReason, ExitSucceed};
use frame_support::ensure;
use frame_support::pallet_prelude::Weight;
use pallet_evm::{GasWeightMapping, Runner};
use precompile_utils::prelude::*;
use precompile_utils::solidity::codec::{Address, BoundedString};
use precompile_utils::solidity::Codec;
use precompile_utils_macro::keccak256;
use sp_runtime::traits::ConstU32;
use sp_runtime::{format, DispatchError, SaturatedConversion};
use sp_std::vec::Vec;
use xcm::latest::Error as XcmError;

const ERC20_CALL_MAX_CALLDATA_SIZE: usize = 4 + 32 + 32; // selector + address + uint256
const ERC20_CREATE_MAX_CALLDATA_SIZE: usize = 16 * 1024; // 16Ko

// Hardcoded gas limits (from manual binary search)
const ERC20_CREATE_GAS_LIMIT: u64 = 3_600_000; // highest failure: 3_600_000
pub(crate) const ERC20_BURN_FROM_GAS_LIMIT: u64 = 160_000; // highest failure: 154_000
pub(crate) const ERC20_MINT_INTO_GAS_LIMIT: u64 = 160_000; // highest failure: 154_000
const ERC20_PAUSE_GAS_LIMIT: u64 = 160_000; // highest failure: 150_500
pub(crate) const ERC20_TRANSFER_GAS_LIMIT: u64 = 160_000; // highest failure: 154_000
pub(crate) const ERC20_APPROVE_GAS_LIMIT: u64 = 160_000; // highest failure: 153_000
const ERC20_UNPAUSE_GAS_LIMIT: u64 = 160_000; // highest failure: 149_500

#[derive(Debug)]
pub enum EvmError {
	BurnFromFail(String),
	ContractReturnInvalidValue,
	DispatchError(DispatchError),
	EvmCallFail(String),
	MintIntoFail(String),
	TransferFail(String),
}

impl From<DispatchError> for EvmError {
	fn from(e: DispatchError) -> Self {
		Self::DispatchError(e)
	}
}

impl From<EvmError> for XcmError {
	fn from(error: EvmError) -> XcmError {
		match error {
			EvmError::BurnFromFail(err) => {
				log::debug!("BurnFromFail error: {:?}", err);
				XcmError::FailedToTransactAsset("Erc20 contract call burnFrom fail")
			}
			EvmError::ContractReturnInvalidValue => {
				XcmError::FailedToTransactAsset("Erc20 contract return invalid value")
			}
			EvmError::DispatchError(err) => {
				log::debug!("dispatch error: {:?}", err);
				Self::FailedToTransactAsset("storage layer error")
			}
			EvmError::EvmCallFail(err) => {
				log::debug!("EvmCallFail error: {:?}", err);
				XcmError::FailedToTransactAsset("Fail to call erc20 contract")
			}
			EvmError::MintIntoFail(err) => {
				log::debug!("MintIntoFail error: {:?}", err);
				XcmError::FailedToTransactAsset("Erc20 contract call mintInto fail+")
			}
			EvmError::TransferFail(err) => {
				log::debug!("TransferFail error: {:?}", err);
				XcmError::FailedToTransactAsset("Erc20 contract call transfer fail")
			}
		}
	}
}

#[derive(Codec)]
#[cfg_attr(test, derive(Debug))]
struct ForeignErc20ConstructorArgs {
	owner: Address,
	decimals: u8,
	symbol: BoundedString<ConstU32<64>>,
	token_name: BoundedString<ConstU32<256>>,
}

pub(crate) struct EvmCaller<T: crate::Config>(core::marker::PhantomData<T>);

impl<T: crate::Config> EvmCaller<T> {
	/// Deploy foreign asset erc20 contract
	pub(crate) fn erc20_create(
		asset_id: AssetId,
		decimals: u8,
		symbol: &str,
		token_name: &str,
	) -> Result<H160, Error<T>> {
		// Get init code
		let mut init = Vec::with_capacity(ERC20_CREATE_MAX_CALLDATA_SIZE);
		init.extend_from_slice(include_bytes!("../resources/foreign_erc20_initcode.bin"));

		// Add constructor parameters
		let args = ForeignErc20ConstructorArgs {
			owner: Pallet::<T>::account_id().into(),
			decimals,
			symbol: symbol.into(),
			token_name: token_name.into(),
		};
		let encoded_args = precompile_utils::solidity::codec::Writer::new()
			.write(args)
			.build();
		// Skip size of constructor args (32 bytes)
		init.extend_from_slice(&encoded_args[32..]);

		let contract_adress = Pallet::<T>::contract_address_from_asset_id(asset_id);

		let exec_info = T::EvmRunner::create_force_address(
			Pallet::<T>::account_id(),
			init,
			U256::default(),
			ERC20_CREATE_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			None,
			None,
			&<T as pallet_evm::Config>::config(),
			contract_adress,
		)
		.map_err(|err| {
			log::debug!("erc20_create (error): {:?}", err.error.into());
			Error::<T>::Erc20ContractCreationFail
		})?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			Error::Erc20ContractCreationFail
		);

		Ok(contract_adress)
	}

	pub(crate) fn erc20_mint_into(
		erc20_contract_address: H160,
		beneficiary: H160,
		amount: U256,
	) -> Result<(), EvmError> {
		let mut input = Vec::with_capacity(ERC20_CALL_MAX_CALLDATA_SIZE);
		// Selector
		input.extend_from_slice(&keccak256!("mintInto(address,uint256)")[..4]);
		// append beneficiary address
		input.extend_from_slice(H256::from(beneficiary).as_bytes());
		// append amount to be minted
		input.extend_from_slice(H256::from_uint(&amount).as_bytes());

		let weight_limit: Weight =
			T::GasWeightMapping::gas_to_weight(ERC20_MINT_INTO_GAS_LIMIT, true);

		let exec_info = T::EvmRunner::call(
			Pallet::<T>::account_id(),
			erc20_contract_address,
			input,
			U256::default(),
			ERC20_MINT_INTO_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			Some(weight_limit),
			Some(0),
			&<T as pallet_evm::Config>::config(),
		)
		.map_err(|err| EvmError::MintIntoFail(format!("{:?}", err.error.into())))?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			{
				let err = error_on_execution_failure(&exec_info.exit_reason, &exec_info.value);
				EvmError::MintIntoFail(err)
			}
		);

		Ok(())
	}

	pub(crate) fn erc20_transfer(
		erc20_contract_address: H160,
		from: H160,
		to: H160,
		amount: U256,
	) -> Result<(), EvmError> {
		let mut input = Vec::with_capacity(ERC20_CALL_MAX_CALLDATA_SIZE);
		// Selector
		input.extend_from_slice(&keccak256!("transfer(address,uint256)")[..4]);
		// append receiver address
		input.extend_from_slice(H256::from(to).as_bytes());
		// append amount to be transferred
		input.extend_from_slice(H256::from_uint(&amount).as_bytes());

		let weight_limit: Weight =
			T::GasWeightMapping::gas_to_weight(ERC20_TRANSFER_GAS_LIMIT, true);

		let exec_info = T::EvmRunner::call(
			from,
			erc20_contract_address,
			input,
			U256::default(),
			ERC20_TRANSFER_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			Some(weight_limit),
			Some(0),
			&<T as pallet_evm::Config>::config(),
		)
		.map_err(|err| EvmError::TransferFail(format!("{:?}", err.error.into())))?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			{
				let err = error_on_execution_failure(&exec_info.exit_reason, &exec_info.value);
				EvmError::TransferFail(err)
			}
		);

		// return value is true.
		let mut bytes = [0u8; 32];
		U256::from(1).to_big_endian(&mut bytes);

		// Check return value to make sure not calling on empty contracts.
		ensure!(
			!exec_info.value.is_empty() && exec_info.value == bytes,
			EvmError::ContractReturnInvalidValue
		);

		Ok(())
	}

	pub(crate) fn erc20_approve(
		erc20_contract_address: H160,
		owner: H160,
		spender: H160,
		amount: U256,
	) -> Result<(), EvmError> {
		let mut input = Vec::with_capacity(ERC20_CALL_MAX_CALLDATA_SIZE);
		// Selector
		input.extend_from_slice(&keccak256!("approve(address,uint256)")[..4]);
		// append spender address
		input.extend_from_slice(H256::from(spender).as_bytes());
		// append amount to be approved
		input.extend_from_slice(H256::from_uint(&amount).as_bytes());
		let weight_limit: Weight =
			T::GasWeightMapping::gas_to_weight(ERC20_APPROVE_GAS_LIMIT, true);

		let exec_info = T::EvmRunner::call(
			owner,
			erc20_contract_address,
			input,
			U256::default(),
			ERC20_APPROVE_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			Some(weight_limit),
			Some(0),
			&<T as pallet_evm::Config>::config(),
		)
		.map_err(|err| EvmError::EvmCallFail(format!("{:?}", err.error.into())))?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			{
				let err = error_on_execution_failure(&exec_info.exit_reason, &exec_info.value);
				EvmError::EvmCallFail(err)
			}
		);

		Ok(())
	}

	pub(crate) fn erc20_burn_from(
		erc20_contract_address: H160,
		who: H160,
		amount: U256,
	) -> Result<(), EvmError> {
		let mut input = Vec::with_capacity(ERC20_CALL_MAX_CALLDATA_SIZE);
		// Selector
		input.extend_from_slice(&keccak256!("burnFrom(address,uint256)")[..4]);
		// append who address
		input.extend_from_slice(H256::from(who).as_bytes());
		// append amount to be burn
		input.extend_from_slice(H256::from_uint(&amount).as_bytes());

		let weight_limit: Weight =
			T::GasWeightMapping::gas_to_weight(ERC20_BURN_FROM_GAS_LIMIT, true);

		let exec_info = T::EvmRunner::call(
			Pallet::<T>::account_id(),
			erc20_contract_address,
			input,
			U256::default(),
			ERC20_BURN_FROM_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			Some(weight_limit),
			Some(0),
			&<T as pallet_evm::Config>::config(),
		)
		.map_err(|err| EvmError::EvmCallFail(format!("{:?}", err.error.into())))?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			{
				let err = error_on_execution_failure(&exec_info.exit_reason, &exec_info.value);
				EvmError::BurnFromFail(err)
			}
		);

		Ok(())
	}

	// Call contract selector "pause"
	pub(crate) fn erc20_pause(asset_id: AssetId) -> Result<(), Error<T>> {
		let mut input = Vec::with_capacity(ERC20_CALL_MAX_CALLDATA_SIZE);
		// Selector
		input.extend_from_slice(&keccak256!("pause()")[..4]);

		let weight_limit: Weight = T::GasWeightMapping::gas_to_weight(ERC20_PAUSE_GAS_LIMIT, true);

		let exec_info = T::EvmRunner::call(
			Pallet::<T>::account_id(),
			Pallet::<T>::contract_address_from_asset_id(asset_id),
			input,
			U256::default(),
			ERC20_PAUSE_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			Some(weight_limit),
			Some(0),
			&<T as pallet_evm::Config>::config(),
		)
		.map_err(|err| {
			log::debug!("erc20_pause (error): {:?}", err.error.into());
			Error::<T>::EvmInternalError
		})?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			{
				let err = error_on_execution_failure(&exec_info.exit_reason, &exec_info.value);
				log::debug!("erc20_pause (error): {:?}", err);
				Error::<T>::EvmCallPauseFail
			}
		);

		Ok(())
	}

	// Call contract selector "unpause"
	pub(crate) fn erc20_unpause(asset_id: AssetId) -> Result<(), Error<T>> {
		let mut input = Vec::with_capacity(ERC20_CALL_MAX_CALLDATA_SIZE);
		// Selector
		input.extend_from_slice(&keccak256!("unpause()")[..4]);

		let weight_limit: Weight =
			T::GasWeightMapping::gas_to_weight(ERC20_UNPAUSE_GAS_LIMIT, true);

		let exec_info = T::EvmRunner::call(
			Pallet::<T>::account_id(),
			Pallet::<T>::contract_address_from_asset_id(asset_id),
			input,
			U256::default(),
			ERC20_UNPAUSE_GAS_LIMIT,
			None,
			None,
			None,
			Default::default(),
			false,
			false,
			Some(weight_limit),
			Some(0),
			&<T as pallet_evm::Config>::config(),
		)
		.map_err(|err| {
			log::debug!("erc20_unpause (error): {:?}", err.error.into());
			Error::<T>::EvmInternalError
		})?;

		ensure!(
			matches!(
				exec_info.exit_reason,
				ExitReason::Succeed(ExitSucceed::Returned | ExitSucceed::Stopped)
			),
			{
				let err = error_on_execution_failure(&exec_info.exit_reason, &exec_info.value);
				log::debug!("erc20_unpause (error): {:?}", err);
				Error::<T>::EvmCallUnpauseFail
			}
		);

		Ok(())
	}
}

fn error_on_execution_failure(reason: &ExitReason, data: &[u8]) -> String {
	match reason {
		ExitReason::Succeed(_) => String::new(),
		ExitReason::Error(err) => format!("evm error: {err:?}"),
		ExitReason::Fatal(err) => format!("evm fatal: {err:?}"),
		ExitReason::Revert(_) => extract_revert_message(data),
	}
}

/// The data should contain a UTF-8 encoded revert reason with a minimum size consisting of:
/// error function selector (4 bytes) + offset (32 bytes) + reason string length (32 bytes)
fn extract_revert_message(data: &[u8]) -> String {
	const LEN_START: usize = 36;
	const MESSAGE_START: usize = 68;
	const BASE_MESSAGE: &str = "VM Exception while processing transaction: revert";
	// Return base message if data is too short
	if data.len() <= MESSAGE_START {
		return BASE_MESSAGE.into();
	}
	// Extract message length and calculate end position
	let message_len = U256::from(&data[LEN_START..MESSAGE_START]).saturated_into::<usize>();
	let message_end = MESSAGE_START.saturating_add(message_len);
	// Return base message if data is shorter than expected message end
	if data.len() < message_end {
		return BASE_MESSAGE.into();
	}
	// Extract and decode the message
	let body = &data[MESSAGE_START..message_end];
	match core::str::from_utf8(body) {
		Ok(reason) => format!("{BASE_MESSAGE} {reason}"),
		Err(_) => BASE_MESSAGE.into(),
	}
}