If you are getting this kind of error on Rinkeby "If you have a slow internet connection, try configuring a longer timeout in your Truffle config. Use the networks[networkName].networkCheckTimeout property to do this" All you need to do is change this parameter to higher number networkCheckTimeout: 10000, which will look like this in the end,module.exports = { networks: { development: { host: "localhost", port: 7545, gas: 5000000, network_id: "*", // Match any network id }, rinkeby: { provide...