howellsy / dogie-nft

An IPFS hosted ERC721 NFT.

Home Page:https://sepolia.etherscan.io/address/0x480d37511041d907e2c1bf13e0f6d0e3f791bfd1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🐶 Dogie NFT - an IPFS hosted NFT

An IPFS hosted ERC721 NFT leveraging OpenZeppelin's ERC721 contract.

You can see this smart contract deployed on Sepolia and an example of a minted Dogie NFT on OpenSea.

⚒️ Built with Foundry

This project is built with Foundry a portable and modular toolkit for Ethereum application development, which is required to build and deploy the project.

🏗️ Getting started

Create a .env file with the following entries:

SEPOLIA_RPC_URL=<sepolia_rpc_url>
PRIVATE_KEY=<private_key>
ETHERSCAN_API_KEY=<etherscan_api_key>

Install project dependencies

make install

Deploy the smart contract on Anvil

make anvil
make deploy

Deploy the smart contract on Sepolia

make deploy ARGS="--network sepolia"

🧪 Running tests

To run against a local Anvil Ethereum node:

forge test

To run against a forked environment (e.g. a forked Sepolia testnet):

forge test --fork-url <sepolia_rpc_url>

About

An IPFS hosted ERC721 NFT.

https://sepolia.etherscan.io/address/0x480d37511041d907e2c1bf13e0f6d0e3f791bfd1


Languages

Language:Solidity 76.4%Language:Makefile 23.6%