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.
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}); Copy
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:
The Mee client instance
Extends the client with additional functionality
Makes HTTP requests to the Http node
Promise resolving to the transaction hash
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.
Example
Throws
Will throw an error if: