You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
require("dotenv").config();
|
|
|
|
import { HardhatUserConfig } from "hardhat/config";
|
|
import "@nomicfoundation/hardhat-toolbox";
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: "0.8.17",
|
|
networks: {
|
|
w3qGalileo: {
|
|
url: "https://galileo.web3q.io:8545",
|
|
accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|