Last active
April 16, 2021 16:06
-
-
Save cgcardona/03761a1c091ddda0d13f787ec7c88d63 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Web3 = require('web3'); | |
module.exports = { | |
networks: { | |
development: { | |
provider: function() { | |
return new Web3.providers.HttpProvider("http://localhost:9650/ext/bc/C/rpc") | |
}, | |
network_id: "*", | |
gas: 3000000, | |
gasPrice: 225000000000 | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment