Send notifications on mobile for new transactions
under review
Fireb0mb1
For mobile users, send a notification when a new transaction is detected for their current addresses (send confirmed/newly received coins/tokens). The notification should include a short summary of the transaction and affected address. Ideally it should be possible to enable/disable notification per address too.
Coinbase Wallet has these features, I find it pretty useful, especially when it's transactions I didn't anticipate and could have overlooked otherwise.
0xFBL
also found this one expo https://docs.expo.dev/versions/latest/sdk/notifications/ *
0xFBL
under review
this is a good nice to have for the mobile refresh ad markets page so moving it along.
0xFBL
Zerion is the GOAT at this. It's a bit tricky with a non platform native app though. if we could find some libraries and implementations that would be super useful.
Fireb0mb1
0xFBL Indeed, the webview wrapper will need to communicate with the native app which will handle the creation of a notification.
We currently use "react-native-webview" in the native apps for both iOS and Android which supports a way to communicate from the webview to the app (postMessage -> https://github.com/react-native-webview/react-native-webview/blob/master/docs/Guide.md#communicating-between-js-and-native ). Then it's a matter of creating/handling that message from the webview to create a local notification on mobile for new transactions when detected. Popular React Native modules to do this part, both are well documented:
But there's also certainly some complexity in how to get the actual events to be detected and pushed for all the wallets... not sure our current infrastructure would allow it without big changes.