What's Changed
- Support ADT parameters passed to contract constructor #42 by @its-saeed in #43
- Support overriding gasPrice, gasLimit, amount, etc. upon contract deployment. by @its-saeed in #44
- Allow users to connect to existing contracts - closes #46 by @rrw-zilliqa in #49
- Add how to publish the plugin to readme. by @its-saeed in #50
- (feat) closes #51 - write instructions for pnpm by @rrw-zilliqa in #52
- Update node modules. by @its-saeed in #54
- Fix dependabot issues. by @its-saeed in #55
- Remove package-lock.json because we use pnpm by @its-saeed in #56
- Update dependencies, use ESlint instead of tslint. by @its-saeed in #57
- Enable eslint for tests. by @its-saeed in #60
- Add deployment builder to have cleaner code for contract deployment. by @its-saeed in #61
const contract = await this.hre.contractDeployer
.withName("HelloWorld")
.withContractParams("sss")
.withContractCompression() // To enable contract compression.
.deploy();
- Add support for contract compression before deployment.
Full Changelog: v3.4.8...v3.8.0