You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
signERC20Approval is used to generate the signature payload for methods which support permit. A lot of tokens have permit features disabled because they do not implement the EIP-2612 interface.
After reviewing all tokens, there are 0 which are currently disabled but could be enabled with a small change to the signature request.
OP - Optimism
AAVE - Optimism
DAI - Optimism
DAI - Arbitrum
EURS - Arbitrum
FRAX - Avalanche
USDC - Avalanche
USDC - Polygon
USDC - Mainnet
Despite the EIP-2612 specs saying that the nonce value should be current, all of these token check that the nonce + 1, so nonce should be incremented in signERC20Approval for these tokens as well.
The text was updated successfully, but these errors were encountered:
signERC20Approval
is used to generate the signature payload for methods which support permit. A lot of tokens have permit features disabled because they do not implement the EIP-2612 interface.After reviewing all tokens, there are 0 which are currently disabled but could be enabled with a small change to the signature request.
Despite the EIP-2612 specs saying that the nonce value should be current, all of these token check that the nonce + 1, so nonce should be incremented in
signERC20Approval
for these tokens as well.The text was updated successfully, but these errors were encountered: