Relays an EVM transaction through a gasless relayer so the user pays no gas. Requires EVM gas sponsorship enabled for the environment. Returns a request ID for tracking the relay status.
curl --request POST \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/evm/sponsorTransaction \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"calls": [
{
"data": "<string>",
"target": "<string>",
"value": "<string>"
}
],
"chainId": 123,
"deadline": "<string>",
"nonce": "<string>",
"signature": "<string>",
"relayer": "<string>",
"walletAddress": "<string>"
}
'{
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Documentation Index
Fetch the complete documentation index at: https://www.dynamic.xyz/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the environment
36^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"95b11417-f18f-457f-8804-68e361f9164f"
Request to sponsor an EVM transaction via gasless relay
Array of calls to execute
Show child attributes
Target chain ID
Unix timestamp deadline for the intent
Nonce for the intent signature
Hex-encoded EIP-712 intent signature
^0x[a-fA-F0-9]*$Relayer contract address (signed as relayer in EIP-712 intent)
^0x[a-fA-F0-9]{40}$User wallet address
^0x[a-fA-F0-9]{40}$Optional EIP-7702 authorization for first-time delegation
Show child attributes
Relay request created
Response containing the relay request ID
Unique request ID for tracking the relayed transaction
Was this page helpful?
curl --request POST \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/evm/sponsorTransaction \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"calls": [
{
"data": "<string>",
"target": "<string>",
"value": "<string>"
}
],
"chainId": 123,
"deadline": "<string>",
"nonce": "<string>",
"signature": "<string>",
"relayer": "<string>",
"walletAddress": "<string>"
}
'{
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}