Roy Crihfield
688b5c817a
Most notable changes are the updates to the test contracts: due to https://eips.ethereum.org/EIPS/eip-6780, SELFDESTRUCT no longer destroys a contract (unless it occurs in the creating transaction), so CREATE2 can no longer redeploy contracts to the same address. Reviewed-on: #264
27 lines
646 B
JSON
27 lines
646 B
JSON
{
|
|
"name": "contract",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"compile": "npx hardhat compile",
|
|
"start": "node src/index.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "Solidity contract deployment server for integration testing",
|
|
"dependencies": {
|
|
"@openzeppelin/contracts": "^5.0.2",
|
|
"fastify": "^4.26.2",
|
|
"hardhat": "^2.22.3",
|
|
"solidity-create2-deployer": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nomiclabs/hardhat-ethers": "^2.2.3",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.4",
|
|
"chai": "^4.3.4",
|
|
"ethereum-waffle": "^3.3.0",
|
|
"ethers": "^5.1.0"
|
|
}
|
|
}
|