Truffle
Create an Ethereum Account
Add Networks to truffle-config.js
truffle-config.js// truffle-config.js
module.exports = {
networks: {
// ... any existing networks (development, test, etc.)
// Lumia faucet: https://testnet-faucet.lumia.org
lumia-testnet: {
url: "https://testnet-rpc.lumia.org/",
network_id: 1952959480,
},
// ...
},
// ...
};Last updated
Was this helpful?