Gasless/Meta Transactions
What are Gasless/Meta transactions?
Gasless or meta transactions are a way to handle transaction costs more simply for users who are not familiar with the technical details of the cryptocurrency world. In these transactions, someone else covers the transaction fees, making it more convenient for users. This helps create a smoother experience, especially for those who are new to the crypto world.
Gasless or Meta transactions allow a wallet to do contract executions on behalf of another wallet and (most importantly) thus pay that transaction's gas fee.
So for example if wallet-A owns an NFT, the owner of wallet-A could allow wallet-B to transfer that NFT to wherever necessary and let wallet-B pay for the gas fee.
🚧The gasless/meta transactions are only supported for the following chains:
Polygon (MATIC)
Avalanche
Binance Smart Chain
Arbitrum
Terminologies Explained
User Wallet: The user wallet is the wallet associated with the end-user or the person who holds the NFT.
Payer Wallet: The wallet that pays for the transaction fees associated with the execution of a smart contract or a transaction on the blockchain.
from address
: The public wallet address of the user wallet.to address
: The public wallet address where the NFT will be transferred to.tokenId
: The ID of the NFT that is to be transferred.userAddress
: The public wallet address of the user wallet.
Prerequisites
Meta transactions can only be used on contracts and thus cannot be used with native tokens (e.g. Ether, Matic, …)
The (token) contract needs an
executeMetaTransaction
(write) and agetNonce
(read) function
Basic flow
An EIP712 JSON document is generated specifying the contract, method, and parameters that are allowed to be executed on the user wallet’s behalf
The user wallet signs this JSON document using our Widget or Wallet-API and supplies the signature to the owner of the payer wallet (gas fee payer)
Using the payer wallet, the
executeMetaTransaction
function on the contract needs to be called supplying the signature of the EIP712 documentThe method specified in step 1 will be executed using the parameters also supplied in step 1 (The payer wallet pays for the GAS fees of the transaction)
An example of how this could look like for an NFT transfer:
📘
The specifics
1. Building the EIP712 JSON document
Below you can find an example of such an EIP712 document, calling safeTransferFrom
on the contract 0x0096100f27d5ed9a3455b54af3934df07b58b506
JSON
1.1 types
types
is about defining the structure and data types of the document. This part you should take as is.
1.2 domain
domain
is about describing the contract you want to interact with. Here are some customizations that need to be done:
name
The name of the (NFT) contract you want to interact with
version
This should always be 1
verifyingContract
The contract address you want to interact with e.g. the NFT contract address
salt
1.3 primaryType
primaryType
needs to be MetaTransaction
1.4 message
message
is about defining which contract call to execute and what parameters should be used.
nonce
This is a contract + wallet specific sequence number that needs to be fetched from the contract. This can be done by calling the getNonce(address user)
function and supplying it with the wallet address that needs to sign the message (_user wallet_)
from
The address of the signer (_user wallet_)
functionSignature
The encoded function + parameters that need to be executed. This depends on which contract call you want to do. Below you will find a breakdown on how to build this signature for calling safeTransferFrom(address,address,uint256,uint256,bytes)
2. Building the functionSignature
functionSignature
The functionSignature
defines what the signer allows to be executed by a third party. To explain how it is built we’ll work with an example:
JSON
This is the functionSignature
for safeTransferFrom(address,address,uint256,uint256,bytes)
+ input data and is build as follows:
Method ID
0xf242432a
= ABI encoded signature for the function safeTransferFrom(address,address,uint256,uint256,bytes)
input data for each of the inputs of the function you want to call
These always need to be 64 chars long and to achieve this, they are pre-padded with 0
until 64 chars
000000000000000000000000eb947ed047020f3c2982d35ac2a8ebe8a7330282
: the “from address” (input 1) of the transfer (0x stripped). This is the user wallet, so wallet A0000000000000000000000008fe26c6ff544bee01f41e6f87e6d0ead0ad27405
: the “to address” (input 2) of the transfer (0x stripped). Where the nft needs to go to, so wallet X0000000000000000000000000000000000000000000000000000000000000065
: the token id (input 3) that needs to be transferred as a hex value (101 dec = 65 hex)0000000000000000000000000000000000000000000000000000000000000001
: the amount of tokens (input 4) that need to be transferred. Also as a hex value, but that remains 1 in this case00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000
: empty calldata bytes (input 5)
Input data breakdown
In the below table, a breakdown is done of the input data section of the functionSignature
, specifically for the safeTransferFrom(address,address,uint256,uint256,bytes)
Suppose we want to perform the function with the following parameters.
Send an NFT
from
0xeb947ed047020f3c2982d35ac2a8ebe8a7330282
to
0x8fe26c6ff544bee01f41e6f87e6d0ead0ad27405
tokenId
101
amount
1
This translates to the following input data breakdown:
1
from address
from = 0xeb947ed047020f3c2982d35ac2a8ebe8a7330282
0x
stripped, zero left-padded until 64 chars
000000000000000000000000eb947ed047020f3c2982d35ac2a8ebe8a7330282
2
to address
to = 0x8fe26c6ff544bee01f41e6f87e6d0ead0ad27405
0x
stripped, zero left-padded until 64 chars
0000000000000000000000008fe26c6ff544bee01f41e6f87e6d0ead0ad27405
3
token id
that needs to be transferred
tokenId = 101
HEXdecimal encoded, zero lef-padded until 64 chars
0000000000000000000000000000000000000000000000000000000000000065
4
amount
of tokens to be transferred
amount = 1
HEXdecimal encoded, zero lef-padded until 64 chars
0000000000000000000000000000000000000000000000000000000000000001
5
calldata bytes
in this case a fixed stream (128 chars, notice the a
in the middle)
00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000
Putting all of the above together we get the followingfunctionSignature
(methodID and input data):
📘
3. Signing the EIP712 JSON document
🚧
This has to be done by the user wallet!
Signing is done off chain, so no gas fee has to be paid.
4. Executing the transaction
🚧This has to be done by the payer wallet (who will be paying for the gas fee)!
JSON
The executeMetaTransaction
method looks like this:
Where:
userAddress
= the address from which the transaction must appear to be originating. I.e. the address of the wallet that signed the EIP712 document (user wallet)functionSignature
= thefunctionSignature
that was also included in the EIP712 documentsigR
= ther
value of the signature from step 2sigS
= thes
value of the signature from step 2sigV
= thev
value of the signature from step 2
📘Note that the
executeMetaTransaction
function needs to be called on the specific smart contract, so theto
in the transaction-execution should reflect the address of the relevant smart contract.
In our example we have to perform the following call:
HTTP
Signing-Method
Header
id:value
id
: This is the ID of the signing method
value
: This is the value of the signing method
756ae7a7-3713-43ee-9936-0dff50306488:123456
JSON
Last updated