Skip to content

Releases: Tenderly/hardhat-tenderly

tenderly@0.8.0-beta.0

19 Dec 12:51
Compare
Choose a tag to compare
tenderly@0.8.0-beta.0 Pre-release
Pre-release

Minor Changes

  • Enable muliple tenderly networks in hardhat.config.ts

@tenderly/hardhat-tenderly@2.1.0-beta.1

19 Dec 15:20
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #169 f9ca615 Thanks @dule-git! - Enable multiple tenderly networks in hardhat.config.ts

    From now on, you can put multiple networks in your hardhat.config.ts file in the networks property without the need name the network tenderly or devnet.

    Just put:

    networks: {
      my_tenderly_network_1: {
        url: "https://rpc.tenderly.co/fork/<forkId>",
      },
      my_tenderly_network_2: {
        url: "https://rpc.tenderly.co/fork/<forkId>",
      },
    }

    After that you can do:

    npx hardhat run scripts/deploy.ts --network my_tenderly_network_1
  • Beta testing

Patch Changes

  • Updated dependencies [f9ca615]:
    • tenderly@0.8.0-beta.1

@tenderly/hardhat-tenderly@2.1.0-beta.0

19 Dec 12:51
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • Enable muliple tenderly networks in hardhat.config.ts

Patch Changes

  • Updated dependencies []:
    • tenderly@0.8.0-beta.0

tenderly@0.7.0

13 Nov 11:05
934b970
Compare
Choose a tag to compare

Minor Changes

  • #164 02952c4 Thanks @dule-git! - # Major @tenderly/hardhat-tenderly update!

    From now on, @tenderly/hardhat-tenderly can work with ethers-v6 and @nomicfoundation/hardhat-ethers@3.0.0 packages.

    This update is needed since there are new ways to deploy and wait for the deployed contract.

    Basically, our automatic verification overrides the ethers property of the HardhatRuntimeEnvironment and adds custom logic for verification to it.

    So now, we had to override the ethers.deployContract method to return our own TdlyContract which wrapped the ethers.Contract and its waitForDeployment() method.

    Migrating from ethers-v5 and @nomiclabs/hardhat-ethers

    Everything pretty much stays the same, except different names are involved.

    Contract.deploy() becomes ethers.deployContract('contract')

    contract.deployed() becomes contract.waitForDeployment()

    You can check out our updated examples/contract-verification folder that has examples that work with the new package versions.

@tenderly/hardhat-tenderly@2.0.1

13 Nov 11:05
934b970
Compare
Choose a tag to compare

Major Changes

  • #164 02952c4 Thanks @dule-git! - # Major @tenderly/hardhat-tenderly update!

    From now on, @tenderly/hardhat-tenderly can work with ethers-v6 and @nomicfoundation/hardhat-ethers@3.0.0 packages.

    This update is needed since there are new ways to deploy and wait for the deployed contract.

    Basically, our automatic verification overrides the ethers property of the HardhatRuntimeEnvironment and adds custom logic for verification to it.

    So now, we had to override the ethers.deployContract method to return our own TdlyContract which wrapped the ethers.Contract and its waitForDeployment() method.

    Migrating from ethers-v5 and @nomiclabs/hardhat-ethers

    Everything pretty much stays the same, except different names are involved.

    Contract.deploy() becomes ethers.deployContract('contract')

    contract.deployed() becomes contract.waitForDeployment()

    You can check out our updated examples/contract-verification folder that has examples that work with the new package versions.

Patch Changes

  • Updated dependencies [02952c4]:
    • tenderly@0.7.0

tenderly@0.7.0-beta.0

12 Nov 17:46
Compare
Choose a tag to compare
tenderly@0.7.0-beta.0 Pre-release
Pre-release

Minor Changes

  • Enable @tenderly/hardhat-tenderly to work with @nomicfoundation/hardhat-ethers and ethers-v6

@tenderly/hardhat-tenderly@2.0.0-beta.4

12 Nov 17:46
Compare
Choose a tag to compare
Pre-release

Major Changes

  • Enable @tenderly/hardhat-tenderly to work with @nomicfoundation/hardhat-ethers and ethers-v6

Patch Changes

  • Updated dependencies []:
    • tenderly@0.6.0-beta.1

tenderly@0.6.0

10 Nov 14:47
c2bc190
Compare
Choose a tag to compare

Minor Changes

@tenderly/hardhat-tenderly@1.8.0

10 Nov 14:47
c2bc190
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • Updated dependencies [a563356]:
    • tenderly@0.6.0

tenderly@0.6.0-beta.0

10 Nov 13:50
Compare
Choose a tag to compare
tenderly@0.6.0-beta.0 Pre-release
Pre-release

Minor Changes

  • Return valid display link