Deploying Your Custom EVM Protocol
This guide provides step-by-step instructions on how to deploy your custom EVM protocol. By following these steps, you can successfully deploy your custom EVM protocol across multiple chains. If you encounter issues, refer to the Troubleshooting section of this guide and the How to Debug Sent Messages guide or reach out to us through our contact form.
Prerequisites
Before deployment, ensure you are familiar with payable functions in Solidity and have initiated a Hardhat project.
Package Installation
To streamline development, start by installing the Entangle Labs UIP Contracts NPM package. It includes ready-to-use code and interfaces for deployment.
Deployment Steps
Endpoint Contract Address
Obtain the endpoint contract address for the chain where you plan to deploy your protocol. You can find endpoint addresses for each connected chain in the Entangle Labs UIP Contracts NPM package.
For testnet, they are located in the following folder:
For mainnet, they are located in the following folder:
Payable Function to Send Proposals
Read this section to learn more about the propose
function, its parameters and the customizable message transmission options.
Develop a payable function that interacts with the endpoint. For example, sending a message to the endpoint requires calling the propose
function using the IEndpoint
interface:
Receive and Execute Messages
This step will only apply if your contract is designed to receive messages too.
The receiving contract must implement the MessageReceiver
interface, which you can find in @entagle-labs/uip-contracts
npm package — installed in the Package Installation step — specifically the execute
function:
The execute
function processes the received payload. Note that the Endpoint contract should have access control to this function. Make sure that your contract imports MessageReceiver
and inherits from it, for example:
Below, we provide the MessageReceiver
code for convenience. Please refer to the package for the most up-to-date version.
Troubleshooting & Notes
This section provides information, tips, and solutions for common issues you may encounter while deploying the protocol.
Last updated
Was this helpful?