Los errores que obtengo (durante la implementación, consulte el final del código)
Error: ERROR processing skip func of /home/amey/hardhat/hardhat-fund-me/deploy/01-deploy-fund-me.js:
TypeError: Cannot read properties of undefined (reading 'ethUsdPriceFeed')
Cuando hago clic en el error, me llevan a esta línea en 01-deploy-fund-me.js (en otro archivo)
ethUsdPriceFeedAddress = networkConfig[chainId]["ethUsdPriceFeed"]aquí está el código que estaba tratando de implementar
const { network, getNamedAccounts, deployments } = require("hardhat") const { developmentChains, DECIMALS, INITIAL_ANSWER, } = require("../helper-hardhat-config") module.exports = async ({ getNamedAccounts, deployment }) => { const { deploy, log } = deployments const { deployer } = await getNamedAccounts() const chainId = network.config.chainId if (developmentChains.includes(network.name)) { log("Local network detected! Deploying mocks...") await deploy("MockV3Aggregator", { contract: "MockV3Aggregator", from: deployer, log: true, args: (DECIMALS, INITIAL_ANSWER), }) log("Mocks Deployed!") log("--------------------------------------------------------------") } } module.exports.tags = ["all", "mocks"]Gracias.