| Sale Stage | NFTs | Price/NFT | Subtotal |
|---|---|---|---|
| Whitelist | 2,000 | $100 | $200,000 |
| Presale | 3,000 | $250 | $750,000 |
| Public Sale | 5,000 | $500 | $2,500,000 |
This file contains hidden or 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
| import React, { useState } from 'react'; | |
| import { FunctionTemplate, mintFunction, pauseFunction, unpauseFunction } from './functions'; | |
| const ContractBuilder: React.FC = () => { | |
| const [selectedFunction, setSelectedFunction] = useState<FunctionTemplate | null>(null); | |
| const [functionParams, setFunctionParams] = useState<Record<string, any>>({}); | |
| const functionTemplates = [mintFunction, pauseFunction, unpauseFunction]; | |
| const handleFunctionSelection = (func: FunctionTemplate) => { |
This file contains hidden or 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.9 <0.9.0; | |
| import 'erc721a/contracts/ERC721A.sol'; | |
| import '@openzeppelin/contracts/access/Ownable.sol'; | |
| import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; | |
| import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; | |
| contract VHNAMETACARS is ERC721A, Ownable, ReentrancyGuard { |
This file contains hidden or 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.0; | |
| import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
| import "@openzeppelin/contracts/utils/Counters.sol"; | |
| import "./IERC4907.sol"; | |
| contract ERC4907 is ERC721, IERC4907 { | |
| struct UserInfo { |
This file contains hidden or 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.20; | |
| import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
| import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; | |
| import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; | |
| import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; | |
| contract AMEYA is ERC721, ERC721Enumerable, ERC721Pausable, Ownable, ERC721Burnable { |
This file contains hidden or 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
| const Razorpay = require("razorpay"); | |
| export default async function handler(req, res) { | |
| // Allow CORS | |
| res.setHeader("Access-Control-Allow-Origin", "https://supaprompts.dcms.site"); | |
| res.setHeader("Access-Control-Allow-Methods", "GET, OPTIONS"); | |
| res.setHeader("Access-Control-Allow-Headers", "Content-Type"); | |
| // Handle preflight requests (OPTIONS) |
OlderNewer