Not Monitored
Tag not monitored by Microsoft.
41,605 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hey , I am facing an error "Failed to run command - npx truffle migrate --reset --compile-all --network loc_development_development --config truffle-config.js. More details in output".
The truffle.js config is :
export const networks = {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*"
},
dashboard: {}
};
export const compilers = {
solc: {
version: "0.8.13",
// gas: 0
}
};
export const db = {
enabled: false,
host: "127.0.0.1",
};
and solidity version is :
pragma solidity >=0.4.25 <0.9.0;
Any leads on this ?