Receiver Contract
Adapt the receiver contract to also send messages back
The receiver contract now also has two tasks:
- Receive a message from the sender: Same as in the last example
- Send a message back to the sender: Now our receiver contract needs to be able to send a message back to the sender.
Therefore, we need to change the receiver contract to be able to send a message back. We will need to instantiate a TeleporterMessenger
and call the the sendCrossChainMessage()
function.