Skip to content

Commit

Permalink
Removed @controlcpluscontrolv/hardhat-yul
Browse files Browse the repository at this point in the history
  • Loading branch information
- committed Sep 13, 2023
1 parent 0ce968c commit c0d6ff4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ Each option will be discussed in more detail below.

#### `CREATE`
Contract addresses are calculated using the:
- address of the account that uses the factory to deploy the contract;
- address of the factory contract (that calls `CREATE` opcode) itself;
- nonce (number of transactions the creator has done).

#### `CREATE2`
Contract addresses are calculated using the:
- address of the factory contract (that calls `CREATE2` opcode) itself;
- bytecode of the contract;
- address of the factory contract itself;
- salt (a chosen value);
- salt (a chosen value).

CREATE2 factories may also factor in the address of the account that uses the factory to deploy the contract to ensure uniqueness of the deployment address.

Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ module.exports = {
}

// override hardhat compilation subtask
const { TASK_COMPILE_SOLIDITY_GET_DEPENDENCY_GRAPH } =require("hardhat/builtin-tasks/task-names")
const { TASK_COMPILE_SOLIDITY_GET_DEPENDENCY_GRAPH } = require(`hardhat/builtin-tasks/task-names`)
subtask(TASK_COMPILE_SOLIDITY_GET_DEPENDENCY_GRAPH)
.setAction(
async (args, hre, runSuper) => {
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"@Vectorized/solady": "https://github.com/Vectorized/solady#03f3fd05fb1da76edc4df83ae6bf32a842c15f12",
"@ZeframLou/create3-factory": "https://github.com/ZeframLou/create3-factory#18cfad8d118b25a5092cdfed6bea9c932ca5b6eb",
"@axelar-network/axelar-gmp-sdk-solidity": "^5.3.0",
"@controlcpluscontrolv/hardhat-yul": "^2.0.4",
"@nomicfoundation/ethereumjs-trie": "^6.0.2",
"@nomicfoundation/ethereumjs-util": "^9.0.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
Expand Down

0 comments on commit c0d6ff4

Please sign in to comment.