IERC721MetaTx
Author: Lens Protocol
Extension of ERC-721 including meta-tx signatures related functions.
Functions
nonces
Returns the current signature nonce of the given signer.
function nonces(address signer) external view returns (uint256);
Parameters
Name | Type | Description |
---|---|---|
signer | address | The address for which to query the nonce. |
Returns
Name | Type | Description |
---|---|---|
<none> | uint256 | uint256 The current nonce of the given signer. |
getDomainSeparator
Returns the EIP-712 domain separator for this contract.
function getDomainSeparator() external view returns (bytes32);
Returns
Name | Type | Description |
---|---|---|
<none> | bytes32 | bytes32 The domain separator. |