The Mee client instance
Extends the client with additional functionality
Extended client with both base and new functionality
Function that adds new properties/methods to the base client
Makes HTTP requests to the Http node
Promise resolving to the supertransaction receipt
const receipt = await waitForSupertransactionReceipt(meeClient, {
hash: "0x123..."
});
// Returns:
// {
// hash: "0x123...",
// status: "success",
// receipts: [{
// chainId: "1",
// hash: "0x456..."
// }]
// }
Will throw an error if:
Waits for a supertransaction receipt to be available. This function polls the MEE service until the transaction is confirmed across all involved chains.