A testnet contract to explore development in Scroll's rollup network. This project contains a simple NFT contract
- Network setup: https://guide.scroll.io/user-guide/setup
- 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 Scroll Alpha Testnet. - Once you deploy, run
npx hardhat verify --network scrollAlpha <deployed address>
to verify your contract (blockscout api key required).