Audit - Event Based

+1 vote
Hello

Is there any support to audit events ( such as querying - the transaction metadata ; the balance..etc) performed on addresses . Does multichain provide any option to store such events being fired and review them on a timely basis.

I have no requirement for smart contract like scenario , hence i dont want to use Ethereum but i have to provide reports based on certain events or actions . it will be great if you could share if there are options either through existing APIs or interpreting transaction logs to determine the events and the date time and who triggered the event.

 

 

Thanks
asked Nov 10, 2016 by anonymous

1 Answer

0 votes

A few possibilities here:

  • If an address is in a node's wallet (use importaddress) then you can review all transactions involving it using listaddresstransactions. So you can use polling with that.
  • The next alpha version of MultiChain will allow you to subscribe to an asset and review all of its transactions using a new API (something like listassettransactions).
  • Prior to beta we will also include a simple notification mechanism whereby a shell script is run whenever a new transaction comes in.
answered Nov 10, 2016 by MultiChain
...