Overview
This functionality is in closed beta - please reach out to us if you are interested in integrating!Traditionally, sending blockchain transactions onchain has been painful:
- You need to fund wallets with native gas tokens, creating onboarding friction
- Network congestion and gas spikes can cause transactions to stall or get dropped altogether
- Base - eip155:8453
- Polygon - eip155:137
- Ethereum - eip155:1 (Coming soon)
Interested in another chain? Reach out to us!
Concepts
Gas sponsorship (aka gas abstraction, gasless transactions, fee abstraction)
A single endpoint lets you toggle between standard EIP-1559 transactions and sponsored transactions. EIP-1559 is the modern Ethereum fee model where transactions specify a base fee (determined by network congestion) and a priority fee (a tip to validators for faster inclusion). With sponsorship enabled, your users never need to hold native tokens to pay these fees—Turnkey covers them. Setsponsor: true to enable sponsorship.
Construction and Broadcast
A successful EVM transaction requires several components:- Transaction construction: assembling the payload (recipient, value, calldata)
- Nonce, gas and tip fee: setting the correct nonce to order transactions, estimating gas usage and tip fees to ensure inclusion even during network congestion
- Signature: cryptographically signing the transaction with the sender’s private key
- Broadcast: submitting the signed transaction to the network and monitoring for inclusion
Transaction status and enriched transaction errors
After you send a transaction, Turnkey monitors its status until it fails or gets included in a block. For transactions that experience reversion errors, Turnkey runs a transaction simulation to produce structured execution traces and decode common revert reasons. The result: actionable error messages that tell you exactly what went wrong, so you can debug and fix issues quickly instead of parsing opaque hex data.Spend limits
Turnkey provides tools to manage your gas sponsorship budget. You configure USD gas limits at two levels: across all orgs and per sub-org. This gives you control over both total spend and per-user spend. You can set limit values and time windows through the dashboard. You can query current gas usage and limits through our endpoints.Policy engine
You can write policies against both sponsored and non-sponsored transactions using the normaleth.tx namespace in Turnkey’s policy DSL. This means you can seamlessly switch between sponsored and non-sponsored transactions and still use the same policies.
Note: Turnkey sets all gas-related fields to 0 for sponsored transactions.
Billing
Turnkey passes gas costs through to you and includes them as a line item at the end of the month. You pay based on the USD value of gas at time of broadcast; Turnkey internalizes the inventory risk of gas token price changes. Our battle-tested gas estimation aims to be cost efficient while ensuring quick transaction inclusion.Advanced
Gas sponsorship smart contracts
We could not find a satisfactory setup for gas sponsorship contracts that were both fast and safe, so we made our own. The contracts are open source and you can check them out on github. Based on our benchmarks, these are the most efficient gas sponsorship contracts on the market. They achieve this through optimized logic, calldata encoding, and using assembly extensively, which reduces gas overhead per sponsored transaction. The result: lower costs for you and faster execution for your users.Security
Some gas sponsorship setups by other providers are subject to replay attacks. If a malicious actor compromises the provider infrastructure, they can replay the gas sponsorship request multiple times with different nonces to create multiple transactions from a single request. Concretely, this means if Bob signs a request to send Alice 1 ETH, a malicious actor could replay that request many times, draining all of Bob’s ETH. At Turnkey, we never cut corners on security: we perform transaction construction in enclaves, and as long as the request includes the relevant nonce, only one transaction can be created from it. Since the user’s authenticator signs requests and the enclave verifies signatures, a malicious actor cannot modify or replay the request. This is inline with Turnkey’s core system design principal: everything can be compromised outside of the enclaves and funds will still be safe. By default, our SDKs include a special gas station nonce for sponsored transaction requests.RPCs
Turnkey’s send transaction and transaction status endpoints eliminate the need for third-party RPC providers. You save costs and reduce latency because we holistically incorporate internal data and minimize calls.SDK Overview
The SDK primarily abstracts three endpoints:You can sign and broadcast transactions in two primary ways:eth_send_transaction,get_send_transaction_status, andget_gas_usage.
-
Using the React handler (
handleSendTransaction) from@turnkey/react-wallet-kitThis gives you:- modals
- spinner + chain logo
- success screen
- explorer link
- built-in polling
-
Using low-level functions in
@turnkey/coreYou manually call:ethSendTransaction→ submitpollTransactionStatus→ wait for inclusion
@turnkey/core flow with full code examples. For using the React handler, see Sending Sponsored Transactions (React).
Using @turnkey/core directly
For custom frameworks, Node.js servers, or full manual control.
You will call:
ethSendTransaction(params)
→ returns { sendTransactionStatusId }
pollTransactionStatus(params)
→ returns { txHash, status }