Created
May 14, 2023 19:03
-
-
Save fassko/d362782ff0361e907d891302986ad615 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.18+commit.87f61d96.js&optimize=false&runs=200&gist=
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.18; | |
import "erc721a/contracts/ERC721A.sol"; | |
contract GasSaverNFT is ERC721A { | |
constructor( | |
string memory name_, | |
string memory symbol_ | |
) ERC721A(name_, symbol_) { | |
} | |
function safeMint(address to, uint256 quantity) public { | |
_safeMint(to, quantity); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment