Skip to content

Commit

Permalink
Bug fixes (#74)
Browse files Browse the repository at this point in the history
* Added the `verificationDelay` parameter. Updated versions

* Added health check for the explorer links

* Added `BigInt.prototype.toJSON` to the `BigInt` type

* Added verificationDelay as an args to the migrate task

* Updated package-lock.json

* Updated package-lock.json

* Fixed CI:test.yml

* Added optionalDependencies

* Updated package-lock.json

* Updated package-lock.json

* Updated package-lock.json

* Updated CI

* Downgrade hardhat

* Updated hardhat version

* Update src/verifier/Verifier.ts

Co-authored-by: Artem Chystiakov <47551140+Arvolear@users.noreply.github.com>

* Updated README.md

* Use networkManager axios wrapper

---------

Co-authored-by: Artem Chystiakov <47551140+Arvolear@users.noreply.github.com>
  • Loading branch information
KyrylR and Arvolear committed Mar 8, 2024
1 parent 90e442e commit 74b8f51
Show file tree
Hide file tree
Showing 11 changed files with 8,066 additions and 2,899 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 2.1.3

* Added the `verificationDelay` parameter, which defines the time in milliseconds that must pass before the verification process starts.
* Added health check for the explorer links before the verification process starts
* Added `BigInt.prototype.toJSON` to the `BigInt` type to fix the issue with the `BigInt` type in the `JSON.stringify` function.

## Version 2.1.2

* Updated the ethers version to `6.1.1` to address issue: [4583](https://github.com/ethers-io/ethers.js/issues/4583).
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ module.exports = {
only: -1,
skip: -1,
wait: 1,
verificationDelay: 5000,
verify: false,
verifyParallel: 1,
verifyAttempts: 3,
Expand All @@ -97,6 +98,7 @@ module.exports = {
- `only` : The number of the migration that will be applied. **Overrides from and to parameters.**
- `skip`: The number of migration to skip. **Overrides only parameter.**
- `wait` : The number of confirmations to wait for after the transaction is mined.
- `verificationDelay` : The delay in milliseconds between the deployment and verification of the contract.
- `verify` : The flag indicating whether the contracts have to be verified after all migrations.
- `verifyParallel` : The size of the batch for verification.
- `verifyAttempts` : The number of attempts to verify the contract.
Expand Down
Loading

0 comments on commit 74b8f51

Please sign in to comment.