@gnosis.pm/util-contracts
Version:
Utility contracts for Gnosis
12 lines (9 loc) • 357 B
JavaScript
const path = require('path')
const BUILD_DIR = path.join(__dirname, '..', '..', 'build', 'contracts')
const NETWORKS_FILE_PATH = path.join(__dirname, '..', '..', 'networks.json')
module.exports = {
buildPath: BUILD_DIR,
buildDirDependencies: [],
networkFilePath: NETWORKS_FILE_PATH
// extractNetworkFilter: ({ name }) => (name === 'MyContract')
}