Comment on page
Data Bridge: Pass arbitrary messages between chains
Frequently, you need to send information from one chain to another. To do this, you can create a Data Bridge, a Midpoint that can receive messages from one chain and send them on to a contract on another chain.
To build a Data Bridge you need to construct three parts
- 1.The sending contract, which lives on one chain and sends the message.
- 2.The Midpoint itself, which observes the event and transfers it over to the other contract
- 3.The receiving contract
It’s almost always easiest to create the Midpoint first, because you need its ID to create the contracts, but as the the source and the task need the addresses of the contracts, you won’t be able to set up them up until after the contracts are created.
The job of the sending contract, whatever else it does, is to invoke a function on a special contract, called a Startpoint, provided on every chain as a portal to Midpoints.
The source for the sending contract should look something like this:
pragma solidity>=0.8.0;
interface IMidpoint {
function callMidpoint(uint64 midpointId, bytes calldata _data)
external returns(uint256 requestId);
}
contract SendingContract {
// ... all your code goes here, and at some point invokes sendMessage() below
uint64 constant midpointID = 758;
address constant startpointAddress = 0x711D64597FD64bCE7460F555fA928d02862a6f55;
function sendMessage(string memory subject) public {
bytes memory args = abi.encodePacked(subject, bytes1(0x00));
IMidpoint(startpointAddress).callMidpoint(midpointID, args);
}
}
The actual value for
startpointAddress
depends on the chain you are deploying on. For the list of values, see here: StartpointsNote that you must invoke the Startpoint with a specially packed array of bytes. For more information about how to pack them, see here: Startpoint Called
The receiving contract just have to have a public function that takes the appropriate arguments, something like this:
pragma solidity>=0.8.0;
contract ReceivingContract {
address constant callbackAddress = 0xC0FFEE4a3A2D488B138d090b8112875B90b5e6D9;
function receiveMessage(uint256 midpointId,
string memory subject) public {
// Only permit a verified callback address to call your callback function.
require(tx.origin == callbackAddress, "Invalid callback address");
require(midpointId == 271, "Invalid midpoint ID");
// do whatever you need to with the data
}
}
As with the the startpointAddress in the sending contract, the callbackAddress in the receiving contract depends on the chain that the receiving contract is deployed on. See here for values: Midpoint EOAs
$ npm install -g midpoint-cli
$ midpoint init blank my-data-feed
$ midpoint add-source startpointCalledSource startpoint-called-source
{
"startpointCalledSource": {
"whitelist": [
{
"chainId": "5",
"contractAddress": "0xa89c2f3A20cED98cd39AFd0Ab5B207C46Fb2Cdf3"
}
],
"variables": [
{
"name": "subject",
"datatype": "string"
}
]
}
}
$ midpoint add-task transactToEvmFunctionTestnet post-subject-on-blockchain
{
"transactToEvmFunctionTestnet": {
"chainId": "420",
"contractAddress": "0x83986ff4fbcaa2acf6092930fcebbe25583be452",
"functionName": "heartbeat",
"arguments": [
{
"name": "subject",
"datatype": "string",
"value": "{{subject}}"
}
}
]
}
}
We define our path file.
startpoint-called-source => post-subject-on-blockchain
$ midpoint publish