Solana's Most Trusted Alerts Stack
Engage your customers with timely, relevant notifications using Dialect's Alerts Stack.
Out of the box tools for best in class engagement
Get up in running in minutes with an experience 100% customizable to your brand
Use our toolkit to reduce your development time by
Meet your users anywhere
Deliver directly in your app, and to popular platforms like Telegram and Email
Just a few lines of code
Get up and running in just minutes with two easy parts, so you can focus on your business logic
Drop our Notification Bell in your frontend
<DialectSolanaSdk dappAddress={DAPP_ADDRESS}>
<NotificationsButton />
</DialectSolanaSdk>
Dispatch alerts from your backend with just 10 lines of code
await dapp.messages.send({
title: 'Hello from Dialect',
message: 'Hello from the Dialect quick start guide example.',
actions: [
{
label: 'Open Dialect Quick Start',
url: 'docs.dialect.to/docs',
},
],
});