Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/helpers/handle-send-transaction-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,11 @@ export async function handleSendTransaction(
);
logMessage(`EIP712 signature is ${signatureEIP712}`);
}
paramArray.push(signatureEIP712);
if (signatureEIP712) {
paramArray.push(signatureEIP712);
} else {
throw new Error('Could not get eip712 signature while processing transaction in Mexa SDK. Please check the providers you have passed to Biconomy');
}
} else {
logMessage('Personal signature flow');
let signaturePersonal;
Expand Down