- Create a
.envfile with your configuration. You can copy.env.exampleas a starting point. - Run a local blockchain using
yarn anvil - Deploy contracts using
yarn deploy - Enable allowlist sale with
yarn init-sale - Start auction with
yarn start-auction - You can use
castto make custom contract calls from your CLI.
$ forge install --no-commit$ forge build$ forge test$ anvil$ forge script script/Deploy.s.sol:DeployScript --rpc-url <your_rpc_url> --broadcast --verify$ cast <subcommand>$ forge --help
$ anvil --help
$ cast --help