@@ -673,7 +673,7 @@ function lazyMint(uint256 _amount, string _baseURIForTokens, bytes _encryptedBas
673673### mintWithSignature
674674
675675``` solidity
676- function mintWithSignature(ISignatureMintERC721.MintRequest _req, bytes _signature) external payable
676+ function mintWithSignature(ISignatureMintERC721.MintRequest _req, bytes _signature) external payable returns (address signer)
677677```
678678
679679
@@ -687,6 +687,12 @@ function mintWithSignature(ISignatureMintERC721.MintRequest _req, bytes _signatu
687687| _ req | ISignatureMintERC721.MintRequest | undefined
688688| _ signature | bytes | undefined
689689
690+ #### Returns
691+
692+ | Name | Type | Description |
693+ | ---| ---| ---|
694+ | signer | address | undefined
695+
690696### multicall
691697
692698``` solidity
@@ -1486,10 +1492,10 @@ event TokensLazyMinted(uint256 startTokenId, uint256 endTokenId, string baseURI,
14861492| baseURI | string | undefined |
14871493| encryptedBaseURI | bytes | undefined |
14881494
1489- ### TokensMinted
1495+ ### TokensMintedWithSignature
14901496
14911497``` solidity
1492- event TokensMinted (address indexed minter , address receiver, uint256 indexed startTokenId , uint256 amountMinted, uint256 pricePerToken, address indexed currency )
1498+ event TokensMintedWithSignature (address indexed signer , address indexed mintedTo , uint256 indexed tokenIdMinted, ISignatureMintERC721.MintRequest mintRequest )
14931499```
14941500
14951501
@@ -1500,12 +1506,10 @@ event TokensMinted(address indexed minter, address receiver, uint256 indexed sta
15001506
15011507| Name | Type | Description |
15021508| ---| ---| ---|
1503- | minter ` indexed ` | address | undefined |
1504- | receiver | address | undefined |
1505- | startTokenId ` indexed ` | uint256 | undefined |
1506- | amountMinted | uint256 | undefined |
1507- | pricePerToken | uint256 | undefined |
1508- | currency ` indexed ` | address | undefined |
1509+ | signer ` indexed ` | address | undefined |
1510+ | mintedTo ` indexed ` | address | undefined |
1511+ | tokenIdMinted ` indexed ` | uint256 | undefined |
1512+ | mintRequest | ISignatureMintERC721.MintRequest | undefined |
15091513
15101514### Transfer
15111515
0 commit comments