From 60e751590f6c901e98899f0ce35378f026613b81 Mon Sep 17 00:00:00 2001 From: nithin Date: Wed, 3 Feb 2021 12:35:07 -0800 Subject: [PATCH] adding truffle file back --- truffle.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 truffle.js diff --git a/truffle.js b/truffle.js new file mode 100644 index 00000000..f3db4563 --- /dev/null +++ b/truffle.js @@ -0,0 +1,15 @@ +// NOTE: this file is required by our internal deployment script uFragments-eth-integration +// which still works with truffle +// This can be removed once we completely transition to the new hardhat workflow +module.exports = { + compilers: { + solc: { + version: '0.4.24', + settings: { + optimizer: { + enabled: false + } + } + } + } +};