Skip to content

Instantly share code, notes, and snippets.

@fassko
Created May 14, 2023 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fassko/d362782ff0361e907d891302986ad615 to your computer and use it in GitHub Desktop.
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=
// 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