one-of-ones
v2.0.3
Published
Solidity smart contract to mint 1/1s NFTs (one of ones) implementing ERC721A.
Downloads
26
Maintainers
Readme
About this project
This Solidity smart contract is made to mint your own NFTs using the gas efficient ERC721A implementation.
Installation
npm install --save-dev one-of-ones
Usage
Once installed, you can use the contract by importing it as follows:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "one-of-ones/contracts/OneOfOnes.sol";
contract Metapond is OneOfOnes {
constructor() ERC721A("Metapond", "M") {}
}
Roadmap
- [ ] Create dapp to enable artists to deploy their own contracts
- [ ] Add more information (how to use, etherscan screenshots)
- [ ] Add contract factory
- [x] Add metadata freeze functionality
- [x] Increase test coverage
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Running tests locally
npm install
npm run test
License
Distributed under the MIT License. See LICENSE.txt
for more information.
Contact
- notu (owner) - @notuart
Project Link: https://github.com/notuart/one-of-ones