You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On broadcasting a transaction, it's going to the transaction pool and submitting the transaction to network. Wallet will receive the transaction by subscription to the web socket channel. At the moment, several of the cache needs to be updated or invalidated
Acceptance Criteria
Subscribe to transaction channel 'new.transactions', 'delete.transactions'
Update Transaction history (follow the logic to show new event button on query table)
Invalidate auth cache
Add notification for when current account receives tokens. It should look like new Notification(i18n.t('{{amount}} {{token}} Received', { amount, token }), { body: i18n.t('Your account just received {{amount}} {{token}} {{message}}', { amount, token, message }), });
Additional Information
After broadcast, keep transaction details in React Context
In web socket push data, we need to merge the transaction cache with the new transaction found
Remove the transaction details in React Context
The text was updated successfully, but these errors were encountered:
Description
On broadcasting a transaction, it's going to the transaction pool and submitting the transaction to network. Wallet will receive the transaction by subscription to the web socket channel. At the moment, several of the cache needs to be updated or invalidated
Acceptance Criteria
new Notification(i18n.t('{{amount}} {{token}} Received', { amount, token }), { body: i18n.t('Your account just received {{amount}} {{token}} {{message}}', { amount, token, message }), });
Additional Information
The text was updated successfully, but these errors were encountered: