Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
require('@matterlabs/hardhat-zksync')
require("hardhat-deploy")
require("hardhat-deploy-ethers")
require("hardhat-contract-sizer")
require("hardhat-gas-reporter")
require("@openzeppelin/hardhat-upgrades")
require("@nomicfoundation/hardhat-ethers")
require("@nomicfoundation/hardhat-verify")
require("@nomicfoundation/hardhat-foundry")
require("@nomicfoundation/hardhat-chai-matchers")
Expand Down Expand Up @@ -82,7 +81,13 @@ module.exports = {
accounts,
live: true,
},

zkSyncSepoliaTestnet: {
url: 'https://sepolia.era.zksync.dev',
ethNetwork: 'sepolia',
zksync: true,
verifyURL: 'https://explorer.sepolia.era.zksync.dev/contract_verification',
accounts: [process.env.PRIVATE_KEY_1, process.env.PRIVATE_KEY_2],
},
sepolia: {
url: process.env.SEPOLIA_URL,
accounts: [process.env.PRIVATE_KEY_1, process.env.PRIVATE_KEY_2],
Expand Down
64 changes: 30 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,63 +5,59 @@
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"test:local": "npx hardhat test --network hardhat",
"test:local": "npx hardhat test --network hardhat",
"test:test-deploy": "npx hardhat run scripts/sample-script.js --network hardhat",
"bscTest:test-deploy": "npx hardhat run scripts/sample-script.js --network bscTest",
"compile": "npx hardhat compile",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --solc-input",
"mainnet:export": "hardhat --network mainnet export --export exports/mainnet.json",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --solc-input",
"ropsten:export": "hardhat --network ropsten export --export exports/ropsten.json",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --solc-input",
"rinkeby:export": "hardhat --network rinkeby export --export exports/rinkeby.json",
"bscTest:deploy": "hardhat --network bscTest deploy",
"bscTest:verify": "hardhat --network bscTest etherscan-verify --solc-input",
"bscMain:deploy": "hardhat --network bscMain deploy",
"bscMain:verify": "hardhat --network bscMain etherscan-verify --solc-input",
"hardhat:deploy": "hardhat --network hardhat deploy",
"mainnet:deploy": "npx hardhat --network mainnet deploy",
"mainnet:verify": "npx hardhat verify",
"mainnet:export": "npx hardhat --network mainnet export --export exports/mainnet.json",
"bscTest:deploy": "npx hardhat --network bscTest deploy",
"bscTest:verify": "npx hardhat verify",
"bscMain:deploy": "npx hardhat --network bscMain deploy",
"bscMain:verify": "npx hardhat verify",
"hardhat:deploy": "npx hardhat --network hardhat deploy",
"prettier": "prettier --write test/**/*.js && prettier --write scripts/**/*.js && prettier --write contracts/**/*.sol"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.8",
"@matterlabs/hardhat-zksync": "^1.3.0",
"@typechain/ethers-v5": "^10.2.1",
"chai": "^4.3.10",
"chai-eventemitter2": "^0.2.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^6.9.0",
"hardhat": "^2.22.1",
"dotenv": "^16.3.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.13.4",
"hardhat": "^2.22.2",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.44",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.16"
"prettier": "^3.1.1",
"prettier-plugin-solidity": "^1.3.1",
"typechain": "^8.3.1"
},
"dependencies": {
"@biconomy/mexa": "^2.0.24",
"@metamask/eth-sig-util": "^7.0.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@biconomy/mexa": "^1.5.15",
"@metamask/eth-sig-util": "^7.0.3",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-verify": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@nomicfoundation/hardhat-verify": "^2.0.5",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^2.5.0",
"@openzeppelin/defender-sdk": "^1.14.3",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"@uniswap/v3-sdk": "^3.11.0",
"@uniswap/v3-sdk": "^3.9.0",
"bignumber.js": "^9.1.2",
"eth-sig-util": "^3.0.1",
"zksync-web3": "^0.17.1"
"rimraf": "^5.0.5",
"uuid": "^9.0.1",
"zksync-ethers": "^6.15.3"
},
"repository": "[email protected]:Uno-Re/SSIP-SSRP-contracts.git"
}
Loading