ERC721A contract for GEN art by 0x50b. Contract based off NFT project Giga City, and at @X.
First, install the dependencies. In our case there is only a single dependency: Foundry. The rest is all included in the repository.
To get the contract building.
$ forge build
First command tests the contract, the second outputs the logs, and the third includes test coverage report generation.
$ forge test
$ forge test -vv
$ forge test -vv && forge coverage --report lcov
$ forge snapshot
$ forge script script/Counter.s.sol:CounterScript --rpc-url <your_rpc_url> --private-key <your_private_key>