A testnet contract to explore development on Base's L2 chain. This project contains a simple NFT contract
- Network setup: https://docs.base.org/network-information
- If you haven't already, install nodejs and yarn.
- Run
yarn install
to install dependencies. - Create a
.env
file following the example.env.example
in the root directory. - Run
yarn compile
to compile the contract. - Run
yarn deploy
oryarn deployLedger
(requires frame wallet) to deploy the contract on the Base Goerli Testnet. - Once you deploy, run
npx hardhat verify --network base-goerli <deployed address>
to verify your contract.