File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,5 +66,8 @@ interface ISignatureMintERC721 {
6666 * @param req The payload / mint request.
6767 * @param signature The signature produced by an account signing the mint request.
6868 */
69- function mintWithSignature (MintRequest calldata req , bytes calldata signature ) external payable returns (address signer );
69+ function mintWithSignature (MintRequest calldata req , bytes calldata signature )
70+ external
71+ payable
72+ returns (address signer );
7073}
Original file line number Diff line number Diff line change @@ -12,10 +12,7 @@ contract SigMint is SignatureMintERC721 {
1212 //////////////////////////////////////////////////////////////*/
1313
1414 /// @dev Claim lazy minted tokens via signature.
15- function mintWithSignature (
16- MintRequest calldata _req ,
17- bytes calldata _signature
18- )
15+ function mintWithSignature (MintRequest calldata _req , bytes calldata _signature )
1916 external
2017 payable
2118 returns (address signer )
You can’t perform that action at this time.
0 commit comments