Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't include stub contracts in NPM packages #623

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on May 16, 2023

  1. Don't include stub contracts in NPM packages

    If `hardhat deploy` is run with `TEST_USE_STUBS_TBTC` environment variable set
    to `true`, the deployment will include deployment of stub contracts, which are
    needed for testing purposes (execution of unit tests). So far we've been running
    `hardhat deploy TEST_USE_STUBS_ECDSA=true` together with
    `USE_EXTERNAL_DEPLOY=true` in `tbtc-v2` in the `deploy:test` script. The
    `USE_EXTERNAL_DEPLOY` variable specifies how the contracts of the dependencies
    should be deployed - whether to deploy them from scratch (`true`) or reuse the
    already deployed artifacts (`false`).
    We were using the `deploy:test` script in `tbtc-v2` in two places - when running
    `contracts-deployment-dry-run` job (test of deployment on `hardhat` local
    network) and in `npm-compile-publish-contracts` job (publishing of
    `development`-tagged NPM package). This second use can be problematic, as the
    `development`-tagged package is used to generate the client bindings when
    running `make all`, resulting in the presence of unneeded (and unwanted)
    functionalities. The first use is not causing such problems, but it should still
    be modified, as it's better to run the dry-run of deploy on the real contracts
    and not on the stubs.
    What we decided to do is to replace
    ```
    "deploy:test": "USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_TBTC=true hardhat deploy",
    ```
    with
    ```
    "deploy:local": "USE_EXTERNAL_DEPLOY=true hardhat deploy",
    ```
    and use the new `deploy:local` script in both jobs that previously used
    `deploy:test`.
    This way we'll no longer include stub functionalities in NPM packages (and hence
    in the clinet bindings) and we'll execute dry-run of the unmodified contracts.
    michalinacienciala committed May 16, 2023
    Configuration menu
    Copy the full SHA
    6409dbf View commit details
    Browse the repository at this point in the history