Network Configuration
Last updated
Was this helpful?
Was this helpful?
import Fortmatic from 'fortmatic';
import Web3 from 'web3';
const customNodeOptions = {
rpcUrl: 'http://127.0.0.1:7545', // your own node url
chainId: 1011 // chainId of your own node
}
// Setting network to localhost blockchain
const fm = new Fortmatic('YOUR_TEST_API_KEY', customNodeOptions);
window.web3 = new Web3(fm.getProvider());