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 transaction hash
const result = await executeSignedQuote(meeClient, {
signedQuote: signedQuotePayload
});
// Returns:
// {
// hash: "0x123..." // Supertransaction hash
// }
// Can then wait for receipt:
const receipt = await waitForSupertransactionReceipt(meeClient, {
hash: result.hash
});
Will throw an error if:
Executes a previously signed quote through the MEE service. This is the final step in the quote flow, where the transaction is actually sent to the blockchain.