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
### Installing Python 3.10 on macOS | |
1. **Install Homebrew** (if not already installed): | |
- Open a terminal and install Homebrew by running: | |
```bash | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
``` | |
- Follow the on-screen instructions to complete the installation. | |
2. **Install pyenv** using Homebrew: |
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 | |
// ______ _____ ______ ______ _____ _____ _____ ______ | |
// | ____| __ \| ____| ____|/ ____|/ ____| /\ | __ \| ____| | |
// | |__ | |__) | |__ | |__ | (___ | | / \ | |__) | |__ | |
// | __| | _ /| __| | __| \___ \| | / /\ \ | ___/| __| | |
// | | | | \ \| |____| |____ ____) | |____ / ____ \| | | |____ | |
// |_| |_| \_\______|______|_____/ \_____/_/ __\_\_| |______| | |
// / ____/ __ \ \ / / _ \ / __ \ \ / / ____| | |
// | | | | | \ \ /\ / /| |_) | | | \ \_/ / (___ | |
// | | | | | |\ \/ \/ / | _ <| | | |\ / \___ \ |
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 | |
// Creator: Shawbot @ The Nexus | |
// Modified ERC721A contract by Chiru Labs | |
pragma solidity ^0.8.0; | |
import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; | |
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; | |
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; | |
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; |