Core concepts
Lazy Calls
With Lazy Calls your network will no revert if one of oyur listeners fails.
How does it work
Lazy Calls is a way to prevent the whole network call reverts because one of the listeners failed.
This is a useful feature if a attached listener could potentialy fail doe to an unexpected behaivior
Example
Imagine that you have a Token contract that broadcast a message everytime a token is tranfered. And a listener that transfer x ammount of coins to the new onwer. In this case The listener could potentialy fail if the max ammount is reached. If you are interested on not breaking the transfer
function the Lazy Calls
active will ensure that the process still goes despite the revertion from the Listener
How to
To activate Lazy Calls
for every channel go to our app and jump to the desired channel.
Iris protocol smart contract does handle if the call is strict or lazy.