CenturionDEX
Launch App

What is a signature permit?

Last modified:

A signature permit is an off-chain signed message that grants a smart contract permission to spend a specific token from your wallet — achieving the same result as an approval transaction, but without a separate on-chain transaction and its associated network cost.

How it works

Tokens that implement the EIP-2612 standard (or similar permit extensions) allow users to sign a structured message containing the spender address, the amount, and a deadline. The smart contract then verifies this signature on-chain when the actual transaction — such as a swap — is executed, bundling the permission and the action into a single transaction.

Approval vs. permit

Approval transactionSignature permit
Where it happensOn-chain (approve() call)Off-chain (wallet signature)
Gas costRequires its own transaction feeNo separate fee — included in the main transaction
Token supportAll ERC-20 tokensOnly tokens implementing EIP-2612 or similar
RevocationOn-chain revokeExpires automatically via deadline parameter

Security

A signature is a powerful authorization. When your wallet presents a signing request:

A single malicious signature can authorize the transfer of all tokens covered by the permit. Treat every signing prompt with the same caution you would apply to sending funds.