Hardhat
Last updated
// hardhat.config.js
// ...
const { privateKey } = require("./private.json");
// ...
module.exports = {
// ...
networks: {
// Lumia faucet: https://testnet-faucet.lumia.org
lumia-testnet: {
url: "https://beam-rpc.lumia.org",
chainId: 2030232745,
accounts: [privateKey],
},
// ...
},
};