IERC721MetaTx

Git Source

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

NameTypeDescription
signeraddressThe address for which to query the nonce.

Returns

NameTypeDescription
<none>uint256uint256 The current nonce of the given signer.

getDomainSeparator

Returns the EIP-712 domain separator for this contract.

function getDomainSeparator() external view returns (bytes32);

Returns

NameTypeDescription
<none>bytes32bytes32 The domain separator.