abridged / dao-help

Template created to facilitate Collab19, an international relief fund using Ethereum
https://collab19.live
11 stars 7 forks source link

Address of the TokenManager Aragon app is hardcoded in Signal proposal flow #6

Closed adklempner closed 4 years ago

adklempner commented 4 years ago

In flow (Vote and New Proposal), function node Create Voting Proposal, the recipient of the transaction to start a new vote is hardcoded (to Collab19's TokenManager)

msg.payload.config = {
  "recipient" : "0x9231549259236b5A8C74A7B537308AcdC0d1fa3f",
  abi,
  "apiCall" : "forward",
  "args" : [_executtionScript],
  "value" : "0x0"
};

The address should be replaced with a new global param:

"recipient": global.get("address_token_manager"),