Created
March 19, 2019 11:09
-
-
Save AlexeyGy/1e6d13120c244840aab0951b30075c8d 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
module.exports = { | |
rpc: { | |
host: "localhost", | |
port: 8543 | |
}, | |
networks: { | |
development: { | |
host: "localhost", //our network is running on localhost | |
port: 8543, // port where your blockchain is running | |
network_id: "*", | |
from: "0x4539ea1bd2e66427eb9142c3fd352aaa3c8b9705", // use the account-id generated during the setup process | |
gas: 1000000 | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment