Skip to main content

In short: permission for a dapp to access and move a specific type of token from your wallet. 

These prompts will often appear in GPEX Wallet if you’re a frequent user of decentralized exchanges (DEXs) and DeFi in general. Most platforms rely on you depositing or transferring your tokens to them for one reason or another, and to do so, you’ll usually use their dapp itself. However, clicking buttons such as ‘Transfer’, ‘Deposit’, or ‘Move’ won’t do anything unless their dapp has your permission–as the wallet owner–to do so.

This is why token approvals are necessary: they enable the dapp to access your tokens on your behalf. 

Notice how:

The dapp’s name and web URL are displayed at the top. This helps you make sure that the dapp you expect to be interacting with is, in fact, the one requesting the approval. 

You can see the address of the smart contract requesting access. If you’re interacting with a dapp/contract you’re not 100% sure about, you could take this address and look it up on a block explorer such as Etherscan to look for any strange activity, or to see if it is flagged as a potential scam.

You can edit the permission (!). In this context, ‘permission’ refers to how much of that token (in this case, MATIC) the dapp will be able to access. Note that this is not limited by how much of the token you actually have in your account; it can and often does drastically exceed this. For more on editing token approvals, see our article on setting a custom spend limit.

You have to pay gas fees. The only way for the approval to be secure is for everyone to be 100% sure it came from you, the wallet owner. Thankfully, we just so happen to be using a decentralized, immutable ledger (i.e. blockchain) that can record your permission as historical fact. For a transaction of any kind to be processed on-chain, you need to pay the costs of operating the network: gas. 

What they mean

If you grant permission for a dapp to access 1,000 USDT, it can do so whenever you ask it to, without needing you to sign a similar token approval transaction again. This applies until the dapp has had access to 1,000 tokens, at which point you’ll need to sign another transaction. 

But what’s going on behind the scenes? Well, when you approve access to a token, in many cases you’re consenting to the dapp calling the transferFrom function, one of the functions defined in the ERC-20 standard. It enables them to transfer a given amount of the token from your wallet into theirs. The amount is determined by a corresponding approve function, for which–you guessed it–you provide inputs for when you sign your token approval.

You can see this process in action when you’re presented with the approval confirmation in GPEX Wallet. If you scroll down to ‘View full transaction details’ and click it, you can see the ‘Approve’ function listed:

The ‘Granted to’ field gives you another opportunity to copy the contract address that’s asking for approval and verify its legitimacy on a block explorer. 

EIP-3009: the permit function and minimizing gas fees

Not every token you come across works in the way we’ve described above, which applies to ERC-20 tokens. This mechanism of approve + transferFrom is not relevant for tokens that have implemented the EIP-3009 model, with the stablecoin USDC the most prominent example.

With EIP-3009, rather than an approved transaction, you sign a permit transaction. These bundle up the approval and transfer into one transaction, meaning that you effectively pay zero gas for the approval, and just pay the gas for transferring the tokens.

Revoking token approvals

It never hurts to be in control of your assets, and to be aware of which dapps have access to them. There are a few ways to revoke existing token approvals: see our article for more detail. 

Unlimited token approvals: how to stay safe

Often, token approval requests will ask for access to a number of tokens so astronomically high that it’s essentially unlimited — just see the screenshot above, which shows Uniswap requesting access to 1.1559 tokens. Many legitimate dapps do this to minimize the need–and associated transaction costs–for you to re-approve access to the token every time you want to use it on a dapp. Think of DEXs, for example: if you’re conducting a lot of token swaps, you don’t want the additional clicks and gas fees every single time. 

However, requesting essentially unlimited amounts of tokens is also how many malicious, bad actor sites steal from unsuspecting web3 users. This can be particularly demoralizing as a user if you’ve adhered to all our recommended security tips, including keeping your Secret Recovery Phrase offline-only, and never sharing it: despite all your efforts, you’ve been exploited anyway. 

To make sure you’re not granting bad actors access to all of your tokens, we recommend you follow these key principles (which we’ve borrowed from our blog post):

Always check what a dapp is actually requesting before clicking ‘approve’. In GPEX Wallet, you can also adjust the amount that the dapp has access to. Even if you only provide access to 10% of your tokens, and the dapp turns out to be a scam, that’s still a considerably better outcome than if you’d granted unlimited access.

DYOR. The best time to get in the habit of performing due diligence on any dapp before interacting with it was six months ago; the second best time is today. Look out for misspellings, low-quality images/logos, and other giveaways. 

Remember that if something seems too good to be true, it probably is. If you’re being offered 498,563% APY, you’re probably on thin ice. 

setApprovalForAll: Making it easier to know what you’re approving in GPEX Wallet

If you’re not familiar with Ethereum smart contract code, setApprovalForAll may look mildly bewildering, but it’s worth knowing about if you interact with dapps. 

This is a function in the ERC-721 and ERC-1155 standards (which relate specifically to NFTs) that enables you to grant or revoke other addresses the ability to manage all of your NFTs associated with a specific smart contract. 

One of the most common applications for this function is NFT marketplaces. When you sell an NFT on a platform such as OpenSea, you need to allow the dapp to access and transfer that NFT to the buyer when it sells. Such platforms often request access to all the NFTs of that type (i.e. originating from the same smart contract). For you, the user, this is generally inconsequential — we trust large platforms such as OpenSea not to overstep the boundary and remove NFTs that they shouldn’t. 

And, like we said, generally it ends there. However—like many areas of web3—this is a potential opening for scammers; either by exploiting an existing dapp to which many wallets have already granted access to all tokens of a certain type, or by luring you into granting approval to a malicious dapp. 

Given that this function allows access to all tokens associated with the contract, two things should cross your mind when you’re presented with it:

– Does the dapp I’m interacting with actually need access to all of my tokens? 

– Is this a legitimate, non-malicious site that isn’t trying to scam me? 

We can’t protect you from the risks inherent in using web3: as the owner of a self-custodial wallet, that responsibility lies with you. However, with changes such as this, we’re working to equip you with the information you need to stay vigilant and aware of exactly what you’re doing.