Hardhat
Initialize Your Project
Setting up Your Account
{
"privateKey": "60ed0dd24087f00faea4e2b556c74ebfa2f0e705f8169733b01530ce4c619883"
}Last updated
Was this helpful?
{
"privateKey": "60ed0dd24087f00faea4e2b556c74ebfa2f0e705f8169733b01530ce4c619883"
}Last updated
Was this helpful?
Was this helpful?
// hardhat.config.js
// ...
const { privateKey } = require("./private.json");
// ...
module.exports = {
// ...
networks: {
// Lumia faucet: https://testnet-faucet.lumia.org
lumia-testnet: {
url: "https://testnet-rpc.lumia.org",
chainId: 1952959480,
accounts: [privateKey],
},
// ...
},
};