Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 936 Bytes

File metadata and controls

27 lines (18 loc) · 936 Bytes

Base Learn Exercises

All the smart contracts I coded along with Base Learn are publicly available in here.

Remember to create a new .env file according to .env.example.

If you're not a fan of Alchemy, you can use the official RPC URLs from Base or any other the node providers here.

Just replace the environment variables correctly in .env and index.d.ts.

Deployment

npm run deploy -- --tags <TAG>

For example, I want to deploy the contract named BasicMath, I use the tag declared in 00_deploy_BasicMath.ts (deployment file):

npm run deploy -- --tags BasicMath

Contract verification

npm run verify