• Requests a quote from the MEE service for executing a set of instructions. This function handles the complexity of creating a supertransaction quote that can span multiple chains.

    Parameters

    • client: {
          account: MultichainSmartAccount;
          extend: (<const client, const extendedHttpClient>(fn) => never);
          info: GetInfoPayload;
          pollingInterval: number;
          request: (<T>(params) => Promise<T>);
      }

      MEE client instance used to make the request

      • account: MultichainSmartAccount
      • extend: (<const client, const extendedHttpClient>(fn) => never)

        Extends the client with additional functionality

        Returns

        Extended client with both base and new functionality

          • <const client, const extendedHttpClient>(fn): never
          • Type Parameters

            • const client extends {
                  extend?: undefined;
                  request?: undefined;
              }
            • const extendedHttpClient extends HttpClient

            Parameters

            Returns never

      • info: GetInfoPayload
      • pollingInterval: number
      • request: (<T>(params) => Promise<T>)

        Makes HTTP requests to the Http node

          • <T>(params): Promise<T>
          • Type Parameters

            • T

            Parameters

            • params: RequestParams

            Returns Promise<T>

    • parameters: GetQuoteParams

      Parameters for the quote request

    Returns Promise<GetQuotePayload>

    Promise resolving to a committed supertransaction quote

    Example

    const quote = await getQuote(meeClient, {
    instructions: [{
    calls: [{
    to: "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
    data: "0x...",
    value: 0n
    }],
    chainId: 1 // Ethereum Mainnet
    }],
    feeToken: {
    address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", // USDC
    chainId: 1
    }
    });

    Throws

    Will throw an error if:

    • The account is not deployed on required chains
    • The fee token is not supported
    • The chain(s) are not supported by the node