hardhat-tenderly
plugin. When deploying to any of the following networks:/packages/hardhat
to ensure that local contracts are also uploaded with the local transaction (see more below!)packages/hardhat
directory:yarn fork
). To let Tenderly know that we are dealing with a fork, run the following command:tenderly.yaml
file stores information about all networks that you initialized for exporting transactions. There can be multiple of them in a single file. You only need the --export-network
if you have more than one network in your tenderly.yaml config!export
, which is one of the freshest features! We are using hardhat-deploy, which stores the contracts & meta-information in a deployments
folder, so this should work out of the box.eth_estimateGas
is executed. To prevent such behaviour, you can skip this estimation by passing a gasLimit
override when making a call - an example of this is demonstrated in the FunctionForm.jsx
file of the Contract component:packages/hardhat
for your contracts to be exported. You can achieve this by using nohoist
- this has been done for hardhat
so that we can export console.sol
- see the top-level package.json
to see how!