mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-02 13:23:10 +00:00
* Move to ethers 6 and use hardhat ignition for deployments * Update prettier to the last version * Remove comment * Remove npx call in package.json * Remove useless comment * Add localhost configuration for hardhat ignition * Use contract initial balance instead of const value * Update dependencies and use extract mining to a script in order to use hardhat ignition deploy command * Fix deployment modules for local env * Remove unused function * Export contract deployment custom error assert into a function * Refactoring * Remove old deployments folder * Add process names when running concurrently * Remove conditional allowBlocksWithSameTimestamp, set true everytime * Update dependencies * Update Vault tests for ignition * Update token description * Add vault ignition module * Remove old .tool-versions * Fix formatting * Remove deployments folder and add README for previous files references * Put back the comment related to hardhat automine * Set hardhat gas limit to auto and restore manual mining for Vault tests * Apply prettier formatting and bug test with ignition syntax * Add deployments artifacts * Fix build-info ignore * Use HARDHAT_NETWORK env variable to deploy marketplace contract * Add guard to check that configs has tags * Add testnet deployment addresses * Add TOKEN_ADDRESS to reuse the token contract deployed * Fix token deployment with contractAt * Remove localhost deployment artifacts * Add section in README for deployments * Ignore localhost deployments in git * Set mine script for localhost deployment only and add deploy reset command * Remove previous deployment scripts * Fix typo in documentation * Add log when reusing token address * Update testnet artifact reference * Remove HARDHAT_NETWORK and update documentation * fix md format * Npm audit fix * Update dependencies * Remove default deployer * Update commit for last testnet artifacts * Remove deployments files from linea and testnet and update the last commit hashes to those artifacts
35 lines
1.5 KiB
JSON
35 lines
1.5 KiB
JSON
{
|
|
"name": "codex-contracts-eth",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "npm run lint && hardhat test",
|
|
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
|
|
"start": "concurrently --names \"hardhat,deployment\" --prefix \"[{time} {name}]\" \"hardhat node\" \"sleep 2 && npm run mine && npm run deploy -- --network localhost\"",
|
|
"compile": "hardhat compile",
|
|
"format": "prettier --write test/**/*.js --plugin=prettier-plugin-solidity contracts/**/*.sol ",
|
|
"format:check": "prettier --check test/**/*.js --plugin=prettier-plugin-solidity contracts/**/*.sol",
|
|
"lint": "solhint contracts/**.sol",
|
|
"deploy": "hardhat ignition deploy ignition/modules/marketplace.js",
|
|
"mine": "hardhat run scripts/mine.js --network localhost",
|
|
"verify": "npm run verify:marketplace && npm run verify:state_changes",
|
|
"verify:marketplace": "certoraRun certora/confs/Marketplace.conf",
|
|
"verify:state_changes": "certoraRun certora/confs/StateChanges.conf",
|
|
"coverage": "hardhat coverage",
|
|
"gas:report": "REPORT_GAS=true hardhat test"
|
|
},
|
|
"devDependencies": {
|
|
"@openzeppelin/contracts": "^5.3.0",
|
|
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
|
|
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.11",
|
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
"@stdlib/stats-binomial-test": "^0.2.2",
|
|
"chai": "^4.5.0",
|
|
"ethers": "6.14.4",
|
|
"hardhat": "^2.24.3",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-solidity": "^1.4.3",
|
|
"solhint": "^5.1.0",
|
|
"concurrently": "^9.1.2"
|
|
}
|
|
}
|