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
- Host: GitHub
- URL: https://github.com/thasup/foundry-nft
- Owner: thasup
- Created: 2022-11-24T17:27:08.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T15:32:56.000Z (over 2 years ago)
- Last Synced: 2025-01-31T14:37:54.499Z (4 months ago)
- Topics: foundry, goerli, nft, smart-contracts
- Language: Solidity
- Homepage: https://goerli.etherscan.io/address/0x73da78273f58420c976b6a8305690c11ef436552
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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}
```