Type Alias GetQuoteParams

GetQuoteParams: SupertransactionLike & {
    account?: MultichainSmartAccount;
    cleanUps?: CleanUp[];
    eoa?: Address;
    lowerBoundTimestamp?: number;
    path?: string;
    upperBoundTimestamp?: number;
} & OneOf<
    | { delegate?: false }
    | { authorization?: MeeAuthorization; delegate: true },
>

Parameters required for requesting a quote from the MEE service

Type declaration

  • Optionalaccount?: MultichainSmartAccount

    Optional smart account to execute the transaction. If not provided, uses the client's default account

  • OptionalcleanUps?: CleanUp[]

    token cleanup option to pull the funds on failure or dust cleanup

  • Optionaleoa?: Address

    EOA address to be used for the transaction. Only required when using permit-enabled tokens

  • OptionallowerBoundTimestamp?: number

    Lower bound execution timestamp to be applied to all user operations

  • Optionalpath?: string

    Path to the quote endpoint. Defaults to "/quote"

    "/quote"
    
  • OptionalupperBoundTimestamp?: number

    Upper bound execution timestamp to be applied to all user operations