aboutsummaryrefslogtreecommitdiffstats
path: root/truffle.js
diff options
context:
space:
mode:
Diffstat (limited to 'truffle.js')
-rw-r--r--truffle.js14
1 files changed, 11 insertions, 3 deletions
diff --git a/truffle.js b/truffle.js
index f32c4d6..9290478 100644
--- a/truffle.js
+++ b/truffle.js
@@ -22,13 +22,21 @@ module.exports = {
networks: {
testnet: {
provider: new HDWalletProvider(mnemonic,
- "http://testnet.dexon.org:8545", 0, 1, true, "m/44'/237'/0'/0/"),
- network_id: "*"
+ "https://testnet-rpc.dexon.org", 0, 1, true, "m/44'/237'/0'/0/"),
+ network_id: "*",
+ gasPrice: 24000000000,
},
+
development: {
network_id: "*",
host: "localhost",
port: 8545,
+ gasLimit: 7984452,
},
- }
+ },
+ // compilers: {
+ // solc: {
+ // version: "0.5.2" // ex: "0.4.20". (Default: Truffle's installed solc)
+ // }
+ // }
};