Core concepts

Monitoring your channels

Iris protocol does use the ethereum log system to monitor your channel messages.


How does it work

The iris protocol does emit events acordingly every time a message is broadcasted with the event

event EventLog(address indexed channel, string indexed eventIndex, bytes data);

And the Listener will emit the following event when receiving the message

event ListenLog(address indexed channel, address indexed listener, string indexed eventIndex, bytes data, bool status, bytes errorReason);

Where status represent if an error ocurred with the errorReason

How to

Use our app go to your registered channels and in the details socroll down to check the mesasage log and all the listeners that responded.

Previous
Lazy Calls