mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
317 B
14 lines
317 B
let Forum;
|
|
|
|
try {
|
|
// eslint-disable-next-line global-require
|
|
Forum = require('./build/Forum.json');
|
|
} catch (e) {
|
|
// eslint-disable-next-line no-console
|
|
console.error("Could not require contract artifacts. Haven't you run compile yet?");
|
|
}
|
|
|
|
module.exports = {
|
|
contracts: [Forum],
|
|
forumContract: Forum,
|
|
};
|
|
|