Last updated
Last updated
If you are using @gelatonetwork/relay-sdk
v3 or contracts from the package @gelatonetwork/relay-context
v2 please follow this to migrate to the new versions.
After reading this page:
You'll know how to use the callWithSyncFeeERC2771
SDK method, using the payment method.
You'll see some code which will help you send a relay request within minutes.
You'll learn how to pay for transactions using the provided values for fee
, feeToken
and feeCollector
.
Please proceed to our page and read it thoroughly before advancing with your implementation. It is crucial to understand all potential security risks and measures to mitigate them.
callWithSyncFeeERC2771
method uses the payment method with support.
When using callWithSyncFeeERC2771
relay method the target contract assumes responsibility for transferring the fee to Gelato's fee collector during transaction execution. For this, the target contract needs to know:
fee
: the transfer amount
feeToken
: the token to be transferred
feeCollector
: the destination address for the fee
Fortunately, Gelato provides some useful tools within the :
By inheriting the contract in your target contract, you have the ability to transfer the fee through one of two straightforward methods: _transferRelayFee()
or _transferRelayFeeCapped(uint256 maxFee)
. In either case, the inherited contract takes care of decoding the fee
, feeToken
, and feeCollector
behind the scenes.
The Gelato Relay backend simplifies the process by automatically calculating the fee for you, using Gelato's Fee Oracle to perform the calculations in the background.
Alternatively, you may choose to inherit the contract. With this approach, Gelato only decodes the feeCollector
. You must provide the fee
and feeToken
on-chain, either by hardcoding them (which is not recommended) or embedding them within the payload to be executed. The suggested way to handle this is to calculate the fee with .
maxFee
for Your Transactionoptions?: relayRequestOptions
is an optional object.
As of today, we support two distinct ways of sending callWithSyncFeeERC2771
requests:
Sequentially: This approach ensures that each request is ordered and validated against the nonce
stored on-chain. You have two options in this method:
Fetch the current nonce
value from the smart contract yourself and include it with your request.
Allow the relay-sdk to fetch the nonce
value for you when handling your relay request.
Concurrently: This method enables you to send multiple transactions simultaneously. Replay protection is achieved using a hash-based salt
mechanism. Again, you have two options:
Provide your own salt
value.
Allow the relay-sdk to generate a unique salt
value for you when processing your relay request.
By default callWithSyncFeeERC2771
requests are using the sequential method.
Concurrent ERC2771 support has been introduced in the relay-sdk version 5.1.0
. Please make sure that your package is up-to-date to start using it.
chainId
: the chain ID of the chain where the target
smart contract is deployed.
target
: the address of the target smart contract.
data
: encoded payload data (usually a function selector plus the required arguments) used to call the required target
address.
user
: the address of the user's EOA.
userDeadline
: optional, the amount of time in seconds that a user is willing for the relay call to be active in the relay backend before it is dismissed.
This way the user knows that if the transaction is not sent within a certain timeframe, it will expire. Without this, an adversary could pick up the transaction in the mempool and send it later. This could transfer money, or change state at a point in time which would be highly undesirable to the user.
isRelayContext
: an optional boolean (default: true
) denoting what data you would prefer appended to the end of the calldata.
isConcurrent
: false (default), optional, represents that the users' requests are validated based on a nonce, which enforces them to be processed sequentially.
userNonce
: optional, this nonce, akin to Ethereum nonces, is stored in a local mapping on the relay contracts. It serves to enforce the nonce ordering of relay calls if the user requires sequential processing. If this parameter is omitted, the relay-sdk will automatically query the current value on-chain.
isConcurrent
: true, indicates that the users' requests are validated based on a unique salt, allowing them to be processed concurrently. Replay protection is still ensured by permitting each salt value to be used only once.
userSalt
: optional, this is a bytes32 hash that is used for replay protection. If the salt is not provided then relay-sdk would generate a unique value based on a random seed and a timestamp.
Setting a maximum fee, or maxFee
, for your transactions is strongly advised. This practice enables you to ensure that transaction costs remain below a specific limit. The method _transferRelayFeeCapped(uint256 maxFee)
in the contract provides a convenient way to set the maxFee
easily.
If you are utilizing the contract, the recommended way to pass the maxFee
is by calculating the fee with , which is accessible in the . The getEstimatedFee()
method is provided to facilitate this calculation.
request
: this is the used to send a request.
taskId
: your unique relay task ID which can be used for .
See .
feeToken
: the address of the token that is to be used for payment. Please visit for the full list of supported payment tokens per network.
If set to true
(default), Gelato Relay will append the feeCollector
address, the feeToken
address, and the uint256 fee
to the calldata. In this case your target contract should inherit from the contract.
If set to false
, Gelato Relay will only append the feeCollector
address to the calldata. In this case your target contract should inherit from the contract.
Transactions with on-chain payments and ERC2771 authentication support