Summary

1

Fetch the Price

This optional step is quicker than fetching an executable quote but invaluable when crafting a snappy user experience. In this step we’ll fetch the price to display a quote preview to the user. This can be skipped if the call is on the server without user interaction.

2

Fetch the Quote

In this step we’ll fetch a full quote that expires after 30s. It will be a complete quote with all the details required to execute it.

3

Execute the Quote

Once we have the quote all that’s left to do is execute the quote and display a progress state to the user.

Contract Compatability

Before we begin it’s important to ensure that a contract is compatible with Relay. Please review our contract compatability overview to make any necessary changes.

Fetch the Price

The Price is a lightweight quote, excluding steps and calldata but it includes a preview of what the full quote might contain. Prices are subject to change once you get the quote so you should handle price changes accordingly. Once you determine where the user wants to call the contract from and where the contract has been deployed to, and their preferred payment currency then you can pass everything into the getPrice or the usePrice hook depending on if you’re using the sdk or the ui hooks. Note that for calling a contract across chains you’ll need to provide three key pieces of information in addition to the usual data required to call:

  • tradeType must be EXACT_OUTPUT
  • txs can either be an array of to, data and value or it can be the response from viem’s simulateContract method. You can see an example below of how this is done
  • amount must be the sum of all the txs values

Fetch the Quote

If you followed the previous step, you can pass that same data into the getQuote action or useQuote hook. You’ll still need to meet the requirements for tradeType, amount and txs, refer to the previous step for more details.

In the above example, we fetch the quote to call a Zora contract from Mainnet Ethereum. In the quote object we’ll get data on the fees required to do this call. You can learn more about fees here. You’ll see that we provided an amount that matches the sum of the txs, that the tradeType is EXACT_OUTPUT and that we passed in a valid txs array.

Note - Quotes can go stale after 30 seconds. Clients should regularly fetch fresh quotes so that users are always submitting valid transactions. Learn more about Relay quotes.

Execute the Quote

After getting the quote all that’s left is to execute the quote and render the progress to the user. Follow the code snippets below to execute the quote:

While the quote is being executed if you’re rendering the quote in an interface you may want to display progress to the user. There’s a provided progress callback to get the updated state of execution. Learn more about the progress state here.

Preflight Checklist

☐ Verify that the user has enough balance on the origin chain to cover the full txs amount + fees. Check out our fees doc for more details on calculating the fees.
☐ Have the Relay SDK set up and the Relay hooks package installed if applicable
☐ Ensure the user is on the correct chain (it should match the chainId you get the quote from)
☐ Handle any errors that may come about
☐ Render the progress of the execution to provide a best in class user experience