Skip to main content

Learning to Use Monitor Builder: Notify Step

The dialectSdk notification sink is the standard notification sink. This data sink allows you to unicast, multicast, or broadcast a message. Under the hood, the SDK handles delivering the notification to any-and-all notification channels that the subscriber(s) has enabled.

  .notify()
.dialectSdk(
({ value }) => {
return {
title: 'dApp cratio warning',
message: `Your cratio = ${value} below warning threshold`,
};
},
{
dispatch: 'unicast',
to: ({ origin: { resourceId } }) => resourceId,
},
)

Custom sinks can be added as show in this example.