logos-storage-contracts-eth/hardhat.config_testnet.js
2022-04-24 11:10:40 +04:00

25 lines
466 B
JavaScript

require("@nomiclabs/hardhat-waffle")
require("hardhat-deploy")
require("hardhat-deploy-ethers")
const
TESTNET_ID = "..." // e.g. "2337"
TESTNET_URL = "http://127.0.0.1:8545"
// keys for funded accounts unlocked on the node corresponding to TESTNET_URL
TESTNET_PRIVATE_KEYS = [
"...",
"..."
]
module.exports = {
solidity: "0.8.4",
networks: {
[`${TESTNET_ID}`]: {
url: TESTNET_URL,
accounts: TESTNET_PRIVATE_KEYS
}
}
}