UNPKG

hermes-v2-sdk

Version:

⚒️ An SDK for building applications on top of Hermes V2

15 lines (14 loc) 329 B
import { BigintIsh } from 'maia-core-sdk'; /** * Optional arguments to send to the quoter. */ export interface QuoteOptions { /** * The optional price limit for the trade. */ sqrtPriceLimitX96?: BigintIsh; /** * The optional quoter interface to use */ useQuoterV2?: boolean; }