forked from pooltogether/ERC5164
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EthereumToPolygonExecutor.sol
83 lines (68 loc) · 2.42 KB
/
EthereumToPolygonExecutor.sol
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
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.16;
import { FxBaseChildTunnel } from "@maticnetwork/fx-portal/contracts/tunnel/FxBaseChildTunnel.sol";
import "../libraries/MessageLib.sol";
/**
* @title MessageExecutorPolygon contract
* @notice The MessageExecutorPolygon contract executes messages from the Ethereum chain.
* These messages are sent by the `MessageDispatcherPolygon` contract which lives on the Ethereum chain.
*/
contract MessageExecutorPolygon is FxBaseChildTunnel {
/* ============ Events ============ */
/**
* @notice Emitted when a message has successfully been executed.
* @param fromChainId ID of the chain that dispatched the message
* @param messageId ID uniquely identifying the message that was executed
*/
event MessageIdExecuted(uint256 indexed fromChainId, bytes32 indexed messageId);
/* ============ Variables ============ */
/**
* @notice ID uniquely identifying the messages that were executed.
* messageId => boolean
* @dev Ensure that messages cannot be replayed once they have been executed.
*/
mapping(bytes32 => bool) public executed;
/* ============ Constructor ============ */
/**
* @notice MessageExecutorPolygon constructor.
* @param _fxChild Address of the FxChild contract on the Polygon chain
*/
constructor(address _fxChild) FxBaseChildTunnel(_fxChild) {}
/* ============ Internal Functions ============ */
/// @inheritdoc FxBaseChildTunnel
function _processMessageFromRoot(
uint256, /* _stateId */
address _sender,
bytes memory _data
) internal override validateSender(_sender) {
(
MessageLib.Message[] memory _messages,
bytes32 _messageId,
uint256 _fromChainId,
address _from
) = abi.decode(_data, (MessageLib.Message[], bytes32, uint256, address));
bool _executedMessageId = executed[_messageId];
executed[_messageId] = true;
if (_messages.length == 1) {
MessageLib.Message memory _message = _messages[0];
MessageLib.executeMessage(
_message.to,
_message.data,
_messageId,
_fromChainId,
_from,
_executedMessageId
);
emit MessageIdExecuted(_fromChainId, _messageId);
} else {
MessageLib.executeMessageBatch(
_messages,
_messageId,
_fromChainId,
_from,
_executedMessageId
);
emit MessageIdExecuted(_fromChainId, _messageId);
}
}
}