November 2018
Intermediate to advanced
528 pages
13h 21m
English
We earlier configured Truffle to work with Ganache by adding the relevant details to truffle.js. We now want to add the equivalent details for our local Geth instance, so that Truffle can communicate with the public testnet. Underneath the development entry used by Ganache, add the following:
rinkeby: { host: "localhost", port: 8545, network_id: "4", // Rinkeby from: "<your_account_address>", gas: 5000000, },There are several things to note:
Read now
Unlock full access