-
Notifications
You must be signed in to change notification settings - Fork 12.2k
Open
Description
Related PR: #3850
Current nonces()
are incremental sequences per owner (signer) and they interfere for Votes
and ERC20Permit
:
contract Nonces {
function nonces(address owner) public view virtual returns (uint256);
}
contract ERC20Permit is Nonces {
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}
contract Votes is Nonces {
function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external;
}
Metadata
Metadata
Assignees
Labels
No labels