From 907ab5dffdcc16191022267cd3e9f9dbb7bde02f Mon Sep 17 00:00:00 2001 From: Ricardo Guilherme Schmidt Date: Wed, 20 Mar 2019 22:11:04 -0300 Subject: [PATCH] add proposal system --- config/contracts.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config/contracts.js b/config/contracts.js index edd18fb..e7fe339 100644 --- a/config/contracts.js +++ b/config/contracts.js @@ -39,10 +39,13 @@ module.exports = { }, "DelegationFactory": { "args": ["$DelegationBase", "$DelegationInit", "0x0"] - }, - "Democracy": { - "args": ["$MiniMeToken", "$DelegationFactory", "0x0"] + }, + "ProposalBase": {}, + "ProposalInit": {}, + "ProposalFactory": { + "args": ["$ProposalBase", "$ProposalInit", "0x0"] } + } },