/contracts
: smart contracts./deploy
: deployment and contract interaction scripts./test
: test fileshardhat.config.ts
: configuration file.
- install the zksync era test node from here.
npx hardhat compile
will compile the contracts, typescript bindings are generated automatically.npx hardhat deploy-zksync --script {filename}
will execute the script/deploy/{filename}.ts
. Requires environment variable setup.npm run test-real
: run tests. Requires a running zksync era test node.
In order to prevent users to leak private keys, this project includes the dotenv
package which is used to load environment variables. It's used to load the wallet private key, required to run the deploy script.
To use it, rename .env.example
to .env
and enter your private key.
PRIVATE_KEY=123cde574ccff....