An open API service indexing awesome lists of open source software.

https://github.com/thasup/foundry-nft

Deploy sample NFT on Goerli testnet with foundry
https://github.com/thasup/foundry-nft

foundry goerli nft smart-contracts

Last synced: 2 months ago
JSON representation

Deploy sample NFT on Goerli testnet with foundry

Awesome Lists containing this project

README

        

# Usage

**Install Foundry**
```
curl -L https://foundry.paradigm.xyz | bash
source ~/.bashrc
foundryup
```

**Initializing a new Project**
```
forge init .
```

**Building and Testing**
```
forge build
```

**Install openzeppelin dependency**
```
forge install openzeppelin/openzeppelin-contracts
```

**Run test**
```
forge test -vv
```

**Running a Foundry Script**
```
source .env
forge script script/Deploy.sol:SpacebearScript --broadcast --verify --rpc-url ${GOERLI_RPC_URL}
```