Skip to content

Commit

Permalink
Create truffle-config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 6, 2024
1 parent bda9847 commit 459e33e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions blockchain_integration/PiSure/contracts/truffle-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*",
gas: 6721975,
gasPrice: 20000000000
}
},
compilers: {
solc: {
version: "0.8.0",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
}
}
};

0 comments on commit 459e33e

Please sign in to comment.