Creating a simple web voting system.

+1 vote
Is it feasible to create a simple web voting system using multichain?? because what i look inside the php API and test cases, it is more on the transaction payment.
asked Dec 12, 2016 by anonymous

1 Answer

0 votes

Yes, you would use a stream to record the votes on the blockchain, mapped as follows:

  • publisher = who created the entry (by signing the transaction).
  • key = an identifier for the issue being voted about.
  • data = value of the vote (could be a single byte).
Or you could have one issue per stream, in which case the key or data wouldn't be needed.
answered Dec 12, 2016 by MultiChain
...