Skip to content

Commit

Permalink
hardhat patch updated & README
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Mar 6, 2022
1 parent 8e84d36 commit f220ad0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ module.exports = [

The `gasLimit` field is set to **1'500'000** by default because the `CREATE2` operations are a complex sequence of opcode executions. Usually the providers do not manage to estimate the `gasLimit` for these calls, so a predefined value is set.

The contract creation transaction is displayed on Etherscan as a so-called _internal transaction_. An internal transaction is an action that is occurring within, or between, one or multiple smart contracts. In other words, it is initiated inside the code itself, rather than externally, from a wallet address controlled by a human. For more details on why it works this way, see [here](#how-it-works).
The contract creation transaction is displayed on Etherscan (or any other block explorer) as a so-called _internal transaction_. An internal transaction is an action that is occurring within, or between, one or multiple smart contracts. In other words, it is initiated inside the code itself, rather than externally, from a wallet address controlled by a human. For more details on why it works this way, see [here](#how-it-works). Once the contract creation transaction has been confirmed (i.e. your transaction has been included in a block on the target EVM-based blockchain), the address of the created contract is emitted in the event logs, which can also be retrieved via Etherscan (or another block explorer).

## Usage
```bash
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xdeployer",
"version": "1.1.5",
"version": "1.1.6",
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
"author": "Pascal Marco Caversaccio <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -51,7 +51,7 @@
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"ethers": "^5.5.4",
"hardhat": "^2.9.0",
"hardhat": "^2.9.1",
"mocha": "^7.1.2",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
Expand All @@ -62,7 +62,7 @@
"typescript": "^4.6.2"
},
"peerDependencies": {
"hardhat": "^2.9.0",
"hardhat": "^2.9.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@openzeppelin/contracts": "^4.5.0"
}
Expand Down

0 comments on commit f220ad0

Please sign in to comment.