Handle reject tx

This commit is contained in:
Isha 2024-11-08 14:33:27 +05:30
parent d95483310f
commit 198ccd98c3

View File

@ -200,7 +200,7 @@ export const WalletEmbed = () => {
useEffect(() => {
window.addEventListener('message', handleTxRequested);
return () => window.removeEventListener('message', handleTxRequested);
}, [networksData, handleTxRequested]);
}, [handleTxRequested]);
const acceptRequestHandler = async () => {
try {
@ -242,7 +242,7 @@ export const WalletEmbed = () => {
const event = txEventRef.current;
if (event?.source) {
sendMessage(event.source as Window, 'TRANSACTION_SUCCESS', txResult.transactionHash, event.origin);
sendMessage(event.source as Window, 'TRANSACTION_RESPONSE', txResult.transactionHash, event.origin);
} else {
console.error('No event source available to send message');
}
@ -255,9 +255,15 @@ export const WalletEmbed = () => {
};
const rejectRequestHandler = () => {
const event = txEventRef.current;
setIsTxRequested(false);
setTransactionDetails(null);
sendMessage(window, 'TRANSACTION_REJECTED', null, '*');
if (event?.source) {
sendMessage(event.source as Window, 'TRANSACTION_RESPONSE', null, event.origin);
} else {
console.error('No event source available to send message');
}
};
return (