meeClient.executeQuote(...)
, you need a way to track whether it succeeded. Biconomy MEE provides two main tools to monitor transaction status:
1. waitForSupertransactionReceipt
This is the recommended approach for most use cases.
Parameters
hash
(required): The supertransaction hash returned byexecuteQuote
confirmations
(optional): How many confirmations to wait for after mining
When to use
Use this method when you:- Want a simple blocking workflow
- Only proceed after the transaction is complete
- Do not need partial updates or background monitoring
Example
2. getSupertransactionReceipt
This method gives real-time, snapshot-based access to the current transaction status.
Parameters
hash
(required): The supertransaction hashwaitForReceipts
(optional, default: true): Wait for receipts before resolvingconfirmations
(optional): Number of confirmations to wait for
When to use
Use this method when you:- Want to check status in the background
- Are building your own UI polling or refresh interval
- Don’t want to block the app while waiting
Example
3. Generating a MEE Scan Link

waitForSupertransactionReceipt
will be easiest to integrate.